From ed85f5e57654324d97e2d7f54af3a69e7c3f732b Mon Sep 17 00:00:00 2001 From: Hook Date: Tue, 9 Jan 2024 12:59:18 -0500 Subject: [PATCH] fixed the zipfile download issue --- R/mod_query_data.R | 34 +- R/utils.R | 2 +- R/utils_track_progress.R | 10 +- flagged.csv | 14588 +++++++++++++++++++++++++++++++++++++ 4 files changed, 14612 insertions(+), 22 deletions(-) create mode 100644 flagged.csv diff --git a/R/mod_query_data.R b/R/mod_query_data.R index ebc9bf106..5b0339a3f 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 @@ -277,7 +277,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 +346,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 +362,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 +394,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 +437,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) } } diff --git a/R/utils.R b/R/utils.R index 8e0a76f70..a9d937379 100644 --- a/R/utils.R +++ b/R/utils.R @@ -20,7 +20,7 @@ utils::globalVariables(c( "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_track_progress.R b/R/utils_track_progress.R index 037cd6ab6..099b9d926 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 @@ -36,7 +36,7 @@ writeFile <- function(tadat, filename) { characteristicName, characteristicType, sampleMedia, - proj, + project, organization, startDate, endDate, @@ -88,7 +88,7 @@ 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 @@ -109,6 +109,8 @@ invalidFile <- function(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 +143,7 @@ writeNarrativeDataFrame <- function(tadat) { tadat$characteristicName, tadat$characteristicType, tadat$sampleMedia, - tadat$proj, + tadat$project, tadat$organization, tadat$startDate, tadat$endDate diff --git a/flagged.csv b/flagged.csv new file mode 100644 index 000000000..2e796629e --- /dev/null +++ b/flagged.csv @@ -0,0 +1,14588 @@ +"","OrganizationIdentifier","OrganizationFormalName","ActivityIdentifier","ActivityTypeCode","ActivityMediaName","ActivityMediaSubdivisionName","ActivityStartDate","ActivityStartTime.Time","ActivityStartTime.TimeZoneCode","ActivityEndDate","ActivityEndTime.Time","ActivityEndTime.TimeZoneCode","ActivityRelativeDepthName","ActivityDepthHeightMeasure.MeasureValue","ActivityDepthHeightMeasure.MeasureUnitCode","ActivityDepthAltitudeReferencePointText","ActivityTopDepthHeightMeasure.MeasureValue","ActivityTopDepthHeightMeasure.MeasureUnitCode","ActivityBottomDepthHeightMeasure.MeasureValue","ActivityBottomDepthHeightMeasure.MeasureUnitCode","ProjectIdentifier","ProjectName","ActivityConductingOrganizationText","MonitoringLocationIdentifier","MonitoringLocationName","ActivityCommentText","SampleAquifer","HydrologicCondition","HydrologicEvent","ActivityLocation.LatitudeMeasure","ActivityLocation.LongitudeMeasure","SampleCollectionMethod.MethodIdentifier","SampleCollectionMethod.MethodIdentifierContext","SampleCollectionMethod.MethodName","SampleCollectionMethod.MethodDescriptionText","SampleCollectionEquipmentName","ResultIdentifier","ResultDetectionConditionText","MethodSpeciationName","CharacteristicName","ResultSampleFractionText","ResultMeasureValue","ResultMeasure.MeasureUnitCode","MeasureQualifierCode","ResultStatusIdentifier","StatisticalBaseCode","ResultValueTypeName","ResultWeightBasisText","ResultTimeBasisText","ResultTemperatureBasisText","ResultParticleSizeBasisText","DataQuality.PrecisionValue","DataQuality.BiasValue","DataQuality.ConfidenceIntervalValue","DataQuality.UpperConfidenceLimitValue","DataQuality.LowerConfidenceLimitValue","ResultCommentText","USGSPCode","ResultDepthHeightMeasure.MeasureValue","ResultDepthHeightMeasure.MeasureUnitCode","ResultDepthAltitudeReferencePointText","SubjectTaxonomicName","SampleTissueAnatomyName","BinaryObjectFileName","BinaryObjectFileTypeCode","ResultFileUrl","ResultAnalyticalMethod.MethodIdentifier","ResultAnalyticalMethod.MethodIdentifierContext","ResultAnalyticalMethod.MethodName","ResultAnalyticalMethod.MethodUrl","ResultAnalyticalMethod.MethodDescriptionText","LaboratoryName","AnalysisStartDate","ResultLaboratoryCommentText","ResultDetectionQuantitationLimitUrl","DetectionQuantitationLimitTypeName","DetectionQuantitationLimitMeasure.MeasureValue","DetectionQuantitationLimitMeasure.MeasureUnitCode","LabSamplePreparationUrl","LastUpdated","ProviderName","timeZoneStart","timeZoneEnd","ActivityStartDateTime","ActivityEndDateTime","MonitoringLocationTypeName","MonitoringLocationDescriptionText","HUCEightDigitCode","DrainageAreaMeasure.MeasureValue","DrainageAreaMeasure.MeasureUnitCode","ContributingDrainageAreaMeasure.MeasureValue","ContributingDrainageAreaMeasure.MeasureUnitCode","LatitudeMeasure","LongitudeMeasure","SourceMapScaleNumeric","HorizontalAccuracyMeasure.MeasureValue","HorizontalAccuracyMeasure.MeasureUnitCode","HorizontalCollectionMethodName","HorizontalCoordinateReferenceSystemDatumName","VerticalMeasure.MeasureValue","VerticalMeasure.MeasureUnitCode","VerticalAccuracyMeasure.MeasureValue","VerticalAccuracyMeasure.MeasureUnitCode","VerticalCollectionMethodName","VerticalCoordinateReferenceSystemDatumName","CountryCode","StateCode","CountyCode","AquiferName","LocalAqfrName","FormationTypeText","AquiferTypeName","ConstructionDateText","WellDepthMeasure.MeasureValue","WellDepthMeasure.MeasureUnitCode","WellHoleDepthMeasure.MeasureValue","WellHoleDepthMeasure.MeasureUnitCode","MethodSpecificationName","ProjectDescriptionText","SamplingDesignTypeCode","QAPPApprovedIndicator","QAPPApprovalAgencyName","ProjectFileUrl","ProjectMonitoringLocationWeightingUrl","WQX.ResultMeasureValue.UnitConversion","TADA.ActivityType.Flag","TADA.ResultValueBelowLowerThreshold.Flag","TADA.ActivityMediaName","TADA.CharacteristicName","TADA.ResultMeasureValue","TADA.ResultMeasure.MeasureUnitCode","TADA.ResultMeasureValueDataTypes.Flag","TADA.MeasureQualifierCode.Flag","TADA.CensoredData.Flag","TADA.LatitudeMeasure","TADA.LongitudeMeasure","TADA.QAPPDocAvailable","TADA.AggregatedContinuousData.Flag","TADA.ResultValueAboveUpperThreshold.Flag","TADA.ResultUnit.Flag","TADA.MethodSpecificationName","TADA.AnalyticalMethod.Flag","TADA.MethodSpeciation.Flag","TADA.ResultSampleFractionText","TADA.SampleFraction.Flag","TADA.ComparableDataIdentifier","TADA.DetectionQuantitationLimitMeasure.MeasureValue","TADA.DetectionQuantitationLimitMeasure.MeasureUnitCode","TADA.DetectionQuantitationLimitMeasure.MeasureValueDataTypes.Flag","TADA.ActivityDepthHeightMeasure.MeasureValue","TADA.ActivityDepthHeightMeasure.MeasureUnitCode","TADA.ActivityDepthHeightMeasure.MeasureValueDataTypes.Flag","TADA.ActivityTopDepthHeightMeasure.MeasureValue","TADA.ActivityTopDepthHeightMeasure.MeasureUnitCode","TADA.ActivityTopDepthHeightMeasure.MeasureValueDataTypes.Flag","TADA.ActivityBottomDepthHeightMeasure.MeasureValue","TADA.ActivityBottomDepthHeightMeasure.MeasureUnitCode","TADA.ActivityBottomDepthHeightMeasure.MeasureValueDataTypes.Flag","TADA.MultipleOrgDuplicate","TADA.MultipleOrgDupGroupID","TADA.ResultSelectedMultipleOrgs","TADA.SingleOrgDupGroupID","TADA.ResultSelectedSingleOrg","TADA.Remove" +"73","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100015","Sample-Routine","Water","Surface Water",2020-10-01,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-119922679","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-01 19:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2052","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100015","Sample-Routine","Water","Surface Water",2020-10-01,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-119922689",NA,NA,"Nitrogen","Suspended","0.238","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2020-11-20,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2020-10-01 19:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"558","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100015","Sample-Routine","Water","Surface Water",2020-10-01,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-119922696","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-01 19:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"74","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100014","Sample-Routine","Water","Surface Water",2020-10-01,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-119924088","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-01 19:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2053","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100014","Sample-Routine","Water","Surface Water",2020-10-01,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-119924098",NA,NA,"Nitrogen","Suspended","2.22","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2020-11-20,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2020-10-01 19:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"559","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100014","Sample-Routine","Water","Surface Water",2020-10-01,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-119924103","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-01 19:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"75","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100021","Sample-Routine","Water","Surface Water",2020-10-03,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119937465","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-03 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4199","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.06055556,-112.2483333,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"560","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100021","Sample-Routine","Water","Surface Water",2020-10-03,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119937475","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-03 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4199","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.06055556,-112.2483333,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"76","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100022","Sample-Routine","Water","Surface Water",2020-10-03,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119937485","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-03 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4196","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.015,-112.2555556,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"561","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100022","Sample-Routine","Water","Surface Water",2020-10-03,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119937495","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-03 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4196","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.015,-112.2555556,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"77","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100071","Sample-Routine","Water","Surface Water",2020-10-05,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952693","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-05 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"562","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100071","Sample-Routine","Water","Surface Water",2020-10-05,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952704","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-05 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"78","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100072","Sample-Routine","Water","Surface Water",2020-10-05,"10:50:00","MDT",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952723","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-05 16:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"563","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100072","Sample-Routine","Water","Surface Water",2020-10-05,"10:50:00","MDT",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952733","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-05 16:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"79","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100073","Sample-Routine","Water","Surface Water",2020-10-05,"11:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952751","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-05 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"564","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100073","Sample-Routine","Water","Surface Water",2020-10-05,"11:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952761","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-05 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"80","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100074","Sample-Routine","Water","Surface Water",2020-10-05,"11:50:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952779","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-05 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"565","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100074","Sample-Routine","Water","Surface Water",2020-10-05,"11:50:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952789","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-05 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"81","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100075","Sample-Routine","Water","Surface Water",2020-10-05,"12:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952807","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-05 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"566","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100075","Sample-Routine","Water","Surface Water",2020-10-05,"12:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952817","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-05 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"82","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100079","Sample-Routine","Water","Surface Water",2020-10-05,"13:00:00","MDT",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952926","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-05 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"567","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100079","Sample-Routine","Water","Surface Water",2020-10-05,"13:00:00","MDT",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952936","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-05 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"83","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100080","Sample-Routine","Water","Surface Water",2020-10-05,"14:00:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952954","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.033","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-05 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.033,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.033,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"568","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100080","Sample-Routine","Water","Surface Water",2020-10-05,"14:00:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952964","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.148","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-05 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.148,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.148,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"84","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100081","Sample-Routine","Water","Surface Water",2020-10-05,"14:05:00","MDT",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952982","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-05 20:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"569","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100081","Sample-Routine","Water","Surface Water",2020-10-05,"14:05:00","MDT",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-119952992","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-05 20:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"85","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100128","Sample-Routine","Water","Surface Water",2020-10-14,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120025179",NA,NA,"Nitrate","Dissolved","0.244","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2020-10-14 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.244,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2054","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100128","Sample-Routine","Water","Surface Water",2020-10-14,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120025214",NA,NA,"Nitrogen","Suspended","0.138","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2020-11-25,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2020-10-14 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.138,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"570","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100128","Sample-Routine","Water","Surface Water",2020-10-14,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120025306",NA,NA,"Nitrate","Dissolved","1.08","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2020-10-14 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.08,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"86","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100129","Sample-Routine","Water","Surface Water",2020-10-14,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-120025363",NA,NA,"Nitrate","Dissolved","4.00","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2020-10-14 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2055","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100129","Sample-Routine","Water","Surface Water",2020-10-14,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-120025398",NA,NA,"Nitrogen","Suspended","0.133","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2020-11-25,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2020-10-14 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.133,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"571","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100129","Sample-Routine","Water","Surface Water",2020-10-14,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-120025490",NA,NA,"Nitrate","Dissolved","17.7","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2020-10-14 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",17.7,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"87","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100130","Quality Control Sample-Field Replicate","Water","Surface Water",2020-10-01,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120025539","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-01 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"572","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100130","Quality Control Sample-Field Replicate","Water","Surface Water",2020-10-01,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120025566","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-01 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"88","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100142","Sample-Routine","Water","Surface Water",2020-11-05,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120096464",NA,NA,"Nitrate","Dissolved","0.442","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-05 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.442,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"573","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100142","Sample-Routine","Water","Surface Water",2020-11-05,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120096588",NA,NA,"Nitrate","Dissolved","1.95","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-05 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.95,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"89","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100143","Sample-Routine","Water","Surface Water",2020-11-05,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120096641",NA,NA,"Nitrate","Dissolved","6.69","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-05 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.69,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"574","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100143","Sample-Routine","Water","Surface Water",2020-11-05,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120096765",NA,NA,"Nitrate","Dissolved","29.6","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-05 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",29.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"90","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100154","Sample-Routine","Water","Surface Water",2020-11-06,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-120111612",NA,NA,"Nitrate","Dissolved","1.27","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-06 21:40:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.27,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"575","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100154","Sample-Routine","Water","Surface Water",2020-11-06,"14:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-120111631",NA,NA,"Nitrate","Dissolved","5.62","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-06 21:40:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.62,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"91","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100155","Quality Control Sample-Field Replicate","Water","Surface Water",2020-11-06,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-120111659",NA,NA,"Nitrate","Dissolved","1.71","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-06 19:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",1.71,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"576","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100155","Quality Control Sample-Field Replicate","Water","Surface Water",2020-11-06,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-120111678",NA,NA,"Nitrate","Dissolved","7.58","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-06 19:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",7.58,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"92","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100156","Sample-Routine","Water","Surface Water",2020-11-05,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120111706","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.03","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-05 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.03,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.03,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"577","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100156","Sample-Routine","Water","Surface Water",2020-11-05,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120111722","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.135","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-05 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.135,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.135,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"93","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100157","Quality Control Sample-Field Replicate","Water","Surface Water",2020-10-29,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111747","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"578","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100157","Quality Control Sample-Field Replicate","Water","Surface Water",2020-10-29,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111757","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"94","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100158","Sample-Routine","Water","Surface Water",2020-10-29,"10:40:00","MDT",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111775","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"579","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100158","Sample-Routine","Water","Surface Water",2020-10-29,"10:40:00","MDT",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111785","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"95","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100159","Sample-Routine","Water","Surface Water",2020-10-29,"11:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111803","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"580","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100159","Sample-Routine","Water","Surface Water",2020-10-29,"11:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111813","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"96","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100161","Sample-Routine","Water","Surface Water",2020-10-29,"12:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111831","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"581","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100161","Sample-Routine","Water","Surface Water",2020-10-29,"12:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111841","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"97","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100162","Sample-Routine","Water","Surface Water",2020-10-29,"13:00:00","MDT",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111859","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"582","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100162","Sample-Routine","Water","Surface Water",2020-10-29,"13:00:00","MDT",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111869","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"98","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100163","Sample-Routine","Water","Surface Water",2020-10-29,"13:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111887","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"583","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100163","Sample-Routine","Water","Surface Water",2020-10-29,"13:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111897","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"99","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100164","Sample-Routine","Water","Surface Water",2020-10-29,"13:50:00","MDT",NA,NA,NA,NA,"1.3","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111915","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.037","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 19:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.037,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.037,"MG/L AS N","Numeric",1.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"584","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100164","Sample-Routine","Water","Surface Water",2020-10-29,"13:50:00","MDT",NA,NA,NA,NA,"1.3","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111925","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.162","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 19:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.162,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.162,"MG/L ASNO3","Numeric",1.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"100","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100165","Sample-Routine","Water","Surface Water",2020-11-05,"13:55:00","MST",NA,NA,NA,NA,"1","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111940","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-05 20:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"585","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100165","Sample-Routine","Water","Surface Water",2020-11-05,"13:55:00","MST",NA,NA,NA,NA,"1","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120111951","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-05 20:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"101","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100203","Sample-Routine","Water","Surface Water",2020-11-19,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-120171975",NA,NA,"Nitrate","Dissolved","0.187","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-19 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.187,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2056","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100203","Sample-Routine","Water","Surface Water",2020-11-19,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-120172010",NA,NA,"Nitrogen","Suspended","0.034","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2020-12-23,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2020-11-19 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.034,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"586","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100203","Sample-Routine","Water","Surface Water",2020-11-19,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-120172102",NA,NA,"Nitrate","Dissolved","0.829","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-19 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.829,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"102","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100225","Sample-Routine","Water","Surface Water",2020-10-29,"14:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175730","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"587","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100225","Sample-Routine","Water","Surface Water",2020-10-29,"14:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175741","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"103","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100226","Sample-Routine","Water","Surface Water",2020-10-29,"15:20:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175756","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 21:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"588","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100226","Sample-Routine","Water","Surface Water",2020-10-29,"15:20:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175767","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 21:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"104","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100227","Sample-Routine","Water","Surface Water",2020-10-29,"13:00:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175782","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"589","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100227","Sample-Routine","Water","Surface Water",2020-10-29,"13:00:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175793","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"105","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100228","Sample-Routine","Water","Surface Water",2020-10-30,"14:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175810","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-30 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"590","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100228","Sample-Routine","Water","Surface Water",2020-10-30,"14:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175821","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-30 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"106","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100229","Sample-Routine","Water","Surface Water",2020-10-30,"15:15:00","MDT",NA,NA,NA,NA,"0.8","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175838","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-30 21:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"591","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100229","Sample-Routine","Water","Surface Water",2020-10-30,"15:15:00","MDT",NA,NA,NA,NA,"0.8","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175849","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-30 21:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"107","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100230","Sample-Routine","Water","Surface Water",2020-10-30,"10:15:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410323112301901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175866","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-30 16:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.03965920000000","-112.5060734000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0396592,-112.5060734,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"592","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100230","Sample-Routine","Water","Surface Water",2020-10-30,"10:15:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410323112301901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175877","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-30 16:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.03965920000000","-112.5060734000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0396592,-112.5060734,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"108","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100231","Sample-Routine","Water","Surface Water",2020-10-30,"10:50:00","MDT",NA,NA,NA,NA,"3.4","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410323112301901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175894","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-30 16:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.03965920000000","-112.5060734000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0396592,-112.5060734,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",3.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"593","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100231","Sample-Routine","Water","Surface Water",2020-10-30,"10:50:00","MDT",NA,NA,NA,NA,"3.4","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410323112301901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175905","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-30 16:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.03965920000000","-112.5060734000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0396592,-112.5060734,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",3.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"109","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100232","Sample-Routine","Water","Surface Water",2020-11-03,"10:10:00","MST",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175922","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-03 17:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"594","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100232","Sample-Routine","Water","Surface Water",2020-11-03,"10:10:00","MST",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175933","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-03 17:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"110","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100233","Quality Control Sample-Field Replicate","Water","Surface Water",2020-11-03,"10:45:00","MST",NA,NA,NA,NA,"6.6","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175950","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-03 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"595","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100233","Quality Control Sample-Field Replicate","Water","Surface Water",2020-11-03,"10:45:00","MST",NA,NA,NA,NA,"6.6","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175961","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-03 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"111","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100234","Sample-Routine","Water","Surface Water",2020-11-03,"12:45:00","MST",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404607112193801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175976","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-03 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"596","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100234","Sample-Routine","Water","Surface Water",2020-11-03,"12:45:00","MST",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404607112193801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120175987","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-03 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"112","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100235","Sample-Routine","Water","Surface Water",2020-11-03,"13:30:00","MST",NA,NA,NA,NA,"3.3","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404607112193801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120176002","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-03 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",3.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"597","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100235","Sample-Routine","Water","Surface Water",2020-11-03,"13:30:00","MST",NA,NA,NA,NA,"3.3","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404607112193801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120176013","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-03 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",3.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"113","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100236","Sample-Routine","Water","Surface Water",2020-10-30,"12:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410637112270401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120176030","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-30 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"598","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100236","Sample-Routine","Water","Surface Water",2020-10-30,"12:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410637112270401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120176041","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-30 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"114","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100237","Sample-Routine","Water","Surface Water",2020-10-30,"13:00:00","MDT",NA,NA,NA,NA,"6.4","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410637112270401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120176058","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-30 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"599","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100237","Sample-Routine","Water","Surface Water",2020-10-30,"13:00:00","MDT",NA,NA,NA,NA,"6.4","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410637112270401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120176069","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-30 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"115","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100272","Sample-Routine","Water","Surface Water",2020-11-19,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US D-95 plastic bottle","NWIS-120213762",NA,NA,"Nitrate","Dissolved","0.028","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-19 22:40:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.028,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"600","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100272","Sample-Routine","Water","Surface Water",2020-11-19,"15:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US D-95 plastic bottle","NWIS-120213785",NA,NA,"Nitrate","Dissolved","0.122","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-19 22:40:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.122,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"116","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100280","Sample-Routine","Water","Groundwater",2020-11-04,"16:30:00","MST",NA,NA,NA,NA,"83","feet",NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403524111512901",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238171",NA,NA,"Nitrate","Dissolved","8.58","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-04 23:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.58994167000000","-111.8580472000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4640","feet","5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19990614","88.5","ft","88.5","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",8.58,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.58994167,-111.8580472,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",25.2984,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"601","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100280","Sample-Routine","Water","Groundwater",2020-11-04,"16:30:00","MST",NA,NA,NA,NA,"83","feet",NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403524111512901",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238475",NA,NA,"Nitrate","Dissolved","38.0","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-11-04 23:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.58994167000000","-111.8580472000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4640","feet","5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19990614","88.5","ft","88.5","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",38,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.58994167,-111.8580472,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",25.2984,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"117","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100282","Sample-Routine","Water","Surface Water",2020-11-30,"10:40:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238602","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-30 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"602","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100282","Sample-Routine","Water","Surface Water",2020-11-30,"10:40:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238612","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-30 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"118","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100283","Sample-Routine","Water","Surface Water",2020-11-30,"10:50:00","MST",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238629","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-30 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"603","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100283","Sample-Routine","Water","Surface Water",2020-11-30,"10:50:00","MST",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238639","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-30 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"119","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100284","Sample-Routine","Water","Surface Water",2020-11-30,"11:55:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238656","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-30 18:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"604","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100284","Sample-Routine","Water","Surface Water",2020-11-30,"11:55:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238666","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-30 18:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"120","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100285","Sample-Routine","Water","Surface Water",2020-11-30,"12:00:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238683","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-30 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"605","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100285","Sample-Routine","Water","Surface Water",2020-11-30,"12:00:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238693","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-30 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"121","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100286","Sample-Routine","Water","Surface Water",2020-11-30,"12:45:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238710","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-30 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"606","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100286","Sample-Routine","Water","Surface Water",2020-11-30,"12:45:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238720","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-30 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"122","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100287","Sample-Routine","Water","Surface Water",2020-11-30,"13:00:00","MST",NA,NA,NA,NA,"3.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238737","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-30 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"607","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100287","Sample-Routine","Water","Surface Water",2020-11-30,"13:00:00","MST",NA,NA,NA,NA,"3.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238747","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-30 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"123","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100288","Sample-Routine","Water","Surface Water",2020-11-30,"13:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238764","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-30 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"608","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100288","Sample-Routine","Water","Surface Water",2020-11-30,"13:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238774","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-30 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"124","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100289","Sample-Routine","Water","Surface Water",2020-11-30,"13:40:00","MST",NA,NA,NA,NA,"1.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238791","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-11-30 20:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"609","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100289","Sample-Routine","Water","Surface Water",2020-11-30,"13:40:00","MST",NA,NA,NA,NA,"1.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120238801","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-11-30 20:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"125","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100290","Sample-Routine","Water","Surface Water",2020-12-03,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-120238821","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-12-03 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"610","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100290","Sample-Routine","Water","Surface Water",2020-12-03,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-120238835","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-12-03 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"126","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100291","Sample-Routine","Water","Surface Water",2020-12-03,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120238864","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2020-12-03 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"611","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100291","Sample-Routine","Water","Surface Water",2020-12-03,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120238878","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-12-03 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"127","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100326","Sample-Routine","Water","Surface Water",2020-12-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120275843","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",7,NA,2020-12-10 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"612","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100326","Sample-Routine","Water","Surface Water",2020-12-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120275870","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",7,NA,2020-12-10 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"128","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100327","Sample-Routine","Water","Surface Water",2020-12-03,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-120275902",NA,NA,"Nitrate","Dissolved","0.529","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-03 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.529,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2057","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100327","Sample-Routine","Water","Surface Water",2020-12-03,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-120275937",NA,NA,"Nitrogen","Suspended","0.031","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-01-12,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2020-12-03 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.031,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"613","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100327","Sample-Routine","Water","Surface Water",2020-12-03,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-120276029",NA,NA,"Nitrate","Dissolved","2.34","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-03 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.34,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"129","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100358","Sample-Routine","Water","Surface Water",2020-12-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81","NWIS-120320200",NA,NA,"Nitrate","Dissolved","0.732","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-22 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.732,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2058","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100358","Sample-Routine","Water","Surface Water",2020-12-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81","NWIS-120320235",NA,NA,"Nitrogen","Suspended","0.294","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-03-11,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2020-12-22 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"614","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100358","Sample-Routine","Water","Surface Water",2020-12-22,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81","NWIS-120320327",NA,NA,"Nitrate","Dissolved","3.24","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-22 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.24,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"130","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100387","Sample-Routine","Water","Surface Water",2020-12-21,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-120365582",NA,NA,"Nitrate","Dissolved","0.063","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-21 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.063,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"615","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100387","Sample-Routine","Water","Surface Water",2020-12-21,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-120365601",NA,NA,"Nitrate","Dissolved","0.279","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-21 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.279,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"131","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100388","Sample-Routine","Water","Surface Water",2020-12-28,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Regulated flow",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-120365623",NA,NA,"Nitrate","Dissolved","0.031","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-28 22:30:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.031,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"616","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100388","Sample-Routine","Water","Surface Water",2020-12-28,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Regulated flow",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-120365648",NA,NA,"Nitrate","Dissolved","0.135","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-28 22:30:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.135,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"132","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100417","Sample-Routine","Water","Surface Water",2020-12-17,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120388450",NA,NA,"Nitrate","Dissolved","4.92","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-17 18:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.92,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2059","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100417","Sample-Routine","Water","Surface Water",2020-12-17,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120388484",NA,NA,"Nitrogen","Suspended","0.237","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-01-21,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2020-12-17 18:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"617","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100417","Sample-Routine","Water","Surface Water",2020-12-17,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120388576",NA,NA,"Nitrate","Dissolved","21.8","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-17 18:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",21.8,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"133","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100421","Sample-Routine","Water","Surface Water",2021-01-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120388657",NA,NA,"Nitrate","Dissolved","5.52","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-07 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.52,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2060","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100421","Sample-Routine","Water","Surface Water",2021-01-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120388692",NA,NA,"Nitrogen","Suspended","0.189","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-03-18,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-01-07 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.189,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"618","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100421","Sample-Routine","Water","Surface Water",2021-01-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120388784",NA,NA,"Nitrate","Dissolved","24.4","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-07 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",24.4,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"134","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100422","Sample-Routine","Water","Surface Water",2021-01-07,"00:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120388843",NA,NA,"Nitrate","Dissolved","0.792","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-07 07:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.792,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2061","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100422","Sample-Routine","Water","Surface Water",2021-01-07,"00:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120388878",NA,NA,"Nitrogen","Suspended","0.054","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-03-18,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-01-07 07:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.054,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"619","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100422","Sample-Routine","Water","Surface Water",2021-01-07,"00:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120388969",NA,NA,"Nitrate","Dissolved","3.51","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-07 07:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.51,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"135","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100429","Sample-Routine","Water","Surface Water",2020-12-16,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120417802",NA,NA,"Nitrate","Dissolved","4.05","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-16 18:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.05,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"620","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100429","Sample-Routine","Water","Surface Water",2020-12-16,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120417822",NA,NA,"Nitrate","Dissolved","17.9","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-16 18:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",17.9,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"136","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100430","Sample-Routine","Water","Surface Water",2020-12-15,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120417851",NA,NA,"Nitrate","Dissolved","1.64","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-15 21:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.64,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"621","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100430","Sample-Routine","Water","Surface Water",2020-12-15,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120417872",NA,NA,"Nitrate","Dissolved","7.27","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-15 21:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",7.27,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"137","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100431","Sample-Routine","Water","Surface Water",2020-12-15,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120417902",NA,NA,"Nitrate","Dissolved","4.33","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-15 18:30:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.33,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"622","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100431","Sample-Routine","Water","Surface Water",2020-12-15,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120417922",NA,NA,"Nitrate","Dissolved","19.2","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2020-12-15 18:30:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",19.2,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"138","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100443","Sample-Routine","Water","Surface Water",2021-01-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120441389",NA,NA,"Nitrate","Dissolved","0.019","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-13 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.019,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"623","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100443","Sample-Routine","Water","Surface Water",2021-01-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120441416",NA,NA,"Nitrate","Dissolved","0.085","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-13 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.085,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"139","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100465","Sample-Routine","Water","Surface Water",2021-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120469266",NA,NA,"Nitrate","Dissolved","0.930","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-21 17:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.93,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2062","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100465","Sample-Routine","Water","Surface Water",2021-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120469301",NA,NA,"Nitrogen","Suspended","0.051","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-03-19,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-01-21 17:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.051,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"624","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100465","Sample-Routine","Water","Surface Water",2021-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120469393",NA,NA,"Nitrate","Dissolved","4.12","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-21 17:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.12,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"140","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100458","Sample-Routine","Water","Surface Water",2021-01-16,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120488934",NA,NA,"Nitrate","Dissolved","0.702","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-16 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4199","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.702,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.06055556,-112.2483333,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"625","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100458","Sample-Routine","Water","Surface Water",2021-01-16,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120488945",NA,NA,"Nitrate","Dissolved","3.11","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-16 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4199","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.11,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.06055556,-112.2483333,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"141","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100459","Sample-Routine","Water","Surface Water",2021-01-16,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120488957","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-01-16 20:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4196","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.015,-112.2555556,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"626","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100459","Sample-Routine","Water","Surface Water",2021-01-16,"13:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120488969","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-01-16 20:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4196","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.015,-112.2555556,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"142","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100505","Sample-Routine","Water","Surface Water",2021-01-27,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120518688",NA,NA,"Nitrate","Dissolved","2.46","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-27 21:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.46,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"627","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100505","Sample-Routine","Water","Surface Water",2021-01-27,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120518707",NA,NA,"Nitrate","Dissolved","10.9","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-27 21:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",10.9,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"143","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100506","Sample-Routine","Water","Surface Water",2021-01-27,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120518731",NA,NA,"Nitrate","Dissolved","3.08","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-27 17:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.08,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"628","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100506","Sample-Routine","Water","Surface Water",2021-01-27,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120518750",NA,NA,"Nitrate","Dissolved","13.6","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-27 17:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",13.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"144","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100507","Quality Control Sample-Field Replicate","Water","Surface Water",2021-01-25,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120518780",NA,NA,"Nitrate","Dissolved","1.48","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-25 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",1.48,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"629","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100507","Quality Control Sample-Field Replicate","Water","Surface Water",2021-01-25,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120518801",NA,NA,"Nitrate","Dissolved","6.54","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-01-25 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",6.54,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"145","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100510","Sample-Routine","Water","Surface Water",2021-02-02,"10:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525784","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-02 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"630","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100510","Sample-Routine","Water","Surface Water",2021-02-02,"10:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525794","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-02 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"146","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100511","Sample-Routine","Water","Surface Water",2021-02-02,"10:40:00","MST",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525810","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-02 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"631","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100511","Sample-Routine","Water","Surface Water",2021-02-02,"10:40:00","MST",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525819","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-02 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"147","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100512","Sample-Routine","Water","Surface Water",2021-02-02,"11:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525835","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-02 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"632","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100512","Sample-Routine","Water","Surface Water",2021-02-02,"11:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525845","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-02 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"148","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100514","Sample-Routine","Water","Surface Water",2021-02-02,"12:50:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525883","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-02 19:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"633","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100514","Sample-Routine","Water","Surface Water",2021-02-02,"12:50:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525893","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-02 19:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"149","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100515","Sample-Routine","Water","Surface Water",2021-02-02,"13:00:00","MST",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525909","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-02 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"634","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100515","Sample-Routine","Water","Surface Water",2021-02-02,"13:00:00","MST",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525919","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-02 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"150","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100516","Sample-Routine","Water","Surface Water",2021-02-02,"13:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525935","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-02 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"635","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100516","Sample-Routine","Water","Surface Water",2021-02-02,"13:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525945","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-02 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"151","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100517","Sample-Routine","Water","Surface Water",2021-02-02,"13:40:00","MST",NA,NA,NA,NA,"1.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525961","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-02 20:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"636","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100517","Sample-Routine","Water","Surface Water",2021-02-02,"13:40:00","MST",NA,NA,NA,NA,"1.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120525971","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-02 20:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"152","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100520","Sample-Routine","Water","Surface Water",2021-02-01,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Regulated flow",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-120526066",NA,NA,"Nitrate","Dissolved","0.055","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-01 22:00:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.055,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"637","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100520","Sample-Routine","Water","Surface Water",2021-02-01,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Regulated flow",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-120526091",NA,NA,"Nitrate","Dissolved","0.241","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-01 22:00:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.241,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"153","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100523","Sample-Routine","Water","Groundwater",2021-02-03,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404315111561501",NA,"L-0350106 Numerical result and or metadata revised; see NWQL Technical Memorandum 2022.01",NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120529423","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.037","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-03 22:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.72042220000000","-111.9371139000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4230","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","20011121","998","ft","1055","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.037,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.7204222,-111.9371139,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.037,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"638","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100523","Sample-Routine","Water","Groundwater",2021-02-03,"15:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404315111561501",NA,"L-0350106 Numerical result and or metadata revised; see NWQL Technical Memorandum 2022.01",NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120529736","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.165","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-03 22:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.72042220000000","-111.9371139000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4230","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","20011121","998","ft","1055","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.165,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.7204222,-111.9371139,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.165,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"154","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100553","Sample-Routine","Water","Surface Water",2021-02-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120587408",NA,NA,"Nitrate","Dissolved","1.31","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-11 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.31,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2063","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100553","Sample-Routine","Water","Surface Water",2021-02-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120587441",NA,NA,"Nitrogen","Suspended","0.079","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-04-01,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-02-11 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.079,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"639","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100553","Sample-Routine","Water","Surface Water",2021-02-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120587533",NA,NA,"Nitrate","Dissolved","5.80","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-11 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.8,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"155","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100556","Quality Control Sample-Field Replicate","Water","Surface Water",2021-01-06,"10:45:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120590969","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-01-06 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"640","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100556","Quality Control Sample-Field Replicate","Water","Surface Water",2021-01-06,"10:45:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120590979","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-01-06 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"156","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100558","Sample-Routine","Water","Surface Water",2021-01-06,"12:00:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591021","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-01-06 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"641","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100558","Sample-Routine","Water","Surface Water",2021-01-06,"12:00:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591031","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-01-06 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"157","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100560","Sample-Routine","Water","Surface Water",2021-01-06,"12:50:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591073","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-01-06 19:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"642","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100560","Sample-Routine","Water","Surface Water",2021-01-06,"12:50:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591083","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-01-06 19:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"158","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100561","Sample-Routine","Water","Surface Water",2021-01-06,"13:35:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591101","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-01-06 20:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"643","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100561","Sample-Routine","Water","Surface Water",2021-01-06,"13:35:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591111","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-01-06 20:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"159","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100563","Sample-Routine","Water","Surface Water",2021-01-06,"13:10:00","MST",NA,NA,NA,NA,"2.3","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591129","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-01-06 20:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",2.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"644","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100563","Sample-Routine","Water","Surface Water",2021-01-06,"13:10:00","MST",NA,NA,NA,NA,"2.3","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591139","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-01-06 20:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",2.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"160","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100562","Sample-Routine","Water","Surface Water",2021-01-06,"13:50:00","MST",NA,NA,NA,NA,"1","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591157","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-01-06 20:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"645","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100562","Sample-Routine","Water","Surface Water",2021-01-06,"13:50:00","MST",NA,NA,NA,NA,"1","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120591167","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-01-06 20:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"161","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100604","Sample-Routine","Water","Surface Water",2021-02-25,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120676882",NA,NA,"Nitrate","Dissolved","0.644","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-25 20:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.644,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2064","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100604","Sample-Routine","Water","Surface Water",2021-02-25,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120676917",NA,NA,"Nitrogen","Suspended","0.043","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-05-13,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-02-25 20:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.043,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"646","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100604","Sample-Routine","Water","Surface Water",2021-02-25,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120677008",NA,NA,"Nitrate","Dissolved","2.85","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-25 20:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.85,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"162","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100605","Sample-Routine","Water","Surface Water",2021-02-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,"bottle date 2/25/21",NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120677059",NA,NA,"Nitrate","Dissolved","6.31","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-25 17:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.31,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2065","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100605","Sample-Routine","Water","Surface Water",2021-02-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,"bottle date 2/25/21",NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120677094",NA,NA,"Nitrogen","Suspended","0.119","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-05-13,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-02-25 17:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.119,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"647","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100605","Sample-Routine","Water","Surface Water",2021-02-25,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,"bottle date 2/25/21",NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120677186",NA,NA,"Nitrate","Dissolved","27.9","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-25 17:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",27.9,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"163","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100606","Sample-Routine","Water","Surface Water",2021-02-25,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-371735110235601",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-120682992",NA,NA,"Nitrate","Dissolved","0.474","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-25 19:55:00,NA,"Stream",NA,"14080205",NA,NA,NA,NA,"37.29300000000000","-110.3990000000000","24000",".5","seconds","Interpolated from Digital MAP.","NAD83","3703","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.474,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.293,-110.399,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"648","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100606","Sample-Routine","Water","Surface Water",2021-02-25,"12:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-371735110235601",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-120683050",NA,NA,"Nitrate","Dissolved","2.10","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-25 19:55:00,NA,"Stream",NA,"14080205",NA,NA,NA,NA,"37.29300000000000","-110.3990000000000","24000",".5","seconds","Interpolated from Digital MAP.","NAD83","3703","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.293,-110.399,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"164","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100616","Sample-Routine","Water","Surface Water",2021-02-26,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120683162","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-26 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"649","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100616","Sample-Routine","Water","Surface Water",2021-02-26,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120683189","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-26 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"165","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100617","Sample-Routine","Water","Groundwater",2021-02-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403743111544000",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120693460",NA,NA,"Nitrate","Dissolved","0.935","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-09 20:15:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.62818889000000","-111.9120944000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4280","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19720315","391","ft","391","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.935,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.62818889,-111.9120944,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"650","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100617","Sample-Routine","Water","Groundwater",2021-02-09,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403743111544000",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120693774",NA,NA,"Nitrate","Dissolved","4.14","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-02-09 20:15:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.62818889000000","-111.9120944000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4280","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19720315","391","ft","391","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.14,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.62818889,-111.9120944,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"166","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100645","Sample-Routine","Water","Surface Water",2021-03-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-120716778",NA,NA,"Nitrate","Dissolved","0.010","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-03 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"651","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100645","Sample-Routine","Water","Surface Water",2021-03-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-120716795",NA,NA,"Nitrate","Dissolved","0.046","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-03 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.046,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"167","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100644","Sample-Routine","Water","Surface Water",2021-03-01,"13:46:00","MST",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716832","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-03-01 20:46:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"652","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100644","Sample-Routine","Water","Surface Water",2021-03-01,"13:46:00","MST",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716842","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-03-01 20:46:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"168","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100643","Sample-Routine","Water","Surface Water",2021-03-01,"13:36:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716859","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.036","mg/l as N",NA,NA,"NWIS",7,NA,2021-03-01 20:36:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.036,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.036,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"653","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100643","Sample-Routine","Water","Surface Water",2021-03-01,"13:36:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716869","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.162","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-03-01 20:36:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.162,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.162,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"169","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100642","Sample-Routine","Water","Surface Water",2021-03-01,"12:57:00","MST",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716886","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-03-01 19:57:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"654","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100642","Sample-Routine","Water","Surface Water",2021-03-01,"12:57:00","MST",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716896","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-03-01 19:57:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"170","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100641","Sample-Routine","Water","Surface Water",2021-03-01,"12:47:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716913","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-03-01 19:47:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"655","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100641","Sample-Routine","Water","Surface Water",2021-03-01,"12:47:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716923","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-03-01 19:47:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"171","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100640","Sample-Routine","Water","Surface Water",2021-03-01,"12:00:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716940","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",7,NA,2021-03-01 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"656","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100640","Sample-Routine","Water","Surface Water",2021-03-01,"12:00:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716950","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-03-01 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"172","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100639","Sample-Routine","Water","Surface Water",2021-03-01,"11:50:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716967","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.039","mg/l as N",NA,NA,"NWIS",7,NA,2021-03-01 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.039,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.039,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"657","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100639","Sample-Routine","Water","Surface Water",2021-03-01,"11:50:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716977","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.172","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-03-01 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.172,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.172,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"173","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100638","Sample-Routine","Water","Surface Water",2021-03-01,"10:45:00","MST",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120716994","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-03-01 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"658","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100638","Sample-Routine","Water","Surface Water",2021-03-01,"10:45:00","MST",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120717003","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-03-01 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"174","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100637","Quality Control Sample-Field Replicate","Water","Surface Water",2021-03-01,"10:35:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120717020","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-03-01 17:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"659","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100637","Quality Control Sample-Field Replicate","Water","Surface Water",2021-03-01,"10:35:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120717030","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-03-01 17:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"175","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100631","Sample-Routine","Water","Surface Water",2021-02-02,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-120717109","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-02 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"660","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100631","Sample-Routine","Water","Surface Water",2021-02-02,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-120717120","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-02 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"176","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100632","Sample-Routine","Water","Surface Water",2021-02-02,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120717147","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2021-02-02 19:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"661","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100632","Sample-Routine","Water","Surface Water",2021-02-02,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120717160","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-02-02 19:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"177","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100672","Sample-Routine","Water","Surface Water",2020-10-29,"12:00:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120747041","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"662","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100672","Sample-Routine","Water","Surface Water",2020-10-29,"12:00:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120747051","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"178","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100673","Sample-Routine","Water","Surface Water",2020-10-29,"12:10:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120747075","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2020-10-29 18:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"663","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100673","Sample-Routine","Water","Surface Water",2020-10-29,"12:10:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120747085","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2020-10-29 18:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"179","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100675","Sample-Routine","Water","Surface Water",2021-03-11,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120751674",NA,NA,"Nitrate","Dissolved","1.74","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-11 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.74,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2066","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100675","Sample-Routine","Water","Surface Water",2021-03-11,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120751709",NA,NA,"Nitrogen","Suspended","0.048","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-05-18,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-03-11 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.048,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"664","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100675","Sample-Routine","Water","Surface Water",2021-03-11,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120751799",NA,NA,"Nitrate","Dissolved","7.68","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-11 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",7.68,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"180","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100676","Sample-Routine","Water","Surface Water",2021-03-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120751854",NA,NA,"Nitrate","Dissolved","6.23","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-11 18:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.23,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2067","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100676","Sample-Routine","Water","Surface Water",2021-03-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120751889",NA,NA,"Nitrogen","Suspended","0.131","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-05-18,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-03-11 18:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.131,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"665","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100676","Sample-Routine","Water","Surface Water",2021-03-11,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120751979",NA,NA,"Nitrate","Dissolved","27.6","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-11 18:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",27.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"181","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100689","Sample-Routine","Water","Surface Water",2021-03-12,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120780865","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",7,NA,2021-03-12 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"666","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100689","Sample-Routine","Water","Surface Water",2021-03-12,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120780886","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-03-12 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"182","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100690","Sample-Routine","Water","Surface Water",2021-03-09,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120780916",NA,NA,"Nitrate","Dissolved","5.58","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-09 21:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.58,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"667","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100690","Sample-Routine","Water","Surface Water",2021-03-09,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120780936",NA,NA,"Nitrate","Dissolved","24.7","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-09 21:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",24.7,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"183","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100691","Sample-Routine","Water","Surface Water",2021-03-09,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120780965",NA,NA,"Nitrate","Dissolved","7.68","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-09 17:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",7.68,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"668","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100691","Sample-Routine","Water","Surface Water",2021-03-09,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-120780985",NA,NA,"Nitrate","Dissolved","34.0","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-09 17:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",34,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"184","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100703","Sample-Routine","Water","Surface Water",2021-03-18,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Regulated flow",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-120823908",NA,NA,"Nitrate","Dissolved","0.035","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-03-18 20:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.035,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"669","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100703","Sample-Routine","Water","Surface Water",2021-03-18,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Regulated flow",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-120823933",NA,NA,"Nitrate","Dissolved","0.156","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-03-18 20:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.156,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"185","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100723","Sample-Routine","Water","Surface Water",2021-03-26,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120853542","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-03-26 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"670","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100723","Sample-Routine","Water","Surface Water",2021-03-26,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120853569","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-03-26 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"186","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100724","Sample-Routine","Water","Surface Water",2021-03-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120853600",NA,NA,"Nitrate","Dissolved","1.81","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-03-25 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.81,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2068","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100724","Sample-Routine","Water","Surface Water",2021-03-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120853635",NA,NA,"Nitrogen","Suspended","0.030","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-06-07,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-03-25 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"671","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100724","Sample-Routine","Water","Surface Water",2021-03-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120853727",NA,NA,"Nitrate","Dissolved","8.00","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-03-25 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",8,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"187","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100725","Sample-Routine","Water","Surface Water",2021-03-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-120853785",NA,NA,"Nitrate","Dissolved","5.14","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-03-25 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.14,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2069","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100725","Sample-Routine","Water","Surface Water",2021-03-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-120853820",NA,NA,"Nitrogen","Suspended","0.211","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-06-07,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-03-25 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"672","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100725","Sample-Routine","Water","Surface Water",2021-03-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-120853911",NA,NA,"Nitrate","Dissolved","22.8","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-03-25 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",22.8,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"188","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100748","Sample-Routine","Water","Surface Water",2021-04-08,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120913859","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-08 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"673","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100748","Sample-Routine","Water","Surface Water",2021-04-08,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-120913886","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-08 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"189","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100765","Sample-Routine","Water","Surface Water",2021-04-02,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-120919436","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-02 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"674","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100765","Sample-Routine","Water","Surface Water",2021-04-02,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-120919458","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-02 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"190","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100766","Sample-Routine","Water","Surface Water",2021-04-01,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120919487","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-01 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"675","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100766","Sample-Routine","Water","Surface Water",2021-04-01,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-120919500","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-01 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"191","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100767","Sample-Routine","Water","Surface Water",2021-04-01,"11:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-120919527","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-01 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"676","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100767","Sample-Routine","Water","Surface Water",2021-04-01,"11:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-120919538","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-01 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"192","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100786","Sample-Routine","Water","Surface Water",2021-04-10,"13:00:00","MDT",NA,NA,NA,NA,"2.6","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120931939","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-10 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",2.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"677","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100786","Sample-Routine","Water","Surface Water",2021-04-10,"13:00:00","MDT",NA,NA,NA,NA,"2.6","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120931949","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-10 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",2.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"193","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100784","Sample-Routine","Water","Surface Water",2021-04-10,"12:17:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120931988","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-10 18:17:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"678","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100784","Sample-Routine","Water","Surface Water",2021-04-10,"12:17:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120931997","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-10 18:17:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"194","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100781","Sample-Routine","Water","Surface Water",2021-04-10,"10:10:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120932050","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-10 16:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"679","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100781","Sample-Routine","Water","Surface Water",2021-04-10,"10:10:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-120932060","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-10 16:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"195","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100833","Sample-Routine","Water","Surface Water",2021-04-21,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-09234500",NA,NA,NA,"Stable, normal stage","Regulated flow",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-120996759",NA,NA,"Nitrate","Dissolved","0.047","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-21 16:30:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.047,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"680","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100833","Sample-Routine","Water","Surface Water",2021-04-21,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-09234500",NA,NA,NA,"Stable, normal stage","Regulated flow",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-120996792",NA,NA,"Nitrate","Dissolved","0.210","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-21 16:30:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.21,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"196","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100836","Sample-Routine","Water","Surface Water",2021-04-22,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120996935",NA,NA,"Nitrate","Dissolved","0.092","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-22 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.092,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2070","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100836","Sample-Routine","Water","Surface Water",2021-04-22,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120996970",NA,NA,"Nitrogen","Suspended","0.330","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-06-24,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-04-22 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"681","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100836","Sample-Routine","Water","Surface Water",2021-04-22,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120997062",NA,NA,"Nitrate","Dissolved","0.408","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-22 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.408,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"197","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100837","Sample-Routine","Water","Surface Water",2021-04-22,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120997123",NA,NA,"Nitrate","Dissolved","4.96","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-22 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.96,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2071","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100837","Sample-Routine","Water","Surface Water",2021-04-22,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120997158",NA,NA,"Nitrogen","Suspended","0.231","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-06-24,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-04-22 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"682","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100837","Sample-Routine","Water","Surface Water",2021-04-22,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-120997250",NA,NA,"Nitrate","Dissolved","22.0","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-22 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",22,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"198","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100838","Sample-Routine","Water","Surface Water",2021-04-23,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121001165","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-23 18:30:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"683","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100838","Sample-Routine","Water","Surface Water",2021-04-23,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121001192","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-23 18:30:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"199","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100844","Sample-Routine","Water","Surface Water",2021-04-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121019162","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-28 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"684","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100844","Sample-Routine","Water","Surface Water",2021-04-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121019189","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-28 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"200","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100855","Quality Control Sample-Field Replicate","Water","Surface Water",2021-04-23,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-121032530","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-23 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"685","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100855","Quality Control Sample-Field Replicate","Water","Surface Water",2021-04-23,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-121032550","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-23 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"201","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100856","Sample-Routine","Water","Surface Water",2021-04-19,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121032576",NA,NA,"Nitrate","Dissolved","0.183","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-19 19:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.183,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"686","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100856","Sample-Routine","Water","Surface Water",2021-04-19,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10141000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121032596",NA,NA,"Nitrate","Dissolved","0.812","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-19 19:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.812,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"202","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100857","Sample-Routine","Water","Surface Water",2021-04-19,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121032626",NA,NA,"Nitrate","Dissolved","5.54","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-19 16:45:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.54,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"687","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100857","Sample-Routine","Water","Surface Water",2021-04-19,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121032646",NA,NA,"Nitrate","Dissolved","24.5","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-04-19 16:45:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",24.5,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"203","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100893","Sample-Routine","Water","Surface Water",2021-05-06,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121066769",NA,NA,"Nitrate","Dissolved","4.95","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-06 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.95,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2072","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100893","Sample-Routine","Water","Surface Water",2021-05-06,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121066804",NA,NA,"Nitrogen","Suspended","0.199","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-07-06,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-05-06 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"688","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100893","Sample-Routine","Water","Surface Water",2021-05-06,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121066896",NA,NA,"Nitrate","Dissolved","21.9","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-06 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",21.9,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"204","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100892","Sample-Routine","Water","Surface Water",2021-05-06,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121066973",NA,NA,"Nitrate","Dissolved","0.073","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-06 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.073,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2073","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100892","Sample-Routine","Water","Surface Water",2021-05-06,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121067008",NA,NA,"Nitrogen","Suspended","0.248","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-07-06,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-05-06 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"689","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100892","Sample-Routine","Water","Surface Water",2021-05-06,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121067100",NA,NA,"Nitrate","Dissolved","0.321","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-06 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.321,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"205","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100917","Sample-Routine","Water","Surface Water",2021-05-05,"11:40:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086818","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-05 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"690","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100917","Sample-Routine","Water","Surface Water",2021-05-05,"11:40:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086828","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-05 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"206","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100918","Sample-Routine","Water","Surface Water",2021-05-05,"11:45:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086846","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-05 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"691","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100918","Sample-Routine","Water","Surface Water",2021-05-05,"11:45:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086856","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-05 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"207","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100919","Sample-Routine","Water","Surface Water",2021-05-05,"12:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086874","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-05 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"692","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100919","Sample-Routine","Water","Surface Water",2021-05-05,"12:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086884","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-05 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"208","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100920","Sample-Routine","Water","Surface Water",2021-05-05,"12:35:00","MDT",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086902","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-05 18:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"693","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100920","Sample-Routine","Water","Surface Water",2021-05-05,"12:35:00","MDT",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086912","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-05 18:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"209","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100921","Sample-Routine","Water","Surface Water",2021-05-05,"13:15:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086928","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-05 19:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"694","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100921","Sample-Routine","Water","Surface Water",2021-05-05,"13:15:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086938","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-05 19:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"210","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100922","Quality Control Sample-Field Replicate","Water","Surface Water",2021-05-05,"10:25:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086956","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-05 16:25:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"695","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100922","Quality Control Sample-Field Replicate","Water","Surface Water",2021-05-05,"10:25:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086966","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-05 16:25:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"211","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100924","Sample-Routine","Water","Surface Water",2021-05-05,"10:30:00","MDT",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121086995","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-05 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"696","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100924","Sample-Routine","Water","Surface Water",2021-05-05,"10:30:00","MDT",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121087004","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-05 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"212","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100931","Sample-Routine","Water","Surface Water",2021-05-12,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121142664","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-12 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"697","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100931","Sample-Routine","Water","Surface Water",2021-05-12,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121142691","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-12 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"213","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100978","Sample-Routine","Water","Surface Water",2021-05-20,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121192257",NA,NA,"Nitrate","Dissolved","0.237","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-20 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.237,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2074","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100978","Sample-Routine","Water","Surface Water",2021-05-20,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121192292",NA,NA,"Nitrogen","Suspended","0.155","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-08-05,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-05-20 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.155,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"698","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100978","Sample-Routine","Water","Surface Water",2021-05-20,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121192384",NA,NA,"Nitrate","Dissolved","1.05","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-20 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.05,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"214","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100979","Sample-Routine","Water","Surface Water",2021-05-20,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121192445",NA,NA,"Nitrate","Dissolved","3.62","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-20 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.62,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2075","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100979","Sample-Routine","Water","Surface Water",2021-05-20,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121192482",NA,NA,"Nitrogen","Suspended","0.155","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-08-05,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-05-20 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.155,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"699","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100979","Sample-Routine","Water","Surface Water",2021-05-20,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121192574",NA,NA,"Nitrate","Dissolved","16.0","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-20 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",16,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"215","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101001","Sample-Routine","Water","Surface Water",2021-05-26,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121218558","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-26 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"700","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101001","Sample-Routine","Water","Surface Water",2021-05-26,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121218585","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-26 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"216","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101051","Sample-Routine","Water","Surface Water",2021-05-27,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121261960",NA,NA,"Nitrate","Dissolved","0.278","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-27 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.278,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2076","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101051","Sample-Routine","Water","Surface Water",2021-05-27,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121261995",NA,NA,"Nitrogen","Suspended","0.152","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-08-13,"sample was warm when received",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-05-27 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.152,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"701","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101051","Sample-Routine","Water","Surface Water",2021-05-27,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121262087",NA,NA,"Nitrate","Dissolved","1.23","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-27 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.23,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"217","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101052","Sample-Routine","Water","Surface Water",2021-05-27,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-121262148",NA,NA,"Nitrate","Dissolved","3.74","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-27 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.74,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2077","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101052","Sample-Routine","Water","Surface Water",2021-05-27,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-121262183",NA,NA,"Nitrogen","Suspended","0.108","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-08-13,"sample was warm when received",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-05-27 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.108,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"702","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101052","Sample-Routine","Water","Surface Water",2021-05-27,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-121262275",NA,NA,"Nitrate","Dissolved","16.6","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-27 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",16.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"218","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101054","Sample-Routine","Water","Surface Water",2021-06-02,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272559","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-02 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"703","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101054","Sample-Routine","Water","Surface Water",2021-06-02,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272569","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-02 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"219","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101055","Sample-Routine","Water","Surface Water",2021-06-02,"10:40:00","MDT",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272587","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-02 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"704","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101055","Sample-Routine","Water","Surface Water",2021-06-02,"10:40:00","MDT",NA,NA,NA,NA,"7.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272596","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-02 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"220","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101056","Sample-Routine","Water","Surface Water",2021-06-02,"11:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272614","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-02 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"705","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101056","Sample-Routine","Water","Surface Water",2021-06-02,"11:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272624","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-02 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"221","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101057","Sample-Routine","Water","Surface Water",2021-06-02,"12:05:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272642","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-02 18:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"706","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101057","Sample-Routine","Water","Surface Water",2021-06-02,"12:05:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272652","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-02 18:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"222","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101058","Sample-Routine","Water","Surface Water",2021-06-02,"12:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272670","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.037","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-02 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.037,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.037,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"707","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101058","Sample-Routine","Water","Surface Water",2021-06-02,"12:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272680","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.166","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-02 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.166,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.166,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"223","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101059","Sample-Routine","Water","Surface Water",2021-06-02,"13:05:00","MDT",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272698","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-02 19:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"708","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101059","Sample-Routine","Water","Surface Water",2021-06-02,"13:05:00","MDT",NA,NA,NA,NA,"2.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272708","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-02 19:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"224","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101060","Sample-Routine","Water","Surface Water",2021-06-02,"13:35:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272726","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-02 19:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"709","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101060","Sample-Routine","Water","Surface Water",2021-06-02,"13:35:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121272736","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-02 19:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"225","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101081","Sample-Routine","Water","Groundwater",2021-06-09,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403532112015502",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121292901",NA,NA,"Nitrate","Dissolved","3.86","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-09 17:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.59248610000000","-112.0321278000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4880","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"19881017","614","ft","654","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.86,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.5924861,-112.0321278,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"710","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101081","Sample-Routine","Water","Groundwater",2021-06-09,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403532112015502",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121293198",NA,NA,"Nitrate","Dissolved","17.1","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-09 17:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.59248610000000","-112.0321278000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4880","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"19881017","614","ft","654","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",17.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.5924861,-112.0321278,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"226","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101084","Sample-Routine","Water","Surface Water",2021-06-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-121302843","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-03 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"711","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101084","Sample-Routine","Water","Surface Water",2021-06-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-121302863","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-03 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"227","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101086","Sample-Routine","Water","Surface Water",2021-06-02,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121302901",NA,NA,"Nitrate","Dissolved","0.155","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-02 16:30:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.155,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"712","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101086","Sample-Routine","Water","Surface Water",2021-06-02,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121302921",NA,NA,"Nitrate","Dissolved","0.686","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-02 16:30:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.686,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"228","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101085","Sample-Routine","Water","Surface Water",2021-06-02,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-121302952",NA,NA,"Nitrate","Dissolved","3.07","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-02 20:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.07,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"713","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101085","Sample-Routine","Water","Surface Water",2021-06-02,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-121302973",NA,NA,"Nitrate","Dissolved","13.6","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-02 20:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",13.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"229","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101106","Sample-Routine","Water","Groundwater",2021-06-15,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404100111483201",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121335104",NA,NA,"Nitrate","Dissolved","4.91","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-15 15:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.68328610000000","-111.8058639000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4790","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19641022","580","ft","580","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.91,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.6832861,-111.8058639,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"714","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101106","Sample-Routine","Water","Groundwater",2021-06-15,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404100111483201",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121335423",NA,NA,"Nitrate","Dissolved","21.7","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-15 15:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.68328610000000","-111.8058639000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4790","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19641022","580","ft","580","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",21.7,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.6832861,-111.8058639,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"230","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100763","Sample-Routine","Water","Surface Water",2021-04-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121340331","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-03 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4199","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.06055556,-112.2483333,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"715","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100763","Sample-Routine","Water","Surface Water",2021-04-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410338112145401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121340341","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-03 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06055556000000","-112.2483333000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4199","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.06055556,-112.2483333,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"231","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100764","Sample-Routine","Water","Surface Water",2021-04-03,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121340352","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-04-03 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4196","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.015,-112.2555556,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"716","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100764","Sample-Routine","Water","Surface Water",2021-04-03,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS-410054112152001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121340361","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-04-03 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.01500000000000","-112.2555556000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4196","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.015,-112.2555556,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"232","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101121","Sample-Routine","Water","Surface Water",2021-06-16,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121347129",NA,NA,"Nitrate","Dissolved","0.027","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-16 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.027,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"717","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101121","Sample-Routine","Water","Surface Water",2021-06-16,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121347156",NA,NA,"Nitrate","Dissolved","0.118","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-16 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.118,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"233","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101131","Sample-Routine","Water","Groundwater",2021-06-22,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404247111511501",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121377604",NA,NA,"Nitrate","Dissolved","1.90","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-22 16:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.71300830000000","-111.8541917000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4413","feet","5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19770509","502","ft","502","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.9,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.7130083,-111.8541917,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"718","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101131","Sample-Routine","Water","Groundwater",2021-06-22,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404247111511501",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121377924",NA,NA,"Nitrate","Dissolved","8.41","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-22 16:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.71300830000000","-111.8541917000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4413","feet","5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19770509","502","ft","502","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",8.41,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.7130083,-111.8541917,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"234","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101155","Sample-Routine","Water","Surface Water",2021-06-23,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121397492",NA,NA,"Nitrate","Dissolved","0.042","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-23 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.042,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2078","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101155","Sample-Routine","Water","Surface Water",2021-06-23,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121397527",NA,NA,"Nitrogen","Suspended","0.120","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-15,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-06-23 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"719","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101155","Sample-Routine","Water","Surface Water",2021-06-23,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121397619",NA,NA,"Nitrate","Dissolved","0.187","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-23 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.187,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"235","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101156","Sample-Routine","Water","Surface Water",2021-06-23,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121397678",NA,NA,"Nitrate","Dissolved","5.44","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-23 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.44,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2079","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101156","Sample-Routine","Water","Surface Water",2021-06-23,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121397713",NA,NA,"Nitrogen","Suspended","0.150","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-15,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-06-23 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"720","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101156","Sample-Routine","Water","Surface Water",2021-06-23,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121397805",NA,NA,"Nitrate","Dissolved","24.1","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-23 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",24.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"236","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101132","Sample-Routine","Water","Surface Water",2021-05-25,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,NA,"Stable, high stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121397983",NA,NA,"Nitrate","Dissolved","0.029","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 19:20:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.029,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"721","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101132","Sample-Routine","Water","Surface Water",2021-05-25,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,NA,"Stable, high stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121398006",NA,NA,"Nitrate","Dissolved","0.130","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 19:20:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.13,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"237","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101160","Sample-Routine","Water","Groundwater",2021-06-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403916112010701",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121405731",NA,NA,"Nitrate","Dissolved","2.07","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-24 16:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.65455556000000","-112.0186110000000","24000",".5","seconds","Interpolated from MAP.","NAD83","4710","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"198907","900","ft","940","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.07,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.65455556,-112.018611,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"722","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101160","Sample-Routine","Water","Groundwater",2021-06-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403916112010701",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121406051",NA,NA,"Nitrate","Dissolved","9.16","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-24 16:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.65455556000000","-112.0186110000000","24000",".5","seconds","Interpolated from MAP.","NAD83","4710","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"198907","900","ft","940","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",9.16,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.65455556,-112.018611,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"238","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100942","Sample-Routine","Water","Surface Water",2021-05-05,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-121425288","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-05 19:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"723","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100942","Sample-Routine","Water","Surface Water",2021-05-05,"13:20:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-121425299","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-05 19:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"239","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100943","Sample-Routine","Water","Surface Water",2021-05-05,"13:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-121425328","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-05 19:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"724","USGS-UT","USGS Utah Water Science Center","nwisut.01.02100943","Sample-Routine","Water","Surface Water",2021-05-05,"13:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-121425342","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-05 19:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"240","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101088","Sample-Routine","Water","Surface Water",2021-06-01,"13:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-121425431","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-01 19:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"725","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101088","Sample-Routine","Water","Surface Water",2021-06-01,"13:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-121425477","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-01 19:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"241","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101174","Sample-Routine","Water","Groundwater",2021-06-29,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403423111514401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121437605",NA,NA,"Nitrate","Dissolved","0.332","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-29 16:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.57316667000000","-111.8627778000000","24000","1","seconds","Interpolated from MAP.","NAD83","4548","feet","5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19550331","606","ft","657","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.332,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.57316667,-111.8627778,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"726","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101174","Sample-Routine","Water","Groundwater",2021-06-29,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403423111514401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121437924",NA,NA,"Nitrate","Dissolved","1.47","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-29 16:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.57316667000000","-111.8627778000000","24000","1","seconds","Interpolated from MAP.","NAD83","4548","feet","5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19550331","606","ft","657","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.47,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.57316667,-111.8627778,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"242","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101175","Sample-Routine","Water","Surface Water",2021-06-29,"11:00:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459285","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-29 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"727","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101175","Sample-Routine","Water","Surface Water",2021-06-29,"11:00:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459296","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-29 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"243","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101177","Sample-Routine","Water","Surface Water",2021-06-29,"14:20:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459313","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-29 20:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"728","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101177","Sample-Routine","Water","Surface Water",2021-06-29,"14:20:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459324","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-29 20:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"244","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101178","Sample-Routine","Water","Surface Water",2021-06-29,"14:57:00","MDT",NA,NA,NA,NA,"3.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459341","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-29 20:57:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",3.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"729","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101178","Sample-Routine","Water","Surface Water",2021-06-29,"14:57:00","MDT",NA,NA,NA,NA,"3.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459352","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-29 20:57:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",3.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"245","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101179","Sample-Routine","Water","Surface Water",2021-06-30,"10:55:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459369","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-30 16:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"730","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101179","Sample-Routine","Water","Surface Water",2021-06-30,"10:55:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459380","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-30 16:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"246","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101180","Sample-Routine","Water","Surface Water",2021-06-30,"11:15:00","MDT",NA,NA,NA,NA,"0.6","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459397","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-30 17:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"731","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101180","Sample-Routine","Water","Surface Water",2021-06-30,"11:15:00","MDT",NA,NA,NA,NA,"0.6","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459408","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-30 17:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"247","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101176","Quality Control Sample-Field Replicate","Water","Surface Water",2021-06-29,"12:20:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459425","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-06-29 18:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"732","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101176","Quality Control Sample-Field Replicate","Water","Surface Water",2021-06-29,"12:20:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121459435","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-06-29 18:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"248","USGS-CO","USGS Colorado Water Science Center","nwisco.01.02102146","Sample-Routine","Water","Bulk deposition",2021-03-22,"12:17:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Colorado Water Science Center","USGS-404456109301800",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121467217",NA,NA,"Nitrate","Dissolved","0.103","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"IC032","USGS","Ions, wf, auto IC (NRP & CO)",NA,"USGS TWRI 5-A1/1989, p 523","USGS CO WSC Water-Quality Research Lab, Denver",2021-08-03,NA,NA,"Laboratory Reporting Level","0.007","mg/l as N",NA,NA,"NWIS",6,NA,2021-03-22 18:17:00,NA,"Land",NA,"14060002",NA,NA,NA,NA,"40.74888889000000","-109.5050000000000",NA,"1","minutes","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","9558","feet","50","feet","Global Positioning System.","NAVD88","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.103,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.74888889,-109.505,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.007,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"249","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101196","Sample-Routine","Water","Surface Water",2021-07-01,"10:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485392","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-01 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"733","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101196","Sample-Routine","Water","Surface Water",2021-07-01,"10:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485403","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-01 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"250","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101198","Sample-Routine","Water","Surface Water",2021-07-01,"11:30:00","MDT",NA,NA,NA,NA,"6.1","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485428","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-01 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"734","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101198","Sample-Routine","Water","Surface Water",2021-07-01,"11:30:00","MDT",NA,NA,NA,NA,"6.1","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485439","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-01 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"251","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101199","Sample-Routine","Water","Surface Water",2021-07-01,"13:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485456","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-01 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"735","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101199","Sample-Routine","Water","Surface Water",2021-07-01,"13:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485467","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-01 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"252","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101200","Sample-Routine","Water","Surface Water",2021-07-01,"14:15:00","MDT",NA,NA,NA,NA,"1.9","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485484","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-01 20:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",1.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"736","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101200","Sample-Routine","Water","Surface Water",2021-07-01,"14:15:00","MDT",NA,NA,NA,NA,"1.9","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485495","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-01 20:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",1.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"253","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101202","Sample-Routine","Water","Surface Water",2021-07-01,"15:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485523","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-01 21:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"737","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101202","Sample-Routine","Water","Surface Water",2021-07-01,"15:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485534","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-01 21:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"254","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101203","Sample-Routine","Water","Surface Water",2021-07-01,"16:15:00","MDT",NA,NA,NA,NA,"6.1","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485551","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-01 22:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"738","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101203","Sample-Routine","Water","Surface Water",2021-07-01,"16:15:00","MDT",NA,NA,NA,NA,"6.1","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485562","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-01 22:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"255","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101216","Sample-Routine","Water","Groundwater",2021-07-06,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403821112012400",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121485700",NA,NA,"Nitrate","Dissolved","3.45","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-06 15:45:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.64144444000000","-112.0156389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4748","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19720720","1385","ft","1385","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.45,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.64144444,-112.0156389,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"739","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101216","Sample-Routine","Water","Groundwater",2021-07-06,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403821112012400",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121486016",NA,NA,"Nitrate","Dissolved","15.3","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-06 15:45:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.64144444000000","-112.0156389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4748","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19720720","1385","ft","1385","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",15.3,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.64144444,-112.0156389,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"256","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101238","Quality Control Sample-Field Replicate","Water","Surface Water",2021-07-06,"10:35:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500592","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-06 16:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"740","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101238","Quality Control Sample-Field Replicate","Water","Surface Water",2021-07-06,"10:35:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500602","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-06 16:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"257","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101239","Sample-Routine","Water","Surface Water",2021-07-06,"10:40:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500619","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-06 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"741","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101239","Sample-Routine","Water","Surface Water",2021-07-06,"10:40:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500628","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-06 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"258","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101240","Sample-Routine","Water","Surface Water",2021-07-06,"11:52:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500645","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-06 17:52:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"742","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101240","Sample-Routine","Water","Surface Water",2021-07-06,"11:52:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500655","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-06 17:52:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"259","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101241","Sample-Routine","Water","Surface Water",2021-07-06,"12:00:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500671","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-06 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"743","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101241","Sample-Routine","Water","Surface Water",2021-07-06,"12:00:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500680","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-06 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"260","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101242","Sample-Routine","Water","Surface Water",2021-07-06,"12:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500697","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-06 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"744","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101242","Sample-Routine","Water","Surface Water",2021-07-06,"12:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500707","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-06 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"261","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101243","Sample-Routine","Water","Surface Water",2021-07-06,"12:50:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500724","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-06 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"745","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101243","Sample-Routine","Water","Surface Water",2021-07-06,"12:50:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500734","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-06 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"262","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101244","Sample-Routine","Water","Surface Water",2021-07-06,"13:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500751","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-06 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"746","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101244","Sample-Routine","Water","Surface Water",2021-07-06,"13:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121500761","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-06 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"263","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101253","Sample-Routine","Water","Surface Water",2021-07-08,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121500877",NA,NA,"Nitrate","Dissolved","0.023","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-08 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.023,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2080","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101253","Sample-Routine","Water","Surface Water",2021-07-08,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121500912",NA,NA,"Nitrogen","Suspended","0.150","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-29,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-07-08 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"747","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101253","Sample-Routine","Water","Surface Water",2021-07-08,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121501004",NA,NA,"Nitrate","Dissolved","0.101","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-08 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.101,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"264","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101254","Sample-Routine","Water","Surface Water",2021-07-08,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121501063",NA,NA,"Nitrate","Dissolved","4.93","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-08 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.93,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2081","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101254","Sample-Routine","Water","Surface Water",2021-07-08,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121501098",NA,NA,"Nitrogen","Suspended","0.315","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-29,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-07-08 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"748","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101254","Sample-Routine","Water","Surface Water",2021-07-08,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121501190",NA,NA,"Nitrate","Dissolved","21.8","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-08 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",21.8,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"265","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101255","Sample-Routine","Water","Surface Water",2021-07-01,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121501247",NA,NA,"Nitrate","Dissolved","0.219","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-01 18:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.219,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2082","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101255","Sample-Routine","Water","Surface Water",2021-07-01,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121501282",NA,NA,"Nitrogen","Suspended","0.067","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-29,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-07-01 18:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.067,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"749","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101255","Sample-Routine","Water","Surface Water",2021-07-01,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121501374",NA,NA,"Nitrate","Dissolved","0.969","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-01 18:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.969,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"266","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101256","Sample-Routine","Water","Surface Water",2021-07-01,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121501429",NA,NA,"Nitrate","Dissolved","5.44","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-01 15:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.44,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2083","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101256","Sample-Routine","Water","Surface Water",2021-07-01,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121501464",NA,NA,"Nitrogen","Suspended","0.437","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-09-29,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-07-01 15:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"750","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101256","Sample-Routine","Water","Surface Water",2021-07-01,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121501556",NA,NA,"Nitrate","Dissolved","24.1","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-01 15:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",24.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"267","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101257","Sample-Routine","Water","Surface Water",2021-06-30,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121501605",NA,NA,"Nitrate","Dissolved","0.024","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-30 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.024,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"751","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101257","Sample-Routine","Water","Surface Water",2021-06-30,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121501632",NA,NA,"Nitrate","Dissolved","0.104","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-06-30 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.104,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"268","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101280","Sample-Routine","Water","Groundwater",2021-07-13,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404017112020501",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121527524",NA,NA,"Nitrate","Dissolved","2.03","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-13 15:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.67150000000000","-112.0348056000000","24000",".5","seconds","Interpolated from MAP.","NAD83","4620","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"19900121","1300","ft","1320","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.03,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.6715,-112.0348056,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"752","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101280","Sample-Routine","Water","Groundwater",2021-07-13,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404017112020501",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121527839",NA,NA,"Nitrate","Dissolved","9.00","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-13 15:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.67150000000000","-112.0348056000000","24000",".5","seconds","Interpolated from MAP.","NAD83","4620","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,NA,NA,"19900121","1300","ft","1320","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",9,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.6715,-112.0348056,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"269","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101293","Sample-Routine","Water","Surface Water",2021-07-14,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-121553188",NA,NA,"Nitrate","Dissolved","0.017","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-14 19:30:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.017,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"753","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101293","Sample-Routine","Water","Surface Water",2021-07-14,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-121553212",NA,NA,"Nitrate","Dissolved","0.077","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-14 19:30:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.077,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"270","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101295","Sample-Routine","Water","Surface Water",2021-07-16,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121553247",NA,NA,"Nitrate","Dissolved","0.062","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-16 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.062,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"754","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101295","Sample-Routine","Water","Surface Water",2021-07-16,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121553274",NA,NA,"Nitrate","Dissolved","0.276","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-16 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.276,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"271","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101301","Quality Control Sample-Field Replicate","Water","Surface Water",2021-07-14,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121564301","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-14 18:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"755","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101301","Quality Control Sample-Field Replicate","Water","Surface Water",2021-07-14,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121564321","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-14 18:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"272","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101302","Sample-Routine","Water","Surface Water",2021-07-14,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121564351",NA,NA,"Nitrate","Dissolved","0.025","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-14 15:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.025,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"756","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101302","Sample-Routine","Water","Surface Water",2021-07-14,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121564366",NA,NA,"Nitrate","Dissolved","0.113","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-14 15:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.113,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"273","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101304","Sample-Routine","Water","Surface Water",2021-03-02,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-371339110395601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121564398",NA,NA,"Nitrate","Dissolved","0.384","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-02 21:45:00,NA,"Lake, Reservoir, Impoundment",NA,"14080205",NA,NA,NA,NA,"37.22741667000000","-110.6656556000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3720","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.384,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.22741667,-110.6656556,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"757","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101304","Sample-Routine","Water","Surface Water",2021-03-02,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-371339110395601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121564454",NA,NA,"Nitrate","Dissolved","1.70","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-03-02 21:45:00,NA,"Lake, Reservoir, Impoundment",NA,"14080205",NA,NA,NA,NA,"37.22741667000000","-110.6656556000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3720","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.7,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.22741667,-110.6656556,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"274","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101340","Sample-Routine","Water","Groundwater",2021-05-26,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370806113223401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584513",NA,NA,"Nitrate","Dissolved","1.84","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-26 15:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.13497220000000","-113.3761389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","2987","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer","20130410","318","ft","333","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.84,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.1349722,-113.3761389,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"758","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101340","Sample-Routine","Water","Groundwater",2021-05-26,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370806113223401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584539",NA,NA,"Nitrate","Dissolved","8.15","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-26 15:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.13497220000000","-113.3761389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","2987","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer","20130410","318","ft","333","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",8.15,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.1349722,-113.3761389,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"275","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101341","Sample-Routine","Water","Groundwater",2021-05-25,"15:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370744113225701",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584559",NA,NA,"Nitrate","Dissolved","0.545","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 21:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12897220000000","-113.3826110000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3088","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Other aquifers",NA,"Navajo Sandstone (Jurassic)","Unconfined single aquifer","20150818","170.5","ft","170.5","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.545,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.1289722,-113.382611,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"759","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101341","Sample-Routine","Water","Groundwater",2021-05-25,"15:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370744113225701",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584585",NA,NA,"Nitrate","Dissolved","2.41","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 21:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12897220000000","-113.3826110000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3088","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Other aquifers",NA,"Navajo Sandstone (Jurassic)","Unconfined single aquifer","20150818","170.5","ft","170.5","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.41,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.1289722,-113.382611,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"276","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101342","Sample-Routine","Water","Groundwater",2021-05-25,"15:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233202",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump","NWIS-121584603",NA,NA,"Nitrate","Dissolved","4.46","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 21:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,"301.5","ft","305","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.46,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.1211111,-113.3922222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"760","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101342","Sample-Routine","Water","Groundwater",2021-05-25,"15:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233202",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump","NWIS-121584629",NA,NA,"Nitrate","Dissolved","19.7","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 21:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,"301.5","ft","305","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",19.7,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.1211111,-113.3922222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"277","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101343","Sample-Routine","Water","Groundwater",2021-05-25,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370746113223301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584649",NA,NA,"Nitrate","Dissolved","0.214","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 19:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.13017705000000","-113.3777003000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3003.6","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010515","96","ft","103.41","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.214,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.13017705,-113.3777003,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"761","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101343","Sample-Routine","Water","Groundwater",2021-05-25,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370746113223301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584675",NA,NA,"Nitrate","Dissolved","0.949","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 19:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.13017705000000","-113.3777003000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3003.6","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010515","96","ft","103.41","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.949,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.13017705,-113.3777003,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"278","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101344","Sample-Routine","Water","Groundwater",2021-05-25,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233201",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump","NWIS-121584693",NA,NA,"Nitrate","Dissolved","2.73","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 18:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,"61","ft","65","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.73,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.1211111,-113.3922222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"762","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101344","Sample-Routine","Water","Groundwater",2021-05-25,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233201",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump","NWIS-121584719",NA,NA,"Nitrate","Dissolved","12.1","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 18:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,"61","ft","65","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",12.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.1211111,-113.3922222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"279","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101345","Sample-Routine","Water","Groundwater",2021-05-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370727113233001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Inertial Pump","NWIS-121584736",NA,NA,"Nitrate","Dissolved","4.24","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 16:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12434365000000","-113.3936173000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","2993.9","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19950206","160","ft","160","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.24,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.12434365,-113.3936173,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"763","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101345","Sample-Routine","Water","Groundwater",2021-05-25,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370727113233001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Inertial Pump","NWIS-121584762",NA,NA,"Nitrate","Dissolved","18.8","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 16:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12434365000000","-113.3936173000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","2993.9","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19950206","160","ft","160","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",18.8,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.12434365,-113.3936173,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"280","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101346","Sample-Routine","Water","Groundwater",2021-05-25,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370604113224601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584782",NA,NA,"Nitrate","Dissolved","3.83","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 15:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.10187165000000","-113.3803947000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066.2","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010521","118.7","ft","134","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.83,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.10187165,-113.3803947,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"764","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101346","Sample-Routine","Water","Groundwater",2021-05-25,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370604113224601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584808",NA,NA,"Nitrate","Dissolved","17.0","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 15:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.10187165000000","-113.3803947000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066.2","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010521","118.7","ft","134","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",17,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.10187165,-113.3803947,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"281","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101347","Sample-Routine","Water","Groundwater",2021-05-24,"19:50:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370654113213501",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Inertial Pump","NWIS-121584825",NA,NA,"Nitrate","Dissolved","0.956","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 01:50:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.11506615000000","-113.3606443000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3083.7","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19990503","155.5","ft","155.6","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.956,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.11506615,-113.3606443,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"765","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101347","Sample-Routine","Water","Groundwater",2021-05-24,"19:50:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370654113213501",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Inertial Pump","NWIS-121584851",NA,NA,"Nitrate","Dissolved","4.23","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-05-25 01:50:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.11506615000000","-113.3606443000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3083.7","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19990503","155.5","ft","155.6","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.23,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.11506615,-113.3606443,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"282","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101348","Sample-Routine","Water","Groundwater",2021-05-24,"18:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370646113231901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584871","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-25 00:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.11312150000000","-113.3915060000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3016.6","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010614","108.5","ft","112","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1131215,-113.391506,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"766","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101348","Sample-Routine","Water","Groundwater",2021-05-24,"18:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370646113231901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584897","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-25 00:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.11312150000000","-113.3915060000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3016.6","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010614","108.5","ft","112","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1131215,-113.391506,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"283","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101349","Sample-Routine","Water","Groundwater",2021-05-24,"15:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370655113224901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584917","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-05-24 21:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12312150000000","-113.3828948000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010523","155","ft","158","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1231215,-113.3828948,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"767","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101349","Sample-Routine","Water","Groundwater",2021-05-24,"15:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370655113224901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-121584943","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-05-24 21:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12312150000000","-113.3828948000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010523","155","ft","158","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1231215,-113.3828948,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"284","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101386","Sample-Routine","Water","Surface Water",2021-07-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121609994",NA,NA,"Nitrate","Dissolved","6.12","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-28 20:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.12,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2084","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101386","Sample-Routine","Water","Surface Water",2021-07-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121610029",NA,NA,"Nitrogen","Suspended","0.481","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-12-01,"holding time exceededsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-07-28 20:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"768","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101386","Sample-Routine","Water","Surface Water",2021-07-28,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121610121",NA,NA,"Nitrate","Dissolved","27.1","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-28 20:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",27.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"285","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101387","Sample-Routine","Water","Surface Water",2021-07-28,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121610180",NA,NA,"Nitrate","Dissolved","0.035","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-28 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.035,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2085","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101387","Sample-Routine","Water","Surface Water",2021-07-28,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121610215",NA,NA,"Nitrogen","Suspended","0.375","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-12-01,"holding time exceededsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-07-28 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.375,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"769","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101387","Sample-Routine","Water","Surface Water",2021-07-28,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121610307",NA,NA,"Nitrate","Dissolved","0.153","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-28 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.153,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"286","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101406","Sample-Routine","Water","Groundwater",2021-08-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404532111504401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121645445",NA,NA,"Nitrate","Dissolved","4.42","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-03 17:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.75878610000000","-111.8461139000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4678","feet","0.5","feet","Light Detection And Ranging, airplane","NAVD88","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined single aquifer","19560928","510","ft","510","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.42,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.7587861,-111.8461139,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"770","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101406","Sample-Routine","Water","Groundwater",2021-08-03,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404532111504401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121645602",NA,NA,"Nitrate","Dissolved","19.5","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-03 17:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.75878610000000","-111.8461139000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4678","feet","0.5","feet","Light Detection And Ranging, airplane","NAVD88","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined single aquifer","19560928","510","ft","510","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",19.5,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.7587861,-111.8461139,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"287","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101407","Sample-Routine","Water","Groundwater",2021-07-29,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403920111523301",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121645668",NA,NA,"Nitrate","Dissolved","3.81","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-29 17:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.65550556000000","-111.8757222000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4296","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19610502","496","ft","496","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.81,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.65550556,-111.8757222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"771","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101407","Sample-Routine","Water","Groundwater",2021-07-29,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403920111523301",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121645854",NA,NA,"Nitrate","Dissolved","16.9","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-07-29 17:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.65550556000000","-111.8757222000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4296","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19610502","496","ft","496","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",16.9,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.65550556,-111.8757222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"288","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101414","Sample-Routine","Water","Surface Water",2021-07-30,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121653656","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-30 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"772","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101414","Sample-Routine","Water","Surface Water",2021-07-30,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-121653683","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-30 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"289","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101445","Sample-Routine","Water","Surface Water",2021-08-10,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121693844",NA,NA,"Nitrate","Dissolved","0.078","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-10 20:15:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.078,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"773","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101445","Sample-Routine","Water","Surface Water",2021-08-10,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121693864",NA,NA,"Nitrate","Dissolved","0.344","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-10 20:15:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.344,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"290","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101446","Sample-Routine","Water","Surface Water",2021-08-10,"11:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121693893",NA,NA,"Nitrate","Dissolved","0.092","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-10 17:15:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.092,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"774","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101446","Sample-Routine","Water","Surface Water",2021-08-10,"11:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-121693913",NA,NA,"Nitrate","Dissolved","0.408","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-10 17:15:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.408,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"291","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101450","Sample-Routine","Water","Groundwater",2021-08-11,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404059111500401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121698509",NA,NA,"Nitrate","Dissolved","1.46","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-11 16:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.68315278000000","-111.8345083000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4490","feet","5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19640626","657","ft","664","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.46,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.68315278,-111.8345083,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"775","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101450","Sample-Routine","Water","Groundwater",2021-08-11,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404059111500401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121698698",NA,NA,"Nitrate","Dissolved","6.47","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-11 16:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.68315278000000","-111.8345083000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4490","feet","5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19640626","657","ft","664","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.47,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.68315278,-111.8345083,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"292","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101451","Sample-Routine","Water","Groundwater",2021-08-05,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404124111551101",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121698777","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-08-05 17:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.69008610000000","-111.9198056000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4250","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19920216","965","ft","980","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.6900861,-111.9198056,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"776","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101451","Sample-Routine","Water","Groundwater",2021-08-05,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404124111551101",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121698966","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-08-05 17:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.69008610000000","-111.9198056000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4250","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19920216","965","ft","980","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.6900861,-111.9198056,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"293","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101470","Sample-Routine","Water","Surface Water",2021-07-29,"10:40:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121725011","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-29 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"777","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101470","Sample-Routine","Water","Surface Water",2021-07-29,"10:40:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121725021","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-29 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"294","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101471","Sample-Routine","Water","Surface Water",2021-07-29,"10:45:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121725039","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-29 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"778","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101471","Sample-Routine","Water","Surface Water",2021-07-29,"10:45:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121725048","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-29 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"295","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101472","Sample-Routine","Water","Surface Water",2021-07-29,"11:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121725066","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-29 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"779","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101472","Sample-Routine","Water","Surface Water",2021-07-29,"11:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121725076","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-29 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"296","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101473","Sample-Routine","Water","Surface Water",2021-07-29,"11:55:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121725094","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-29 17:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"780","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101473","Sample-Routine","Water","Surface Water",2021-07-29,"11:55:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121725104","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-29 17:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"297","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101502","Sample-Routine","Water","Surface Water",2021-08-13,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121744077",NA,NA,"Nitrate","Dissolved","0.172","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-13 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.172,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2086","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101502","Sample-Routine","Water","Surface Water",2021-08-13,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121744112",NA,NA,"Nitrogen","Suspended","0.624","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-11-16,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-08-13 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.624,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"781","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101502","Sample-Routine","Water","Surface Water",2021-08-13,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-121744203",NA,NA,"Nitrate","Dissolved","0.760","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-13 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.76,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"298","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101503","Sample-Routine","Water","Surface Water",2021-08-13,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121744263",NA,NA,"Nitrate","Dissolved","3.41","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-13 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.41,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2087","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101503","Sample-Routine","Water","Surface Water",2021-08-13,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121744298",NA,NA,"Nitrogen","Suspended","0.572","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-11-16,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-08-13 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.572,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"782","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101503","Sample-Routine","Water","Surface Water",2021-08-13,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-121744388",NA,NA,"Nitrate","Dissolved","15.1","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-13 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",15.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"299","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101510","Sample-Routine","Water","Groundwater",2021-08-19,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403139111551501",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121782094",NA,NA,"Nitrate","Dissolved","0.921","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-19 15:45:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.52750000000000","-111.9208333000000",NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.921,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.5275,-111.9208333,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"783","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101510","Sample-Routine","Water","Groundwater",2021-08-19,"09:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-403139111551501",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121782406",NA,NA,"Nitrate","Dissolved","4.08","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-19 15:45:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.52750000000000","-111.9208333000000",NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.08,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.5275,-111.9208333,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"300","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101511","Sample-Routine","Water","Groundwater",2021-08-12,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403623111541401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121782555",NA,NA,"Nitrate","Dissolved","1.56","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-12 16:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.60643889000000","-111.9038972000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4365","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19730411","701","ft","701","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.56,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.60643889,-111.9038972,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"784","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101511","Sample-Routine","Water","Groundwater",2021-08-12,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403623111541401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121782739",NA,NA,"Nitrate","Dissolved","6.92","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-12 16:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.60643889000000","-111.9038972000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4365","feet","2.5","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19730411","701","ft","701","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.92,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.60643889,-111.9038972,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"301","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101543","Quality Control Sample-Field Replicate","Water","Groundwater",2021-08-31,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404218111560401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121830820","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-08-31 15:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.70500000000000","-111.9344444000000",NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.705,-111.9344444,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"785","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101543","Quality Control Sample-Field Replicate","Water","Groundwater",2021-08-31,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-404218111560401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121831001","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-08-31 15:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.70500000000000","-111.9344444000000",NA,"Unknown","Unknown","Unknown.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.705,-111.9344444,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"302","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101544","Sample-Routine","Water","Groundwater",2021-08-26,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404627111532601",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121831078",NA,NA,"Nitrate","Dissolved","4.58","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-26 16:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.77411667000000","-111.8858778000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4400.86","feet","0.1","feet","Level or other surveyed method.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19430628","464","ft","464","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.58,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77411667,-111.8858778,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"786","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101544","Sample-Routine","Water","Groundwater",2021-08-26,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-404627111532601",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121831258",NA,NA,"Nitrate","Dissolved","20.3","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-26 16:00:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.77411667000000","-111.8858778000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4400.86","feet","0.1","feet","Level or other surveyed method.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Unconfined single aquifer","19430628","464","ft","464","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",20.3,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77411667,-111.8858778,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"303","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101545","Sample-Routine","Water","Groundwater",2021-08-24,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403523111514801",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121831341",NA,NA,"Nitrate","Dissolved","1.46","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-24 15:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.58976667000000","-111.8629417000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4590","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19560710","650","ft","650","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.46,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.58976667,-111.8629417,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"787","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101545","Sample-Routine","Water","Groundwater",2021-08-24,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403523111514801",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121831524",NA,NA,"Nitrate","Dissolved","6.44","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-24 15:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.58976667000000","-111.8629417000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4590","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined multiple aquifers","19560710","650","ft","650","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.44,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.58976667,-111.8629417,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"304","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101559","Sample-Routine","Water","Surface Water",2021-08-24,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-121926796",NA,NA,"Nitrate","Dissolved","0.017","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-24 20:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.017,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"788","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101559","Sample-Routine","Water","Surface Water",2021-08-24,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-121926820",NA,NA,"Nitrate","Dissolved","0.075","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-24 20:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.075,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"305","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101574","Sample-Routine","Water","Surface Water",2021-09-07,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-121947082","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-09-07 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"789","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101574","Sample-Routine","Water","Surface Water",2021-09-07,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-121947117","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-09-07 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"306","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101592","Quality Control Sample-Field Replicate","Water","Surface Water",2021-08-31,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973021","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-08-31 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"790","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101592","Quality Control Sample-Field Replicate","Water","Surface Water",2021-08-31,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973031","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-08-31 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"307","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101593","Sample-Routine","Water","Surface Water",2021-08-31,"10:43:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973049","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-08-31 16:43:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"791","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101593","Sample-Routine","Water","Surface Water",2021-08-31,"10:43:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973058","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-08-31 16:43:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"308","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101594","Sample-Routine","Water","Surface Water",2021-08-31,"11:46:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973075","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-08-31 17:46:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"792","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101594","Sample-Routine","Water","Surface Water",2021-08-31,"11:46:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973084","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-08-31 17:46:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"309","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101595","Sample-Routine","Water","Surface Water",2021-08-31,"11:56:00","MDT",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973102","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-08-31 17:56:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"793","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101595","Sample-Routine","Water","Surface Water",2021-08-31,"11:56:00","MDT",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973112","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-08-31 17:56:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"310","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101596","Sample-Routine","Water","Surface Water",2021-08-31,"12:44:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973130","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-08-31 18:44:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"794","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101596","Sample-Routine","Water","Surface Water",2021-08-31,"12:44:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973140","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-08-31 18:44:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"311","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101597","Sample-Routine","Water","Surface Water",2021-08-31,"12:54:00","MDT",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973158","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-08-31 18:54:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"795","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101597","Sample-Routine","Water","Surface Water",2021-08-31,"12:54:00","MDT",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973168","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-08-31 18:54:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"312","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101598","Sample-Routine","Water","Surface Water",2021-08-31,"13:40:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973186","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-08-31 19:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"796","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101598","Sample-Routine","Water","Surface Water",2021-08-31,"13:40:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-121973196","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-08-31 19:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"313","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101629","Quality Control Sample-Field Replicate","Water","Surface Water",2021-09-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122484816",NA,NA,"Nitrate","Dissolved","1.30","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-20 20:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",1.3,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"797","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101629","Quality Control Sample-Field Replicate","Water","Surface Water",2021-09-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122484836",NA,NA,"Nitrate","Dissolved","5.77","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-20 20:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",5.77,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"314","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101630","Sample-Routine","Water","Surface Water",2021-09-20,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122484863",NA,NA,"Nitrate","Dissolved","0.100","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-20 16:30:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.1,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"798","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101630","Sample-Routine","Water","Surface Water",2021-09-20,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122484883",NA,NA,"Nitrate","Dissolved","0.441","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-20 16:30:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.441,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"315","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101631","Sample-Routine","Water","Surface Water",2021-09-16,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-122495826",NA,NA,"Nitrate","Dissolved","0.135","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-16 17:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.135,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2088","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101631","Sample-Routine","Water","Surface Water",2021-09-16,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-122495861",NA,NA,"Nitrogen","Suspended","0.396","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-04,"holding time exceededsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-09-16 17:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"799","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101631","Sample-Routine","Water","Surface Water",2021-09-16,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-122495953",NA,NA,"Nitrate","Dissolved","0.599","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-16 17:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.599,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"316","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101632","Sample-Routine","Water","Surface Water",2021-08-25,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122496011",NA,NA,"Nitrate","Dissolved","0.918","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-25 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.918,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2089","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101632","Sample-Routine","Water","Surface Water",2021-08-25,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122496046","Not Detected",NA,"Nitrogen","Suspended",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-12-06,"holding time exceededsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-08-25 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.03,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"800","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101632","Sample-Routine","Water","Surface Water",2021-08-25,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122496138",NA,NA,"Nitrate","Dissolved","4.06","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-25 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.06,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"317","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101633","Sample-Routine","Water","Surface Water",2021-08-25,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122496199",NA,NA,"Nitrate","Dissolved","4.65","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-25 15:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.65,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2090","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101633","Sample-Routine","Water","Surface Water",2021-08-25,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122496234",NA,NA,"Nitrogen","Suspended","0.415","mg/l",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2021-12-06,"holding time exceededsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-08-25 15:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"801","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101633","Sample-Routine","Water","Surface Water",2021-08-25,"09:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122496326",NA,NA,"Nitrate","Dissolved","20.6","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-08-25 15:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",20.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"318","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101634","Sample-Routine","Water","Surface Water",2021-09-24,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-122496375",NA,NA,"Nitrate","Dissolved","0.011","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-24 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.011,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"802","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101634","Sample-Routine","Water","Surface Water",2021-09-24,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-122496402",NA,NA,"Nitrate","Dissolved","0.048","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-24 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.048,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"319","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101286","Sample-Routine","Water","Surface Water",2021-07-07,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-122560804","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-07 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"803","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101286","Sample-Routine","Water","Surface Water",2021-07-07,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-122560849","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-07 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"320","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101285","Sample-Routine","Water","Surface Water",2021-07-07,"14:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-122560881","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-07 20:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"804","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101285","Sample-Routine","Water","Surface Water",2021-07-07,"14:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-122560916","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-07 20:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"321","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200021","Sample-Routine","Water","Surface Water",2021-10-06,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-122570937",NA,NA,"Nitrate","Dissolved","0.366","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-06 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.366,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2091","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200021","Sample-Routine","Water","Surface Water",2021-10-06,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-122570972",NA,NA,"Nitrogen","Suspended","0.358","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-05,"holding time exceededsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-10-06 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"805","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200021","Sample-Routine","Water","Surface Water",2021-10-06,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-122571064",NA,NA,"Nitrate","Dissolved","1.62","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-06 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.62,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"322","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200022","Sample-Routine","Water","Surface Water",2021-10-06,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122571125",NA,NA,"Nitrate","Dissolved","4.87","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-06 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.87,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2092","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200022","Sample-Routine","Water","Surface Water",2021-10-06,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122571160",NA,NA,"Nitrogen","Suspended","0.296","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-05,"holding time exceededsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-10-06 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"806","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200022","Sample-Routine","Water","Surface Water",2021-10-06,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122571252",NA,NA,"Nitrate","Dissolved","21.6","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-06 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",21.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"323","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200028","Sample-Routine","Water","Surface Water",2021-10-07,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-122578350","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-10-07 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"807","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200028","Sample-Routine","Water","Surface Water",2021-10-07,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-122578377","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-10-07 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"324","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200041","Sample-Routine","Water","Surface Water",2021-10-13,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"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","NWIS-122594061",NA,NA,"Nitrate","Dissolved","0.560","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-13 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.56,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2093","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200041","Sample-Routine","Water","Surface Water",2021-10-13,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"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","NWIS-122594096",NA,NA,"Nitrogen","Suspended","0.044","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-04,"holding time exceededbelow the reporting level but at or above the detection levelsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-10-13 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.044,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"808","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200041","Sample-Routine","Water","Surface Water",2021-10-13,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"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","NWIS-122594188",NA,NA,"Nitrate","Dissolved","2.48","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-13 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.48,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"325","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200068","Sample-Routine","Water","Surface Water",2021-10-21,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-122634096",NA,NA,"Nitrate","Dissolved","0.728","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-21 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.728,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2094","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200068","Sample-Routine","Water","Surface Water",2021-10-21,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-122634131",NA,NA,"Nitrogen","Suspended","0.050","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-11,"holding time exceededbelow the reporting level but at or above the detection levelsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-10-21 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"809","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200068","Sample-Routine","Water","Surface Water",2021-10-21,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-122634222",NA,NA,"Nitrate","Dissolved","3.22","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-21 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.22,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"326","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200069","Sample-Routine","Water","Surface Water",2021-10-21,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122634281",NA,NA,"Nitrate","Dissolved","6.47","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-21 17:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.47,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2095","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200069","Sample-Routine","Water","Surface Water",2021-10-21,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122634316",NA,NA,"Nitrogen","Suspended","0.188","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-11,"holding time exceededsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-10-21 17:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.188,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"810","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200069","Sample-Routine","Water","Surface Water",2021-10-21,"11:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122634407",NA,NA,"Nitrate","Dissolved","28.6","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-21 17:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",28.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"327","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101712","Sample-Routine","Water","Surface Water",2021-07-29,"12:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122659634","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-29 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"811","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101712","Sample-Routine","Water","Surface Water",2021-07-29,"12:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122659644","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-29 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"328","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101713","Sample-Routine","Water","Surface Water",2021-07-29,"12:35:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122659662","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-29 18:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"812","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101713","Sample-Routine","Water","Surface Water",2021-07-29,"12:35:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122659672","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-29 18:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"329","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101714","Sample-Routine","Water","Surface Water",2021-07-29,"13:15:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122659690","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-07-29 19:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"813","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101714","Sample-Routine","Water","Surface Water",2021-07-29,"13:15:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122659700","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-07-29 19:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"330","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200104","Sample-Routine","Water","Surface Water",2021-10-28,"13:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684878","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-10-28 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"814","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200104","Sample-Routine","Water","Surface Water",2021-10-28,"13:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684889","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-10-28 19:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"331","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200105","Quality Control Sample-Field Replicate","Water","Surface Water",2021-10-28,"15:15:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684906","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-10-28 21:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"815","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200105","Quality Control Sample-Field Replicate","Water","Surface Water",2021-10-28,"15:15:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684917","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-10-28 21:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"332","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200106","Sample-Routine","Water","Surface Water",2021-10-29,"11:15:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684931","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-10-29 17:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"816","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200106","Sample-Routine","Water","Surface Water",2021-10-29,"11:15:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684942","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-10-29 17:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"333","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200107","Sample-Routine","Water","Surface Water",2021-10-29,"12:00:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684957",NA,NA,"Nitrate","Dissolved","0.091","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-29 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.091,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"817","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200107","Sample-Routine","Water","Surface Water",2021-10-29,"12:00:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684968",NA,NA,"Nitrate","Dissolved","0.401","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-10-29 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.401,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"334","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200108","Sample-Routine","Water","Surface Water",2021-10-29,"14:00:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684985","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-10-29 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"818","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200108","Sample-Routine","Water","Surface Water",2021-10-29,"14:00:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122684996","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-10-29 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"335","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200109","Sample-Routine","Water","Surface Water",2021-10-29,"14:30:00","MDT",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122685013","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-10-29 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"819","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200109","Sample-Routine","Water","Surface Water",2021-10-29,"14:30:00","MDT",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122685024","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-10-29 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"336","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200111","Sample-Routine","Water","Surface Water",2021-11-01,"10:40:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122692971","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-01 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"820","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200111","Sample-Routine","Water","Surface Water",2021-11-01,"10:40:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122692981","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-01 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"337","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200112","Sample-Routine","Water","Surface Water",2021-11-01,"10:48:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122692999","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-01 16:48:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"821","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200112","Sample-Routine","Water","Surface Water",2021-11-01,"10:48:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693009","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-01 16:48:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"338","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200113","Sample-Routine","Water","Surface Water",2021-11-01,"11:59:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693027","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-01 17:59:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"822","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200113","Sample-Routine","Water","Surface Water",2021-11-01,"11:59:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693037","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-01 17:59:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"339","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200114","Sample-Routine","Water","Surface Water",2021-11-01,"12:10:00","MDT",NA,NA,NA,NA,"5.9","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693055","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-01 18:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",5.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"823","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200114","Sample-Routine","Water","Surface Water",2021-11-01,"12:10:00","MDT",NA,NA,NA,NA,"5.9","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693065","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-01 18:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",5.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"340","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200115","Sample-Routine","Water","Surface Water",2021-11-01,"12:52:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693083","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-01 18:52:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"824","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200115","Sample-Routine","Water","Surface Water",2021-11-01,"12:52:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693093","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-01 18:52:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"341","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200116","Sample-Routine","Water","Surface Water",2021-11-01,"12:58:00","MDT",NA,NA,NA,NA,"1.9","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693111","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-01 18:58:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",1.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"825","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200116","Sample-Routine","Water","Surface Water",2021-11-01,"12:58:00","MDT",NA,NA,NA,NA,"1.9","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693121","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-01 18:58:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",1.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"342","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200117","Sample-Routine","Water","Surface Water",2021-11-01,"13:33:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693139","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-01 19:33:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"826","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200117","Sample-Routine","Water","Surface Water",2021-11-01,"13:33:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693149","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-01 19:33:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"343","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200118","Sample-Routine","Water","Surface Water",2021-11-01,"12:00:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693166","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-01 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"827","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200118","Sample-Routine","Water","Surface Water",2021-11-01,"12:00:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693177","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-01 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"344","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200119","Sample-Routine","Water","Surface Water",2021-11-01,"12:45:00","MDT",NA,NA,NA,NA,"2.6","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693194","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-01 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",2.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"828","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200119","Sample-Routine","Water","Surface Water",2021-11-01,"12:45:00","MDT",NA,NA,NA,NA,"2.6","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122693205","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-01 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",2.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"345","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200122","Sample-Routine","Water","Surface Water",2021-11-04,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Not determined","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle","NWIS-122712369",NA,NA,"Nitrate","Dissolved","0.743","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-11-04 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.743,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2096","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200122","Sample-Routine","Water","Surface Water",2021-11-04,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Not determined","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle","NWIS-122712402",NA,NA,"Nitrogen","Suspended","0.039","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Hold time parameters were exceeded during the collection to analysis phase of sample processing.","49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-18,"holding time exceededbelow the reporting level but at or above the detection levelsee result laboratory comment",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2021-11-04 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.039,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"829","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200122","Sample-Routine","Water","Surface Water",2021-11-04,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Not determined","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle","NWIS-122712491",NA,NA,"Nitrate","Dissolved","3.29","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-11-04 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.29,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"346","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200156","Sample-Routine","Water","Surface Water",2021-11-04,"10:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122774430","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-04 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"830","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200156","Sample-Routine","Water","Surface Water",2021-11-04,"10:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122774441","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-04 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"347","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200157","Sample-Routine","Water","Surface Water",2021-11-03,"11:00:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122774460","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-03 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"831","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200157","Sample-Routine","Water","Surface Water",2021-11-03,"11:00:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122774471","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-03 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"348","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200158","Sample-Routine","Water","Surface Water",2021-11-03,"11:45:00","MDT",NA,NA,NA,NA,"5.4","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122774489","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-03 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",5.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"832","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200158","Sample-Routine","Water","Surface Water",2021-11-03,"11:45:00","MDT",NA,NA,NA,NA,"5.4","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122774499","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-03 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",5.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"349","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200162","Sample-Routine","Water","Surface Water",2021-11-04,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-122774542","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-04 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"833","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200162","Sample-Routine","Water","Surface Water",2021-11-04,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-122774585","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-04 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"350","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200163","Sample-Routine","Water","Surface Water",2021-11-04,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122774616","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-04 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"834","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200163","Sample-Routine","Water","Surface Water",2021-11-04,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122774662","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-04 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"351","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200164","Quality Control Sample-Field Replicate","Water","Surface Water",2021-10-27,"11:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-122774694","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-10-27 17:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"835","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200164","Quality Control Sample-Field Replicate","Water","Surface Water",2021-10-27,"11:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-122774714","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-10-27 17:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"352","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101752","Sample-Routine","Water","Surface Water",2021-09-17,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122779048",NA,NA,"Nitrate","Dissolved","0.021","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-17 19:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.021,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"836","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101752","Sample-Routine","Water","Surface Water",2021-09-17,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122779072",NA,NA,"Nitrate","Dissolved","0.095","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2021-09-17 19:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.095,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"353","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200178","Sample-Routine","Water","Surface Water",2021-11-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,NA,"Stable, high stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-122788728","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",7,NA,2021-11-10 17:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"837","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200178","Sample-Routine","Water","Surface Water",2021-11-10,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,NA,"Stable, high stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-122788749","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-11-10 17:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"354","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101576","Quality Control Sample-Field Replicate","Water","Surface Water",2021-09-07,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122810662","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2021-09-07 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"838","USGS-UT","USGS Utah Water Science Center","nwisut.01.02101576","Quality Control Sample-Field Replicate","Water","Surface Water",2021-09-07,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122810707","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-09-07 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"355","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200159","Sample-Routine","Water","Surface Water",2021-11-05,"14:45:00","MDT",NA,NA,NA,NA,"0.16","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411403112200801",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122817809","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-05 20:45:00,NA,"Stream",NA,"16020310",NA,NA,NA,NA,"41.27138889000000","-112.3561110000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4194","feet","1","feet","Interpolated from topographic map.","NGVD29","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.27138889,-112.356111,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",0.16,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"839","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200159","Sample-Routine","Water","Surface Water",2021-11-05,"14:45:00","MDT",NA,NA,NA,NA,"0.16","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411403112200801",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122817819","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-05 20:45:00,NA,"Stream",NA,"16020310",NA,NA,NA,NA,"41.27138889000000","-112.3561110000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4194","feet","1","feet","Interpolated from topographic map.","NGVD29","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.27138889,-112.356111,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",0.16,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"356","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200199","Sample-Routine","Water","Surface Water",2021-11-23,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122817858",NA,NA,"Nitrate","Dissolved","1.79","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-11-23 19:40:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.79,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"840","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200199","Sample-Routine","Water","Surface Water",2021-11-23,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122817881",NA,NA,"Nitrate","Dissolved","7.93","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-11-23 19:40:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",7.93,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"357","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200200","Sample-Routine","Water","Surface Water",2021-11-23,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122817916",NA,NA,"Nitrate","Dissolved","2.52","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-11-23 17:15:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.52,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"841","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200200","Sample-Routine","Water","Surface Water",2021-11-23,"10:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122817939",NA,NA,"Nitrate","Dissolved","11.1","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-11-23 17:15:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",11.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"358","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200210","Sample-Routine","Water","Surface Water",2021-11-03,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122836080","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2021-11-03 20:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"842","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200210","Sample-Routine","Water","Surface Water",2021-11-03,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122836104","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2021-11-03 20:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"359","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200222","Sample-Routine","Water","Surface Water",2021-11-30,"11:36:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842711","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",7,NA,2021-11-30 18:36:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"843","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200222","Sample-Routine","Water","Surface Water",2021-11-30,"11:36:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842721","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-11-30 18:36:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"360","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200223","Sample-Routine","Water","Surface Water",2021-11-30,"11:41:00","MST",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842739","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",7,NA,2021-11-30 18:41:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"844","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200223","Sample-Routine","Water","Surface Water",2021-11-30,"11:41:00","MST",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842749","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-11-30 18:41:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"361","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200224","Sample-Routine","Water","Surface Water",2021-11-30,"12:22:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842767","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.078","mg/l as N",NA,NA,"NWIS",7,NA,2021-11-30 19:22:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.078,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.078,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"845","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200224","Sample-Routine","Water","Surface Water",2021-11-30,"12:22:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842777","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.344","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-11-30 19:22:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.344,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.344,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"362","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200225","Sample-Routine","Water","Surface Water",2021-11-30,"12:25:00","MST",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842795","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.078","mg/l as N",NA,NA,"NWIS",7,NA,2021-11-30 19:25:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.078,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.078,"MG/L AS N","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"846","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200225","Sample-Routine","Water","Surface Water",2021-11-30,"12:25:00","MST",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842805","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.343","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-11-30 19:25:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.343,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.343,"MG/L ASNO3","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"363","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200226","Sample-Routine","Water","Surface Water",2021-11-30,"13:03:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842823","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.077","mg/l as N",NA,NA,"NWIS",7,NA,2021-11-30 20:03:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.077,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.077,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"847","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200226","Sample-Routine","Water","Surface Water",2021-11-30,"13:03:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842833","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.342","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-11-30 20:03:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.342,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.342,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"364","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200220","Quality Control Sample-Field Replicate","Water","Surface Water",2021-11-30,"10:10:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842926","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.078","mg/l as N",NA,NA,"NWIS",7,NA,2021-11-30 17:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.078,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.078,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"848","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200220","Quality Control Sample-Field Replicate","Water","Surface Water",2021-11-30,"10:10:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842936","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.343","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-11-30 17:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.343,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.343,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"365","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200221","Sample-Routine","Water","Surface Water",2021-11-30,"10:20:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842955","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",7,NA,2021-11-30 17:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"849","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200221","Sample-Routine","Water","Surface Water",2021-11-30,"10:20:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122842965","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-11-30 17:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"366","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200244","Sample-Routine","Water","Surface Water",2021-11-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-122852138","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",7,NA,2021-11-19 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"850","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200244","Sample-Routine","Water","Surface Water",2021-11-19,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-122852161","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-11-19 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"367","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200243","Sample-Routine","Water","Surface Water",2021-12-02,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122852191",NA,NA,"Nitrate","Dissolved","6.77","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-02 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.77,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2097","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200243","Sample-Routine","Water","Surface Water",2021-12-02,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122852226",NA,NA,"Nitrogen","Suspended","0.186","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-24,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-12-02 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"851","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200243","Sample-Routine","Water","Surface Water",2021-12-02,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122852318",NA,NA,"Nitrate","Dissolved","30.0","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-02 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",30,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"368","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200242","Sample-Routine","Water","Surface Water",2021-12-02,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-122852378",NA,NA,"Nitrate","Dissolved","0.922","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-02 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.922,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2098","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200242","Sample-Routine","Water","Surface Water",2021-12-02,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-122852413",NA,NA,"Nitrogen","Suspended","0.039","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-02-24,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-12-02 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.039,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"852","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200242","Sample-Routine","Water","Surface Water",2021-12-02,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-122852505",NA,NA,"Nitrate","Dissolved","4.08","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-02 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.08,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"369","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200254","Sample-Routine","Water","Surface Water",2021-12-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-122857157","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",7,NA,2021-12-03 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"853","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200254","Sample-Routine","Water","Surface Water",2021-12-03,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-122857176","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-12-03 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"370","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200265","Sample-Routine","Water","Surface Water",2021-12-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122871693",NA,NA,"Nitrate","Dissolved","5.96","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-09 19:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.96,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2099","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200265","Sample-Routine","Water","Surface Water",2021-12-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122871728",NA,NA,"Nitrogen","Suspended","0.348","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-03-09,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-12-09 19:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.348,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"854","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200265","Sample-Routine","Water","Surface Water",2021-12-09,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122871820",NA,NA,"Nitrate","Dissolved","26.4","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-09 19:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",26.4,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"371","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200266","Sample-Routine","Water","Surface Water",2021-12-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Rising stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122871885",NA,NA,"Nitrate","Dissolved","0.438","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-09 17:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.438,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2100","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200266","Sample-Routine","Water","Surface Water",2021-12-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Rising stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122871920",NA,NA,"Nitrogen","Suspended","0.784","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-03-09,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2021-12-09 17:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.784,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"855","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200266","Sample-Routine","Water","Surface Water",2021-12-09,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Rising stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122872012",NA,NA,"Nitrate","Dissolved","1.94","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-09 17:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.94,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"372","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200274","Sample-Routine","Water","Groundwater",2021-12-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403029112043401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122892329",NA,NA,"Nitrate","Dissolved","1.65","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-08 19:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.50818056000000","-112.0728110000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5315","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined single aquifer","19920130","182","ft","186","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.65,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.50818056,-112.072811,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"856","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200274","Sample-Routine","Water","Groundwater",2021-12-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-403029112043401",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-122892601",NA,NA,"Nitrate","Dissolved","7.29","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-08 19:30:00,NA,"Well",NA,"16020204",NA,NA,NA,NA,"40.50818056000000","-112.0728110000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5315","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",35,"Basin and Range basin-fill aquifers",NA,"Valley Fill","Confined single aquifer","19920130","182","ft","186","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",7.29,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.50818056,-112.072811,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"373","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200285","Sample-Routine","Water","Surface Water",2021-12-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-122903344","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",7,NA,2021-12-16 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"857","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200285","Sample-Routine","Water","Surface Water",2021-12-16,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-122903371","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",7,NA,2021-12-16 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"374","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200308","Sample-Routine","Water","Surface Water",2021-12-21,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122935509",NA,NA,"Nitrate","Dissolved","0.026","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-21 17:45:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.026,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"858","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200308","Sample-Routine","Water","Surface Water",2021-12-21,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-122935533",NA,NA,"Nitrate","Dissolved","0.114","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-21 17:45:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.114,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"375","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200325","Sample-Routine","Water","Surface Water",2021-12-29,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122957492",NA,NA,"Nitrate","Dissolved","0.930","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-29 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.93,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"859","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200325","Sample-Routine","Water","Surface Water",2021-12-29,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-122957614",NA,NA,"Nitrate","Dissolved","4.12","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2021-12-29 20:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.12,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"376","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200369","Sample-Routine","Water","Surface Water",2022-01-06,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122995185",NA,NA,"Nitrate","Dissolved","1.95","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-06 20:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.95,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"860","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200369","Sample-Routine","Water","Surface Water",2022-01-06,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122995206",NA,NA,"Nitrate","Dissolved","8.63","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-06 20:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",8.63,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"377","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200370","Sample-Routine","Water","Surface Water",2022-01-06,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122995236",NA,NA,"Nitrate","Dissolved","3.73","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-06 18:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.73,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"861","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200370","Sample-Routine","Water","Surface Water",2022-01-06,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-122995256",NA,NA,"Nitrate","Dissolved","16.5","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-06 18:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",16.5,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"378","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200371","Sample-Routine","Water","Surface Water",2022-01-10,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"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","NWIS-122995285","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-10 21:25:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"862","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200371","Sample-Routine","Water","Surface Water",2022-01-10,"14:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"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","NWIS-122995322","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-10 21:25:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"379","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200372","Sample-Routine","Water","Surface Water",2022-01-10,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-122995352","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.078","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-10 21:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.078,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.078,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"863","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200372","Sample-Routine","Water","Surface Water",2022-01-10,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-122995397","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.345","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-10 21:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.345,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.345,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"380","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200402","Sample-Routine","Water","Surface Water",2022-01-11,"13:35:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022370","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.038","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-11 20:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.038,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.038,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"864","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200402","Sample-Routine","Water","Surface Water",2022-01-11,"13:35:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022380","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.169","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-11 20:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.169,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.169,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"381","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200398","Sample-Routine","Water","Surface Water",2022-01-11,"10:40:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022398","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-11 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"865","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200398","Sample-Routine","Water","Surface Water",2022-01-11,"10:40:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022408","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-11 17:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"382","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200399","Sample-Routine","Water","Surface Water",2022-01-11,"10:45:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022426","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-11 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"866","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200399","Sample-Routine","Water","Surface Water",2022-01-11,"10:45:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022436","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-11 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"383","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200400","Sample-Routine","Water","Surface Water",2022-01-11,"12:11:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022454","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.038","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-11 19:11:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.038,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.038,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"867","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200400","Sample-Routine","Water","Surface Water",2022-01-11,"12:11:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022464","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.17","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-11 19:11:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.17,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.17,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"384","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200401","Sample-Routine","Water","Surface Water",2022-01-11,"12:12:00","MST",NA,NA,NA,NA,"6","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022482","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-11 19:12:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"868","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200401","Sample-Routine","Water","Surface Water",2022-01-11,"12:12:00","MST",NA,NA,NA,NA,"6","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123022492","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-11 19:12:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"385","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200405","Sample-Routine","Water","Surface Water",2022-01-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,"Not on paperwork added",NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123032155",NA,NA,"Nitrate","Dissolved","1.23","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-14 20:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.23,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2101","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200405","Sample-Routine","Water","Surface Water",2022-01-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,"Not on paperwork added",NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123032190","Not Detected",NA,"Nitrogen","Suspended",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-03-28,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2022-01-14 20:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.03,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"869","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200405","Sample-Routine","Water","Surface Water",2022-01-14,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,"Not on paperwork added",NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123032282",NA,NA,"Nitrate","Dissolved","5.44","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-14 20:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.44,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"386","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200406","Sample-Routine","Water","Surface Water",2022-01-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123032341",NA,NA,"Nitrate","Dissolved","6.30","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-14 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.3,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2102","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200406","Sample-Routine","Water","Surface Water",2022-01-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123032376",NA,NA,"Nitrogen","Suspended","0.236","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-03-28,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2022-01-14 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.236,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"870","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200406","Sample-Routine","Water","Surface Water",2022-01-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123032467",NA,NA,"Nitrate","Dissolved","27.9","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-14 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",27.9,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"387","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200427","Quality Control Sample-Field Replicate","Water","Surface Water",2022-01-25,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-123072228",NA,NA,"Nitrate","Dissolved","1.61","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-25 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",1.61,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"871","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200427","Quality Control Sample-Field Replicate","Water","Surface Water",2022-01-25,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-123072248",NA,NA,"Nitrate","Dissolved","7.12","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-25 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",7.12,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"388","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200430","Sample-Routine","Water","Surface Water",2022-01-26,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123076213",NA,NA,"Nitrate","Dissolved","0.034","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-26 18:45:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.034,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"872","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200430","Sample-Routine","Water","Surface Water",2022-01-26,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123076237",NA,NA,"Nitrate","Dissolved","0.149","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-26 18:45:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.149,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"389","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200459","Quality Control Sample-Field Replicate","Water","Surface Water",2022-01-31,"10:45:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096442","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.077","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-31 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.077,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.077,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"873","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200459","Quality Control Sample-Field Replicate","Water","Surface Water",2022-01-31,"10:45:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096452","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.339","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-31 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.339,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.339,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"390","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200460","Sample-Routine","Water","Surface Water",2022-01-31,"10:55:00","MST",NA,NA,NA,NA,"6.7","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096470","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.077","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-31 17:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.077,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.077,"MG/L AS N","Numeric",6.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"874","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200460","Sample-Routine","Water","Surface Water",2022-01-31,"10:55:00","MST",NA,NA,NA,NA,"6.7","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096480","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.343","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-31 17:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.343,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.343,"MG/L ASNO3","Numeric",6.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"391","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200461","Sample-Routine","Water","Surface Water",2022-01-31,"11:50:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096498","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.077","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-31 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.077,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.077,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"875","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200461","Sample-Routine","Water","Surface Water",2022-01-31,"11:50:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096508","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.343","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-31 18:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.343,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.343,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"392","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200462","Sample-Routine","Water","Surface Water",2022-01-31,"12:02:00","MST",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096526","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-31 19:02:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"876","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200462","Sample-Routine","Water","Surface Water",2022-01-31,"12:02:00","MST",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096536","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-31 19:02:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"393","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200463","Sample-Routine","Water","Surface Water",2022-01-31,"12:40:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096554","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.077","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-31 19:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.077,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.077,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"877","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200463","Sample-Routine","Water","Surface Water",2022-01-31,"12:40:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096564","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.34","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-31 19:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.34,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.34,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"394","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200464","Sample-Routine","Water","Surface Water",2022-01-31,"12:55:00","MST",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096582","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.077","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-31 19:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.077,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.077,"MG/L AS N","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"878","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200464","Sample-Routine","Water","Surface Water",2022-01-31,"12:55:00","MST",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096592","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.339","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-31 19:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.339,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.339,"MG/L ASNO3","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"395","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200465","Sample-Routine","Water","Surface Water",2022-01-31,"13:29:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096632",NA,NA,"Nitrate","Dissolved","0.090","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-31 20:29:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.09,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"879","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200465","Sample-Routine","Water","Surface Water",2022-01-31,"13:29:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123096642",NA,NA,"Nitrate","Dissolved","0.397","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-01-31 20:29:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.397,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"396","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200490","Sample-Routine","Water","Groundwater",2022-02-09,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403102111295801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128639",NA,NA,"Nitrate","Dissolved","0.244","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-09 16:55:00,NA,"Well",NA,"16020203",NA,NA,NA,NA,"40.51731944000000","-111.4987806000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5939","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Park City Formation or Group","Mixed (confined and unconfined) multiple aquifers","19950424","404","ft","404","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.244,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.51731944,-111.4987806,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"880","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200490","Sample-Routine","Water","Groundwater",2022-02-09,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403102111295801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128686",NA,NA,"Nitrate","Dissolved","1.08","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-09 16:55:00,NA,"Well",NA,"16020203",NA,NA,NA,NA,"40.51731944000000","-111.4987806000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5939","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Park City Formation or Group","Mixed (confined and unconfined) multiple aquifers","19950424","404","ft","404","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.08,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.51731944,-111.4987806,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"397","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200489","Sample-Routine","Water","Surface Water",2022-02-02,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403149111290300",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128697",NA,NA,"Nitrate","Dissolved","0.159","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-02 20:45:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53023230000000","-111.4849116000000","24000","1","seconds","Interpolated from MAP.","NAD83","5710","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.159,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.5302323,-111.4849116,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"881","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200489","Sample-Routine","Water","Surface Water",2022-02-02,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403149111290300",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128744",NA,NA,"Nitrate","Dissolved","0.705","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-02 20:45:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53023230000000","-111.4849116000000","24000","1","seconds","Interpolated from MAP.","NAD83","5710","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.705,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.5302323,-111.4849116,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"398","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200488","Sample-Routine","Water","Surface Water",2022-02-02,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403213111290600",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128755",NA,NA,"Nitrate","Dissolved","0.203","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-02 19:15:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53689880000000","-111.4857453000000","24000","1","seconds","Interpolated from MAP.","NAD83","5750","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.203,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.5368988,-111.4857453,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"882","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200488","Sample-Routine","Water","Surface Water",2022-02-02,"12:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403213111290600",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128802",NA,NA,"Nitrate","Dissolved","0.898","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-02 19:15:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53689880000000","-111.4857453000000","24000","1","seconds","Interpolated from MAP.","NAD83","5750","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.898,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.5368988,-111.4857453,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"399","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200487","Sample-Routine","Water","Surface Water",2022-02-02,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403234111295700",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128824",NA,NA,"Nitrate","Dissolved","0.113","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-02 18:00:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.54273200000000","-111.4999131000000","24000","1","seconds","Interpolated from MAP.","NAD83","5915","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.113,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.542732,-111.4999131,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"883","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200487","Sample-Routine","Water","Surface Water",2022-02-02,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403234111295700",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128871",NA,NA,"Nitrate","Dissolved","0.502","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-02 18:00:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.54273200000000","-111.4999131000000","24000","1","seconds","Interpolated from MAP.","NAD83","5915","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.502,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.542732,-111.4999131,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"400","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200485","Sample-Routine","Water","Groundwater",2022-02-02,"12:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403101111295802",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128882",NA,NA,"Nitrate","Dissolved","0.555","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-02 19:52:00,NA,"Well",NA,"16020203",NA,NA,NA,NA,"40.51718889000000","-111.4989000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5948","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)","Confined single aquifer","20131118","1010","ft","1010","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.555,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.51718889,-111.4989,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"884","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200485","Sample-Routine","Water","Groundwater",2022-02-02,"12:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403101111295802",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123128929",NA,NA,"Nitrate","Dissolved","2.46","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-02 19:52:00,NA,"Well",NA,"16020203",NA,NA,NA,NA,"40.51718889000000","-111.4989000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5948","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)","Confined single aquifer","20131118","1010","ft","1010","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.46,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.51718889,-111.4989,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"401","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200499","Sample-Routine","Water","Surface Water",2022-02-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-123140637",NA,NA,"Nitrate","Dissolved","1.08","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-10 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.08,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"885","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200499","Sample-Routine","Water","Surface Water",2022-02-10,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-123140757",NA,NA,"Nitrate","Dissolved","4.80","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-10 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.8,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"402","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200500","Sample-Routine","Water","Surface Water",2022-02-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123140800",NA,NA,"Nitrate","Dissolved","0.012","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-08 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.012,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"886","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200500","Sample-Routine","Water","Surface Water",2022-02-08,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123140823",NA,NA,"Nitrate","Dissolved","0.053","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-08 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.053,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"403","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200527","Sample-Routine","Water","Surface Water",2022-02-17,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123156524",NA,NA,"Nitrate","Dissolved","1.59","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-17 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.59,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2103","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200527","Sample-Routine","Water","Surface Water",2022-02-17,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123156559",NA,NA,"Nitrogen","Suspended","0.051","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-04-12,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2022-02-17 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.051,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"887","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200527","Sample-Routine","Water","Surface Water",2022-02-17,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123156651",NA,NA,"Nitrate","Dissolved","7.06","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-17 17:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",7.06,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"404","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200526","Sample-Routine","Water","Surface Water",2022-02-17,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123156711",NA,NA,"Nitrate","Dissolved","5.08","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-17 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.08,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2104","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200526","Sample-Routine","Water","Surface Water",2022-02-17,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123156746",NA,NA,"Nitrogen","Suspended","0.215","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-04-12,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2022-02-17 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"888","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200526","Sample-Routine","Water","Surface Water",2022-02-17,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123156838",NA,NA,"Nitrate","Dissolved","22.5","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-17 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",22.5,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"405","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200520","Sample-Routine","Water","Groundwater",2022-02-16,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403238111292801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123156923",NA,NA,"Nitrate","Dissolved","0.332","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-16 18:35:00,NA,"Spring",NA,"16020203",NA,NA,NA,NA,"40.54385000000000","-111.4912500000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5899","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.332,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.54385,-111.49125,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"889","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200520","Sample-Routine","Water","Groundwater",2022-02-16,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403238111292801",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123156970",NA,NA,"Nitrate","Dissolved","1.47","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-16 18:35:00,NA,"Spring",NA,"16020203",NA,NA,NA,NA,"40.54385000000000","-111.4912500000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5899","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.47,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.54385,-111.49125,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"406","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200521","Sample-Routine","Water","Groundwater",2022-02-16,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403237111293001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123156981",NA,NA,"Nitrate","Dissolved","0.375","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-16 19:20:00,NA,"Spring",NA,"16020203",NA,NA,NA,NA,"40.54361944000000","-111.4916000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5903","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.375,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.54361944,-111.4916,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"890","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200521","Sample-Routine","Water","Groundwater",2022-02-16,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403237111293001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123157028",NA,NA,"Nitrate","Dissolved","1.66","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-16 19:20:00,NA,"Spring",NA,"16020203",NA,NA,NA,NA,"40.54361944000000","-111.4916000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5903","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.66,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.54361944,-111.4916,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"407","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200546","Sample-Routine","Water","Surface Water",2022-02-03,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123168969",NA,NA,"Nitrate","Dissolved","1.37","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-03 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.37,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"891","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200546","Sample-Routine","Water","Surface Water",2022-02-03,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123168989",NA,NA,"Nitrate","Dissolved","6.07","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-03 17:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.07,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"408","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200555","Sample-Routine","Water","Surface Water",2022-02-23,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403149111290300",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174448",NA,NA,"Nitrate","Dissolved","0.153","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 21:15:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53023230000000","-111.4849116000000","24000","1","seconds","Interpolated from MAP.","NAD83","5710","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.153,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.5302323,-111.4849116,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"892","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200555","Sample-Routine","Water","Surface Water",2022-02-23,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403149111290300",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174495",NA,NA,"Nitrate","Dissolved","0.677","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 21:15:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53023230000000","-111.4849116000000","24000","1","seconds","Interpolated from MAP.","NAD83","5710","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.677,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.5302323,-111.4849116,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"409","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200554","Sample-Routine","Water","Surface Water",2022-02-23,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403213111290600",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174506",NA,NA,"Nitrate","Dissolved","0.212","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 20:15:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53689880000000","-111.4857453000000","24000","1","seconds","Interpolated from MAP.","NAD83","5750","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.212,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.5368988,-111.4857453,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"893","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200554","Sample-Routine","Water","Surface Water",2022-02-23,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403213111290600",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174553",NA,NA,"Nitrate","Dissolved","0.939","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 20:15:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53689880000000","-111.4857453000000","24000","1","seconds","Interpolated from MAP.","NAD83","5750","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.939,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.5368988,-111.4857453,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"410","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200553","Sample-Routine","Water","Surface Water",2022-02-23,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403234111295700",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174563",NA,NA,"Nitrate","Dissolved","0.115","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 18:00:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.54273200000000","-111.4999131000000","24000","1","seconds","Interpolated from MAP.","NAD83","5915","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.115,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.542732,-111.4999131,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"894","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200553","Sample-Routine","Water","Surface Water",2022-02-23,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403234111295700",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174610",NA,NA,"Nitrate","Dissolved","0.508","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 18:00:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.54273200000000","-111.4999131000000","24000","1","seconds","Interpolated from MAP.","NAD83","5915","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.508,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.542732,-111.4999131,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"411","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200552","Sample-Routine","Water","Groundwater",2022-02-23,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403101111295802",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174621",NA,NA,"Nitrate","Dissolved","0.569","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 20:30:00,NA,"Well",NA,"16020203",NA,NA,NA,NA,"40.51718889000000","-111.4989000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5948","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)","Confined single aquifer","20131118","1010","ft","1010","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.569,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.51718889,-111.4989,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"895","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200552","Sample-Routine","Water","Groundwater",2022-02-23,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403101111295802",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174668",NA,NA,"Nitrate","Dissolved","2.52","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 20:30:00,NA,"Well",NA,"16020203",NA,NA,NA,NA,"40.51718889000000","-111.4989000000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5948","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,"Basin and Range carbonate-rock aquifers",NA,"Weber Quartzite or Sandstone (Permian-Pennsylvanian)","Confined single aquifer","20131118","1010","ft","1010","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.52,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.51718889,-111.4989,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"412","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200550","Sample-Routine","Water","Groundwater",2022-02-23,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403216111294601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174688",NA,NA,"Nitrate","Dissolved","0.365","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 17:50:00,NA,"Spring",NA,"16020203",NA,NA,NA,NA,"40.53773217000000","-111.4968572000000","24000","1","seconds","Interpolated from MAP.","NAD83","5870","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.365,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.53773217,-111.4968572,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"896","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200550","Sample-Routine","Water","Groundwater",2022-02-23,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403216111294601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123174735",NA,NA,"Nitrate","Dissolved","1.61","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-23 17:50:00,NA,"Spring",NA,"16020203",NA,NA,NA,NA,"40.53773217000000","-111.4968572000000","24000","1","seconds","Interpolated from MAP.","NAD83","5870","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.61,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.53773217,-111.4968572,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"413","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200565","Sample-Routine","Water","Surface Water",2022-02-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123189405",NA,NA,"Nitrate","Dissolved","4.96","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-16 18:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.96,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"897","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200565","Sample-Routine","Water","Surface Water",2022-02-16,"11:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123189425",NA,NA,"Nitrate","Dissolved","22.0","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-16 18:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",22,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"414","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200566","Sample-Routine","Water","Surface Water",2022-02-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010060",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-123189454",NA,NA,"Nitrate","Dissolved","0.017","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-15 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.017,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"898","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200566","Sample-Routine","Water","Surface Water",2022-02-15,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-10010060",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-123189475",NA,NA,"Nitrate","Dissolved","0.074","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-15 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.074,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"415","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200567","Sample-Routine","Water","Surface Water",2022-02-28,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10155200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123189497","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",7,NA,2022-02-28 20:45:00,NA,"Stream",NA,"16020203","270","sq mi",NA,NA,"40.55439805000000","-111.4332426000000","24000","1","seconds","Interpolated from MAP.","NAD83","5691.59","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.55439805,-111.4332426,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"899","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200567","Sample-Routine","Water","Surface Water",2022-02-28,"13:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10155200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123189544","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-02-28 20:45:00,NA,"Stream",NA,"16020203","270","sq mi",NA,NA,"40.55439805000000","-111.4332426000000","24000","1","seconds","Interpolated from MAP.","NAD83","5691.59","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.55439805,-111.4332426,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"416","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200568","Sample-Routine","Water","Surface Water",2022-02-28,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10155500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123189553",NA,NA,"Nitrate","Dissolved","0.178","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-28 21:30:00,NA,"Stream",NA,"16020203","359","sq mi",NA,NA,"40.48412210000000","-111.4635198000000","24000","1","seconds","Interpolated from MAP.","NAD83","5427.04","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.178,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.4841221,-111.4635198,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"900","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200568","Sample-Routine","Water","Surface Water",2022-02-28,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10155500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123189600",NA,NA,"Nitrate","Dissolved","0.789","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-28 21:30:00,NA,"Stream",NA,"16020203","359","sq mi",NA,NA,"40.48412210000000","-111.4635198000000","24000","1","seconds","Interpolated from MAP.","NAD83","5427.04","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.789,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.4841221,-111.4635198,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"417","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200569","Sample-Routine","Water","Surface Water",2022-02-28,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10156000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123189609",NA,NA,"Nitrate","Dissolved","0.720","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-28 21:45:00,NA,"Stream",NA,"16020203","31.8","sq mi",NA,NA,"40.48523320000000","-111.4671312000000","24000","1","seconds","Interpolated from MAP.","NAD83","5426.64","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.72,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.4852332,-111.4671312,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"901","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200569","Sample-Routine","Water","Surface Water",2022-02-28,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10156000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123189656",NA,NA,"Nitrate","Dissolved","3.19","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-28 21:45:00,NA,"Stream",NA,"16020203","31.8","sq mi",NA,NA,"40.48523320000000","-111.4671312000000","24000","1","seconds","Interpolated from MAP.","NAD83","5426.64","feet","0.09","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.19,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.4852332,-111.4671312,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"418","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200564","Sample-Routine","Water","Surface Water",2022-02-16,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123189677",NA,NA,"Nitrate","Dissolved","6.31","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-16 22:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.31,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"902","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200564","Sample-Routine","Water","Surface Water",2022-02-16,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123189697",NA,NA,"Nitrate","Dissolved","27.9","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-02-16 22:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",27.9,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"419","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200576","Sample-Routine","Water","Surface Water",2022-03-01,"10:15:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200210","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.12","mg/l as N",NA,NA,"NWIS",7,NA,2022-03-01 17:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.12,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.12,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"903","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200576","Sample-Routine","Water","Surface Water",2022-03-01,"10:15:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200220","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.531","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-03-01 17:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.531,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.531,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"420","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200577","Sample-Routine","Water","Surface Water",2022-03-01,"10:30:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200238","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.12","mg/l as N",NA,NA,"NWIS",7,NA,2022-03-01 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.12,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.12,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"904","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200577","Sample-Routine","Water","Surface Water",2022-03-01,"10:30:00","MST",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200248","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.531","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-03-01 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.531,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.531,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"421","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200578","Sample-Routine","Water","Surface Water",2022-03-01,"11:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200266","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.12","mg/l as N",NA,NA,"NWIS",7,NA,2022-03-01 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.12,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.12,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"905","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200578","Sample-Routine","Water","Surface Water",2022-03-01,"11:30:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200276","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.531","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-03-01 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.531,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.531,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"422","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200579","Sample-Routine","Water","Surface Water",2022-03-01,"11:40:00","MST",NA,NA,NA,NA,"6","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200293","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.12","mg/l as N",NA,NA,"NWIS",7,NA,2022-03-01 18:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.12,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.12,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"906","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200579","Sample-Routine","Water","Surface Water",2022-03-01,"11:40:00","MST",NA,NA,NA,NA,"6","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200302","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.531","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-03-01 18:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.531,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.531,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"423","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200580","Sample-Routine","Water","Surface Water",2022-03-01,"12:25:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200320","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-03-01 19:25:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"907","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200580","Sample-Routine","Water","Surface Water",2022-03-01,"12:25:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200330","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-03-01 19:25:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"424","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200581","Sample-Routine","Water","Surface Water",2022-03-01,"12:35:00","MST",NA,NA,NA,NA,"2","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200348","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.12","mg/l as N",NA,NA,"NWIS",7,NA,2022-03-01 19:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.12,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.12,"MG/L AS N","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"908","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200581","Sample-Routine","Water","Surface Water",2022-03-01,"12:35:00","MST",NA,NA,NA,NA,"2","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200358","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.531","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-03-01 19:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.531,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.531,"MG/L ASNO3","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"425","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200582","Sample-Routine","Water","Surface Water",2022-03-01,"13:15:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200376","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.118","mg/l as N",NA,NA,"NWIS",7,NA,2022-03-01 20:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.118,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.118,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"909","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200582","Sample-Routine","Water","Surface Water",2022-03-01,"13:15:00","MST",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200386","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.521","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-03-01 20:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.521,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.521,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"426","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200586","Sample-Routine","Water","Surface Water",2022-03-01,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123200439",NA,NA,"Nitrate","Dissolved","0.904","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-03-01 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.904,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"910","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200586","Sample-Routine","Water","Surface Water",2022-03-01,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123200561",NA,NA,"Nitrate","Dissolved","4.00","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-03-01 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"427","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200587","Sample-Routine","Water","Surface Water",2022-02-25,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123200604","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",7,NA,2022-02-25 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"911","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200587","Sample-Routine","Water","Surface Water",2022-02-25,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123200628","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-02-25 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"428","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200589","Sample-Routine","Water","Groundwater",2022-03-02,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403001111293201",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200653",NA,NA,"Nitrate","Dissolved","0.135","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-03-02 19:50:00,NA,"Spring",NA,"16020203",NA,NA,NA,NA,"40.50023327000000","-111.4929664000000","24000","1","seconds","Interpolated from MAP.","NAD83","5720","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.135,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.50023327,-111.4929664,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"912","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200589","Sample-Routine","Water","Groundwater",2022-03-02,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403001111293201",NA,NA,NA,"Not applicable","Not applicable",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123200700",NA,NA,"Nitrate","Dissolved","0.597","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-03-02 19:50:00,NA,"Spring",NA,"16020203",NA,NA,NA,NA,"40.50023327000000","-111.4929664000000","24000","1","seconds","Interpolated from MAP.","NAD83","5720","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.597,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.50023327,-111.4929664,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"429","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200677","Sample-Routine","Water","Surface Water",2022-03-16,"12:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403151111290601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123282328",NA,NA,"Nitrate","Dissolved","0.046","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-16 18:45:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53071944000000","-111.4849500000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5698","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.046,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.53071944,-111.48495,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"913","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200677","Sample-Routine","Water","Surface Water",2022-03-16,"12:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-403151111290601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123282375",NA,NA,"Nitrate","Dissolved","0.204","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-16 18:45:00,NA,"Stream",NA,"16020203",NA,NA,NA,NA,"40.53071944000000","-111.4849500000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","5698","feet","1.6","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.204,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.53071944,-111.48495,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"430","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200679","Sample-Routine","Water","Surface Water",2022-03-17,"12:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"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","NWIS-123282408","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-03-17 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"914","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200679","Sample-Routine","Water","Surface Water",2022-03-17,"12:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"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","NWIS-123282450","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-03-17 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"431","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200680","Sample-Routine","Water","Surface Water",2022-03-17,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123282482","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-03-17 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"915","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200680","Sample-Routine","Water","Surface Water",2022-03-17,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123282526","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-03-17 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"432","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200752","Sample-Routine","Water","Surface Water",2022-03-15,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123347701",NA,NA,"Nitrate","Dissolved","0.018","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-15 20:00:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.018,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"916","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200752","Sample-Routine","Water","Surface Water",2022-03-15,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123347726",NA,NA,"Nitrate","Dissolved","0.081","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-15 20:00:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.081,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"433","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200781","Quality Control Sample-Field Replicate","Water","Surface Water",2022-03-31,"15:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123365665",NA,NA,"Nitrate","Dissolved","5.46","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-31 21:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",5.46,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"917","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200781","Quality Control Sample-Field Replicate","Water","Surface Water",2022-03-31,"15:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123365698",NA,NA,"Nitrate","Dissolved","24.1","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-31 21:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",24.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"434","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200782","Sample-Routine","Water","Surface Water",2022-03-31,"11:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123365735","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-03-31 17:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"918","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200782","Sample-Routine","Water","Surface Water",2022-03-31,"11:10:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123365767","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-03-31 17:10:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"435","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200783","Sample-Routine","Water","Surface Water",2022-03-30,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123365801",NA,NA,"Nitrate","Dissolved","5.45","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-30 19:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.45,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"919","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200783","Sample-Routine","Water","Surface Water",2022-03-30,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123365833",NA,NA,"Nitrate","Dissolved","24.1","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-30 19:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",24.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"436","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200784","Sample-Routine","Water","Surface Water",2022-03-30,"10:55:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-123365864","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-03-30 16:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"920","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200784","Sample-Routine","Water","Surface Water",2022-03-30,"10:55:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-81","NWIS-123365884","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-03-30 16:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"437","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200794","Sample-Routine","Water","Surface Water",2022-03-30,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Rising stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123373594",NA,NA,"Nitrate","Dissolved","0.029","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-30 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.029,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"921","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200794","Sample-Routine","Water","Surface Water",2022-03-30,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Rising stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123373619",NA,NA,"Nitrate","Dissolved","0.129","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-30 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.129,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"438","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200795","Sample-Routine","Water","Surface Water",2022-03-24,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10168000",NA,"Not on paperwork",NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123373649",NA,NA,"Nitrate","Dissolved","0.590","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-24 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.59,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2105","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200795","Sample-Routine","Water","Surface Water",2022-03-24,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10168000",NA,"Not on paperwork",NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123373684",NA,NA,"Nitrogen","Suspended","0.038","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-05-12,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-03-24 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.038,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"922","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200795","Sample-Routine","Water","Surface Water",2022-03-24,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10168000",NA,"Not on paperwork",NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123373774",NA,NA,"Nitrate","Dissolved","2.61","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-24 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.61,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"439","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200796","Sample-Routine","Water","Surface Water",2022-03-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-123373833",NA,NA,"Nitrate","Dissolved","6.74","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-24 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.74,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2106","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200796","Sample-Routine","Water","Surface Water",2022-03-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-123373868",NA,NA,"Nitrogen","Suspended","0.166","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-05-12,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-03-24 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.166,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"923","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200796","Sample-Routine","Water","Surface Water",2022-03-24,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-123373957",NA,NA,"Nitrate","Dissolved","29.8","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-03-24 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",29.8,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"440","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200797","Sample-Routine","Water","Surface Water",2022-03-23,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123373998","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-03-23 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"924","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200797","Sample-Routine","Water","Surface Water",2022-03-23,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123374025","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-03-23 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"441","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200798","Sample-Routine","Water","Surface Water",2022-03-11,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Grab sample","NWIS-123374055",NA,NA,"Nitrate","Dissolved","0.918","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-03-11 17:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.918,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2107","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200798","Sample-Routine","Water","Surface Water",2022-03-11,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Grab sample","NWIS-123374090","Not Detected",NA,"Nitrogen","Suspended",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-04-26,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2022-03-11 17:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.03,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"925","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200798","Sample-Routine","Water","Surface Water",2022-03-11,"10:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Grab sample","NWIS-123374179",NA,NA,"Nitrate","Dissolved","4.06","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-03-11 17:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.06,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"442","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200799","Sample-Routine","Water","Surface Water",2022-03-11,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-123374238",NA,NA,"Nitrate","Dissolved","6.93","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-03-11 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.93,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2108","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200799","Sample-Routine","Water","Surface Water",2022-03-11,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-123374273",NA,NA,"Nitrogen","Suspended","0.195","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-04-26,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",7,NA,2022-03-11 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"926","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200799","Sample-Routine","Water","Surface Water",2022-03-11,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-123374361",NA,NA,"Nitrate","Dissolved","30.7","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",7,NA,2022-03-11 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",30.7,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"443","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200810","Sample-Routine","Water","Surface Water",2022-04-06,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123376934","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-06 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"927","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200810","Sample-Routine","Water","Surface Water",2022-04-06,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123376959","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-06 19:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"444","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200833","Quality Control Sample-Field Replicate","Water","Surface Water",2022-04-07,"15:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123405514","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-07 21:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"928","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200833","Quality Control Sample-Field Replicate","Water","Surface Water",2022-04-07,"15:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123405551","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-07 21:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"445","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200834","Sample-Routine","Water","Surface Water",2022-04-07,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"55","USGS parameter code 82398","Composite - Multiple point samples",NA,"Other","NWIS-123405582","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-07 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"929","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200834","Sample-Routine","Water","Surface Water",2022-04-07,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"55","USGS parameter code 82398","Composite - Multiple point samples",NA,"Other","NWIS-123405615","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-07 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"446","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200838","Sample-Routine","Water","Groundwater",2022-01-22,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414398","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-22 16:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"930","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200838","Sample-Routine","Water","Groundwater",2022-01-22,"09:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414421","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-22 16:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"447","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200839","Sample-Routine","Water","Groundwater",2022-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414440","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-21 17:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"931","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200839","Sample-Routine","Water","Groundwater",2022-01-21,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414463","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-21 17:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"448","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200840","Sample-Routine","Water","Groundwater",2022-01-20,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414482","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-20 17:10:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"932","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200840","Sample-Routine","Water","Groundwater",2022-01-20,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414505","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-20 17:10:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"449","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200841","Sample-Routine","Water","Groundwater",2022-01-19,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414524","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-19 22:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"933","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200841","Sample-Routine","Water","Groundwater",2022-01-19,"15:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414547","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-19 22:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"450","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200842","Sample-Routine","Water","Groundwater",2022-01-19,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414566","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-19 15:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"934","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200842","Sample-Routine","Water","Groundwater",2022-01-19,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414589","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-19 15:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"451","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200843","Sample-Routine","Water","Groundwater",2022-01-18,"16:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414608","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-18 23:10:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"935","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200843","Sample-Routine","Water","Groundwater",2022-01-18,"16:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414631","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-18 23:10:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"452","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200844","Sample-Routine","Water","Groundwater",2022-01-18,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414650","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-18 16:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"936","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200844","Sample-Routine","Water","Groundwater",2022-01-18,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414673","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-18 16:00:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"453","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200845","Sample-Routine","Water","Groundwater",2022-01-17,"17:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414692","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",7,NA,2022-01-18 00:20:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"937","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200845","Sample-Routine","Water","Groundwater",2022-01-17,"17:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-371128113160301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8040","USGS parameter code 82398","Spigot",NA,"Other","NWIS-123414715","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",7,NA,2022-01-18 00:20:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.19102220000000","-113.2673722000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3120","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Coconino Sandstone of Aubrey Group","Unconfined single aquifer","19720515","237.4","ft","522","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1910222,-113.2673722,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"454","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200858","Sample-Routine","Water","Surface Water",2022-04-14,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"Grab sample","NWIS-123444135",NA,NA,"Nitrate","Dissolved","0.803","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-14 18:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.803,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2109","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200858","Sample-Routine","Water","Surface Water",2022-04-14,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"Grab sample","NWIS-123444170",NA,NA,"Nitrogen","Suspended","0.035","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-05-26,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-04-14 18:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.035,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"938","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200858","Sample-Routine","Water","Surface Water",2022-04-14,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"Grab sample","NWIS-123444180",NA,NA,"Nitrate","Dissolved","3.56","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-14 18:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.56,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"455","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200859","Sample-Routine","Water","Surface Water",2022-04-14,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123444218",NA,NA,"Nitrate","Dissolved","4.79","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-14 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.79,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2110","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200859","Sample-Routine","Water","Surface Water",2022-04-14,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123444253",NA,NA,"Nitrogen","Suspended","0.157","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-05-26,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-04-14 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"939","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200859","Sample-Routine","Water","Surface Water",2022-04-14,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123444263",NA,NA,"Nitrate","Dissolved","21.2","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-14 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",21.2,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"456","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200880","Sample-Routine","Water","Surface Water",2022-04-21,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123472069","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-21 18:30:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"940","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200880","Sample-Routine","Water","Surface Water",2022-04-21,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123472093","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-21 18:30:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"457","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200886","Sample-Routine","Water","Surface Water",2022-04-21,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123479364",NA,NA,"Nitrate","Dissolved","0.015","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-21 17:00:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.015,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"941","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200886","Sample-Routine","Water","Surface Water",2022-04-21,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123479385",NA,NA,"Nitrate","Dissolved","0.065","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-21 17:00:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.065,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"458","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200923","Sample-Routine","Water","Surface Water",2022-04-25,"12:56:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509639","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-25 18:56:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"942","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200923","Sample-Routine","Water","Surface Water",2022-04-25,"12:56:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509649","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-25 18:56:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"459","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200924","Sample-Routine","Water","Surface Water",2022-04-25,"13:00:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509667","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-25 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"943","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200924","Sample-Routine","Water","Surface Water",2022-04-25,"13:00:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509677","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-25 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"460","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200925","Sample-Routine","Water","Surface Water",2022-04-25,"14:02:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509695","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-25 20:02:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"944","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200925","Sample-Routine","Water","Surface Water",2022-04-25,"14:02:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509705","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-25 20:02:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"461","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200926","Quality Control Sample-Field Replicate","Water","Surface Water",2022-04-25,"10:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509723","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-25 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"945","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200926","Quality Control Sample-Field Replicate","Water","Surface Water",2022-04-25,"10:45:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509733","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-25 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"462","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200927","Sample-Routine","Water","Surface Water",2022-04-25,"11:00:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509751","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-25 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"946","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200927","Sample-Routine","Water","Surface Water",2022-04-25,"11:00:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509761","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-25 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"463","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200928","Sample-Routine","Water","Surface Water",2022-04-25,"12:08:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509779","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-25 18:08:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"947","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200928","Sample-Routine","Water","Surface Water",2022-04-25,"12:08:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509789","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-25 18:08:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"464","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200929","Sample-Routine","Water","Surface Water",2022-04-25,"12:15:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509807","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-25 18:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"948","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200929","Sample-Routine","Water","Surface Water",2022-04-25,"12:15:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123509817","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-25 18:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"465","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200942","Sample-Routine","Water","Surface Water",2022-05-05,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123542795","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-05-05 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"949","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200942","Sample-Routine","Water","Surface Water",2022-05-05,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123542819","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-05-05 18:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"466","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200943","Sample-Routine","Water","Surface Water",2022-04-28,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"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","NWIS-123542852",NA,NA,"Nitrate","Dissolved","0.581","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-28 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.581,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2111","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200943","Sample-Routine","Water","Surface Water",2022-04-28,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"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","NWIS-123542887",NA,NA,"Nitrogen","Suspended","0.030","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-06-06,"below the reporting level but at or above the detection level",NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-04-28 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"950","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200943","Sample-Routine","Water","Surface Water",2022-04-28,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"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","NWIS-123542978",NA,NA,"Nitrate","Dissolved","2.57","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-28 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.57,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"467","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200944","Sample-Routine","Water","Surface Water",2022-04-28,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123543038",NA,NA,"Nitrate","Dissolved","5.98","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-28 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.98,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2112","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200944","Sample-Routine","Water","Surface Water",2022-04-28,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123543073",NA,NA,"Nitrogen","Suspended","0.182","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-06-16,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-04-28 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"951","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200944","Sample-Routine","Water","Surface Water",2022-04-28,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123543164",NA,NA,"Nitrate","Dissolved","26.5","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-28 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",26.5,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"468","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200955","Sample-Routine","Water","Groundwater",2022-04-27,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370744113225701",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123577732",NA,NA,"Nitrate","Dissolved","0.337","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-27 20:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12897220000000","-113.3826110000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3088","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Other aquifers",NA,"Navajo Sandstone (Jurassic)","Unconfined single aquifer","20150818","170.5","ft","170.5","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.337,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.1289722,-113.382611,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"952","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200955","Sample-Routine","Water","Groundwater",2022-04-27,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370744113225701",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123577755",NA,NA,"Nitrate","Dissolved","1.49","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-27 20:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12897220000000","-113.3826110000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3088","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Other aquifers",NA,"Navajo Sandstone (Jurassic)","Unconfined single aquifer","20150818","170.5","ft","170.5","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.49,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.1289722,-113.382611,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"469","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200956","Sample-Routine","Water","Groundwater",2022-04-27,"12:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370806113223401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123577774",NA,NA,"Nitrate","Dissolved","1.66","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-27 18:40:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.13497220000000","-113.3761389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","2987","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer","20130410","318","ft","333","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.66,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.1349722,-113.3761389,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"953","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200956","Sample-Routine","Water","Groundwater",2022-04-27,"12:40:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370806113223401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123577797",NA,NA,"Nitrate","Dissolved","7.34","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-27 18:40:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.13497220000000","-113.3761389000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","2987","feet","4.3","feet","Interpolated from Digital Elevation Model","NAVD88","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer","20130410","318","ft","333","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",7.34,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.1349722,-113.3761389,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"470","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200957","Sample-Routine","Water","Groundwater",2022-04-27,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370727113233001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8010","USGS parameter code 82398","Other",NA,"Inertial Pump","NWIS-123577816",NA,NA,"Nitrate","Dissolved","3.71","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-27 16:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12434365000000","-113.3936173000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","2993.9","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19950206","160","ft","160","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.71,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.12434365,-113.3936173,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"954","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200957","Sample-Routine","Water","Groundwater",2022-04-27,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370727113233001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8010","USGS parameter code 82398","Other",NA,"Inertial Pump","NWIS-123577839",NA,NA,"Nitrate","Dissolved","16.4","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-27 16:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12434365000000","-113.3936173000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","2993.9","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19950206","160","ft","160","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",16.4,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.12434365,-113.3936173,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"471","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200958","Sample-Routine","Water","Groundwater",2022-04-27,"10:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370746113223301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123577858",NA,NA,"Nitrate","Dissolved","0.198","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-27 16:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.13017705000000","-113.3777003000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3003.6","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010515","96","ft","103.41","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.198,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.13017705,-113.3777003,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"955","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200958","Sample-Routine","Water","Groundwater",2022-04-27,"10:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370746113223301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123577881",NA,NA,"Nitrate","Dissolved","0.876","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-27 16:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.13017705000000","-113.3777003000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3003.6","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010515","96","ft","103.41","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.876,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.13017705,-113.3777003,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"472","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200959","Sample-Routine","Water","Surface Water",2022-04-26,"16:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370737113221301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8010","USGS parameter code 82398","Other",NA,"Peristaltic pump","NWIS-123577900","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.037","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-26 22:15:00,NA,"Lake, Reservoir, Impoundment",NA,"15010008",NA,NA,NA,NA,"37.12129167000000","-113.3819750000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.037,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.12129167,-113.381975,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.037,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"956","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200959","Sample-Routine","Water","Surface Water",2022-04-26,"16:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370737113221301",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8010","USGS parameter code 82398","Other",NA,"Peristaltic pump","NWIS-123577923","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.164","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-26 22:15:00,NA,"Lake, Reservoir, Impoundment",NA,"15010008",NA,NA,NA,NA,"37.12129167000000","-113.3819750000000","24000",".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.164,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.12129167,-113.381975,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.164,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"473","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200960","Sample-Routine","Water","Groundwater",2022-04-26,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370654113213501",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8010","USGS parameter code 82398","Other",NA,"Inertial Pump","NWIS-123577940",NA,NA,"Nitrate","Dissolved","0.867","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-26 20:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.11506615000000","-113.3606443000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3083.7","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19990503","155.5","ft","155.6","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.867,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.11506615,-113.3606443,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"957","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200960","Sample-Routine","Water","Groundwater",2022-04-26,"14:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370654113213501",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"8010","USGS parameter code 82398","Other",NA,"Inertial Pump","NWIS-123577963",NA,NA,"Nitrate","Dissolved","3.84","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-26 20:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.11506615000000","-113.3606443000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3083.7","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"19990503","155.5","ft","155.6","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.84,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.11506615,-113.3606443,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"474","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200961","Sample-Routine","Water","Groundwater",2022-04-26,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370604113224601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123577982",NA,NA,"Nitrate","Dissolved","3.48","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-26 19:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.10187165000000","-113.3803947000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066.2","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010521","118.7","ft","134","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",3.48,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.10187165,-113.3803947,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"958","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200961","Sample-Routine","Water","Groundwater",2022-04-26,"13:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370604113224601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123578005",NA,NA,"Nitrate","Dissolved","15.4","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-26 19:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.10187165000000","-113.3803947000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066.2","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010521","118.7","ft","134","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",15.4,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.10187165,-113.3803947,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"475","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200962","Sample-Routine","Water","Groundwater",2022-04-26,"09:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370655113224901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123578024","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-26 15:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12312150000000","-113.3828948000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010523","155","ft","158","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1231215,-113.3828948,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"959","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200962","Sample-Routine","Water","Groundwater",2022-04-26,"09:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370655113224901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123578047","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-26 15:15:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12312150000000","-113.3828948000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3066","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010523","155","ft","158","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1231215,-113.3828948,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"476","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200963","Sample-Routine","Water","Groundwater",2022-04-25,"17:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370646113231901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123578066","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-25 23:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.11312150000000","-113.3915060000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3016.6","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010614","108.5","ft","112","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1131215,-113.391506,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"960","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200963","Sample-Routine","Water","Groundwater",2022-04-25,"17:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370646113231901",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible centrifugal pump","NWIS-123578089","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-25 23:30:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.11312150000000","-113.3915060000000",NA,".1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3016.6","feet","0.1","feet","Global Positioning System.","NGVD29","US","49",53,NA,NA,NA,NA,"20010614","108.5","ft","112","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.1131215,-113.391506,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"477","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200964","Sample-Routine","Water","Groundwater",2022-04-25,"15:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233202",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump","NWIS-123578108",NA,NA,"Nitrate","Dissolved","4.18","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-25 21:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,"301.5","ft","305","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.18,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.1211111,-113.3922222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"961","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200964","Sample-Routine","Water","Groundwater",2022-04-25,"15:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233202",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump","NWIS-123578131",NA,NA,"Nitrate","Dissolved","18.5","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-25 21:45:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,"301.5","ft","305","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",18.5,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.1211111,-113.3922222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"478","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200965","Sample-Routine","Water","Groundwater",2022-04-25,"14:25:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233201",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump","NWIS-123578150",NA,NA,"Nitrate","Dissolved","2.80","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-25 20:25:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,"61","ft","65","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.8,"MG/L AS N","Numeric","Not Reviewed","Uncensored",37.1211111,-113.3922222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"962","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200965","Sample-Routine","Water","Groundwater",2022-04-25,"14:25:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"USGS - Utah Water Science Center","USGS-370716113233201",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"4040","USGS parameter code 82398","Submersible pump",NA,"Submersible piston pump","NWIS-123578173",NA,NA,"Nitrate","Dissolved","12.4","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-04-25 20:25:00,NA,"Well",NA,"15010008",NA,NA,NA,NA,"37.12111110000000","-113.3922222000000","24000","1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","3000","feet","20","feet","Interpolated from topographic map.","NGVD29","US","49",53,"Colorado Plateaus aquifers",NA,"Navajo Sandstone of Glen Canyon Group","Unconfined single aquifer",NA,"61","ft","65","ft",NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",12.4,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",37.1211111,-113.3922222,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"479","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200968","Quality Control Sample-Field Replicate","Water","Surface Water",2022-05-04,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123578251","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-05-04 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"963","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200968","Quality Control Sample-Field Replicate","Water","Surface Water",2022-05-04,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123578272","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-05-04 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"480","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200969","Sample-Routine","Water","Surface Water",2022-05-03,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123578303",NA,NA,"Nitrate","Dissolved","0.242","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-03 19:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.242,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"964","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200969","Sample-Routine","Water","Surface Water",2022-05-03,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123578323",NA,NA,"Nitrate","Dissolved","1.07","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-03 19:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.07,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"481","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200970","Sample-Routine","Water","Surface Water",2022-05-03,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123578353",NA,NA,"Nitrate","Dissolved","0.049","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-03 16:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.049,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"965","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200970","Sample-Routine","Water","Surface Water",2022-05-03,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123578373",NA,NA,"Nitrate","Dissolved","0.216","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-03 16:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.216,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"482","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200971","Sample-Routine","Water","Surface Water",2022-04-26,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-123578401","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-26 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"966","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200971","Sample-Routine","Water","Surface Water",2022-04-26,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-123578421","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-26 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"483","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200972","Sample-Routine","Water","Surface Water",2022-04-13,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-123578450","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-04-13 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"967","USGS-UT","USGS Utah Water Science Center","nwisut.01.02200972","Sample-Routine","Water","Surface Water",2022-04-13,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010060",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"US DH-81","NWIS-123578465","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-04-13 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.23410640000000","-112.3371697000000",NA,".5","seconds","Interpolated from MAP.","NAD83","4210","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2341064,-112.3371697,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"484","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201033","Sample-Routine","Water","Surface Water",2022-05-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123630802","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-05-20 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"968","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201033","Sample-Routine","Water","Surface Water",2022-05-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123630826","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-05-20 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"485","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201091","Sample-Routine","Water","Surface Water",2022-05-25,"15:30:00","MDT",NA,NA,NA,NA,"3","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Other","NWIS-123670517","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-05-25 21:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"969","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201091","Sample-Routine","Water","Surface Water",2022-05-25,"15:30:00","MDT",NA,NA,NA,NA,"3","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Other","NWIS-123670550","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-05-25 21:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"486","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201098","Sample-Routine","Water","Surface Water",2022-05-25,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-123686999",NA,NA,"Nitrate","Dissolved","0.022","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-25 17:00:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.022,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"970","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201098","Sample-Routine","Water","Surface Water",2022-05-25,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81","NWIS-123687021",NA,NA,"Nitrate","Dissolved","0.099","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-25 17:00:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.099,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"487","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201123","Sample-Routine","Water","Surface Water",2022-06-02,"13:44:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706298","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-02 19:44:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"971","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201123","Sample-Routine","Water","Surface Water",2022-06-02,"13:44:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706308","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-02 19:44:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"488","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201117","Sample-Routine","Water","Surface Water",2022-06-02,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706338","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-02 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"972","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201117","Sample-Routine","Water","Surface Water",2022-06-02,"10:30:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706348","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-02 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"489","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201118","Sample-Routine","Water","Surface Water",2022-06-02,"10:32:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706366","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-02 16:32:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"973","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201118","Sample-Routine","Water","Surface Water",2022-06-02,"10:32:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706376","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-02 16:32:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"490","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201119","Sample-Routine","Water","Surface Water",2022-06-02,"11:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706394","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.078","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-02 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.078,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.078,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"974","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201119","Sample-Routine","Water","Surface Water",2022-06-02,"11:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706404","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.344","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-02 17:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.344,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.344,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"491","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201120","Sample-Routine","Water","Surface Water",2022-06-02,"12:15:00","MDT",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706422","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-02 18:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"975","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201120","Sample-Routine","Water","Surface Water",2022-06-02,"12:15:00","MDT",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706432","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-02 18:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"492","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201121","Sample-Routine","Water","Surface Water",2022-06-02,"12:47:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706450","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.12","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-02 18:47:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.12,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.12,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"976","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201121","Sample-Routine","Water","Surface Water",2022-06-02,"12:47:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706460","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.531","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-02 18:47:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.531,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.531,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"493","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201122","Sample-Routine","Water","Surface Water",2022-06-02,"13:06:00","MDT",NA,NA,NA,NA,"2","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706478","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.078","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-02 19:06:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.078,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.078,"MG/L AS N","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"977","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201122","Sample-Routine","Water","Surface Water",2022-06-02,"13:06:00","MDT",NA,NA,NA,NA,"2","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123706488","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.345","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-02 19:06:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.345,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.345,"MG/L ASNO3","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"494","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201155","Sample-Routine","Water","Surface Water",2022-06-09,"11:30:00","MDT",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745617","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-09 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"978","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201155","Sample-Routine","Water","Surface Water",2022-06-09,"11:30:00","MDT",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745628","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-09 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"495","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201156","Sample-Routine","Water","Surface Water",2022-06-09,"13:50:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745645","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-09 19:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"979","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201156","Sample-Routine","Water","Surface Water",2022-06-09,"13:50:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745656","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-09 19:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"496","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201157","Sample-Routine","Water","Surface Water",2022-06-09,"14:20:00","MDT",NA,NA,NA,NA,"1.7","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745673","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-09 20:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",1.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"980","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201157","Sample-Routine","Water","Surface Water",2022-06-09,"14:20:00","MDT",NA,NA,NA,NA,"1.7","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745684","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-09 20:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",1.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"497","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201144","Sample-Routine","Water","Surface Water",2022-06-07,"11:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410323112301901",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745733","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-07 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.03965920000000","-112.5060734000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0396592,-112.5060734,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"981","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201144","Sample-Routine","Water","Surface Water",2022-06-07,"11:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410323112301901",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745744","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-07 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.03965920000000","-112.5060734000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0396592,-112.5060734,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"498","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201145","Sample-Routine","Water","Surface Water",2022-06-07,"12:00:00","MDT",NA,NA,NA,NA,"2.8","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410323112301901",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745761","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-07 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.03965920000000","-112.5060734000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0396592,-112.5060734,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",2.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"982","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201145","Sample-Routine","Water","Surface Water",2022-06-07,"12:00:00","MDT",NA,NA,NA,NA,"2.8","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410323112301901",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745772","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-07 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.03965920000000","-112.5060734000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0396592,-112.5060734,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",2.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"499","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201146","Sample-Routine","Water","Surface Water",2022-06-07,"13:20:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745789","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-07 19:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"983","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201146","Sample-Routine","Water","Surface Water",2022-06-07,"13:20:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745800","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-07 19:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"500","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201148","Sample-Routine","Water","Surface Water",2022-06-07,"14:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745827","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-07 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"984","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201148","Sample-Routine","Water","Surface Water",2022-06-07,"14:45:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745838","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-07 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"501","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201149","Sample-Routine","Water","Surface Water",2022-06-07,"15:20:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745855","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-07 21:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"985","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201149","Sample-Routine","Water","Surface Water",2022-06-07,"15:20:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410637112270401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745866","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-07 21:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11021468000000","-112.4519024000000",NA,"1","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4197.7","feet","0.1","feet","Reported method of determination.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.11021468,-112.4519024,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"502","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201150","Sample-Routine","Water","Surface Water",2022-06-08,"11:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745883","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-08 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"986","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201150","Sample-Routine","Water","Surface Water",2022-06-08,"11:30:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745893","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-08 17:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"503","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201151","Sample-Routine","Water","Surface Water",2022-06-08,"12:45:00","MDT",NA,NA,NA,NA,"2.7","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745910","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-08 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",2.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"987","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201151","Sample-Routine","Water","Surface Water",2022-06-08,"12:45:00","MDT",NA,NA,NA,NA,"2.7","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-404607112193801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745921","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-08 18:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.76855400000000","-112.3280062000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",45,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.768554,-112.3280062,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",2.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"504","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201152","Sample-Routine","Water","Surface Water",2022-06-08,"14:15:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745936","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-08 20:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"988","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201152","Sample-Routine","Water","Surface Water",2022-06-08,"14:15:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745947","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-08 20:15:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"505","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201153","Quality Control Sample-Field Replicate","Water","Surface Water",2022-06-08,"14:45:00","MDT",NA,NA,NA,NA,"6.1","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745962","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-08 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",6.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"989","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201153","Quality Control Sample-Field Replicate","Water","Surface Water",2022-06-08,"14:45:00","MDT",NA,NA,NA,NA,"6.1","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745973","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-08 20:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",6.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"506","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201154","Sample-Routine","Water","Surface Water",2022-06-09,"10:40:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123745991","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-09 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"990","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201154","Sample-Routine","Water","Surface Water",2022-06-09,"10:40:00","MDT",NA,NA,NA,NA,"0.2","meters",NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123746002","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-09 16:40:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"507","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201169","Sample-Routine","Water","Surface Water",2022-05-25,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123761145","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-05-25 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"991","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201169","Sample-Routine","Water","Surface Water",2022-05-25,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123761182","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-05-25 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"508","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201208","Sample-Routine","Water","Surface Water",2022-06-09,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123847567",NA,NA,"Nitrate","Dissolved","2.63","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-06-09 20:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.63,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2113","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201208","Sample-Routine","Water","Surface Water",2022-06-09,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123847600",NA,NA,"Nitrogen","Suspended","0.113","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-07-27,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-06-09 20:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.113,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"992","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201208","Sample-Routine","Water","Surface Water",2022-06-09,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123847609",NA,NA,"Nitrate","Dissolved","11.6","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-06-09 20:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",11.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"509","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201209","Sample-Routine","Water","Surface Water",2022-06-09,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 Teflon bottle","NWIS-123847649",NA,NA,"Nitrate","Dissolved","0.202","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-06-09 16:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.202,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2114","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201209","Sample-Routine","Water","Surface Water",2022-06-09,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 Teflon bottle","NWIS-123847682",NA,NA,"Nitrogen","Suspended","0.073","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-07-27,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-06-09 16:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.073,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"993","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201209","Sample-Routine","Water","Surface Water",2022-06-09,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 Teflon bottle","NWIS-123847691",NA,NA,"Nitrate","Dissolved","0.894","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-06-09 16:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.894,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"510","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201210","Sample-Routine","Water","Surface Water",2022-06-08,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123847714","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-08 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"994","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201210","Sample-Routine","Water","Surface Water",2022-06-08,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"Open-Mouth Bottle","NWIS-123847738","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-08 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"511","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201211","Sample-Routine","Water","Surface Water",2022-05-26,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, high stage","Routine sample",NA,NA,"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","NWIS-123847766",NA,NA,"Nitrate","Dissolved","2.56","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-26 18:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.56,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2115","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201211","Sample-Routine","Water","Surface Water",2022-05-26,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, high stage","Routine sample",NA,NA,"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","NWIS-123847799",NA,NA,"Nitrogen","Suspended","0.116","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-07-20,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-05-26 18:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.116,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"995","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201211","Sample-Routine","Water","Surface Water",2022-05-26,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, high stage","Routine sample",NA,NA,"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","NWIS-123847889",NA,NA,"Nitrate","Dissolved","11.3","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-26 18:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",11.3,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"512","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201212","Sample-Routine","Water","Surface Water",2022-05-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81","NWIS-123847935",NA,NA,"Nitrate","Dissolved","0.170","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-25 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.17,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2116","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201212","Sample-Routine","Water","Surface Water",2022-05-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81","NWIS-123847966",NA,NA,"Nitrogen","Suspended","0.091","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-07-20,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-05-25 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.091,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"996","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201212","Sample-Routine","Water","Surface Water",2022-05-25,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Falling stage","Routine sample",NA,NA,"70","USGS parameter code 82398","Grab sample (dip)",NA,"US DH-81","NWIS-123848055",NA,NA,"Nitrate","Dissolved","0.751","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-05-25 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.751,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"513","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201228","Sample-Routine","Water","Surface Water",2022-06-14,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123857530",NA,NA,"Nitrate","Dissolved","2.73","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-06-14 18:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",2.73,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"997","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201228","Sample-Routine","Water","Surface Water",2022-06-14,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123857566",NA,NA,"Nitrate","Dissolved","12.1","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-06-14 18:30:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",12.1,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"514","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201227","Sample-Routine","Water","Surface Water",2022-06-14,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123857623",NA,NA,"Nitrate","Dissolved","0.215","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-06-14 20:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.215,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"998","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201227","Sample-Routine","Water","Surface Water",2022-06-14,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-123857643",NA,NA,"Nitrate","Dissolved","0.951","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-06-14 20:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.951,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"515","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201224","Quality Control Sample-Field Replicate","Water","Surface Water",2022-06-16,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"Other","NWIS-123857671","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-16 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"999","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201224","Quality Control Sample-Field Replicate","Water","Surface Water",2022-06-16,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"Other","NWIS-123857714","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-16 20:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"516","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201225","Sample-Routine","Water","Surface Water",2022-06-16,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123857747","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.037","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-16 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.037,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.037,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1000","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201225","Sample-Routine","Water","Surface Water",2022-06-16,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123857793","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.165","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-16 18:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.165,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.165,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"517","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201226","Sample-Routine","Water","Surface Water",2022-06-15,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123857828","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-15 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1001","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201226","Sample-Routine","Water","Surface Water",2022-06-15,"10:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"20","USGS parameter code 82398","Equal discharge increment (edi)",NA,"US DH-95 plastic bottle","NWIS-123857864","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-15 16:45:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"518","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201221","Sample-Routine","Water","Surface Water",2022-06-28,"13:00:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123857894","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-28 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1002","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201221","Sample-Routine","Water","Surface Water",2022-06-28,"13:00:00","MDT",NA,NA,NA,NA,"2.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123857904","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-28 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"519","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201222","Sample-Routine","Water","Surface Water",2022-06-28,"13:35:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123857922","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-28 19:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1003","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201222","Sample-Routine","Water","Surface Water",2022-06-28,"13:35:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123857932","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-28 19:35:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"520","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201218","Sample-Routine","Water","Surface Water",2022-06-28,"12:05:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123857950","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-28 18:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1004","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201218","Sample-Routine","Water","Surface Water",2022-06-28,"12:05:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123857960","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-28 18:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"521","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201219","Sample-Routine","Water","Surface Water",2022-06-28,"12:09:00","MDT",NA,NA,NA,NA,"5.9","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123857978","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-28 18:09:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",5.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1005","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201219","Sample-Routine","Water","Surface Water",2022-06-28,"12:09:00","MDT",NA,NA,NA,NA,"5.9","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123857988","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-28 18:09:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",5.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"522","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201216","Quality Control Sample-Field Replicate","Water","Surface Water",2022-06-28,"10:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123858018","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-28 16:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1006","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201216","Quality Control Sample-Field Replicate","Water","Surface Water",2022-06-28,"10:50:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123858028","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-28 16:50:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"523","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201217","Sample-Routine","Water","Surface Water",2022-06-28,"11:00:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123858046","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.077","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-28 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.077,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.077,"MG/L AS N","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1007","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201217","Sample-Routine","Water","Surface Water",2022-06-28,"11:00:00","MDT",NA,NA,NA,NA,"6.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123858056","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.341","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-28 17:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.341,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.341,"MG/L ASNO3","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"524","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201220","Sample-Routine","Water","Surface Water",2022-06-28,"12:55:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123858074","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-06-28 18:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1008","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201220","Sample-Routine","Water","Surface Water",2022-06-28,"12:55:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Not applicable","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-123858084","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-06-28 18:55:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"525","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201244","Sample-Routine","Water","Surface Water",2022-07-01,"17:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-123879267",NA,NA,"Nitrate","Dissolved","0.035","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-01 23:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.035,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1009","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201244","Sample-Routine","Water","Surface Water",2022-07-01,"17:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-123879291",NA,NA,"Nitrate","Dissolved","0.155","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-01 23:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.155,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"526","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201243","Sample-Routine","Water","Surface Water",2022-07-05,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-123879322",NA,NA,"Nitrate","Dissolved","4.90","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-05 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.9,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2117","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201243","Sample-Routine","Water","Surface Water",2022-07-05,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-123879355",NA,NA,"Nitrogen","Suspended","0.266","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-09-09,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-07-05 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1010","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201243","Sample-Routine","Water","Surface Water",2022-07-05,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-123879446",NA,NA,"Nitrate","Dissolved","21.7","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-05 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",21.7,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"527","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201242","Sample-Routine","Water","Surface Water",2022-07-05,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123879505",NA,NA,"Nitrate","Dissolved","0.110","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-05 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.11,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2118","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201242","Sample-Routine","Water","Surface Water",2022-07-05,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123879538",NA,NA,"Nitrogen","Suspended","0.178","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-09-09,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-07-05 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.178,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1011","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201242","Sample-Routine","Water","Surface Water",2022-07-05,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123879629",NA,NA,"Nitrate","Dissolved","0.488","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-05 19:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.488,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"528","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201287","Sample-Routine","Water","Surface Water",2022-07-08,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123920277",NA,NA,"Nitrate","Dissolved","0.013","mg/l as N",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-08 18:30:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.013,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1012","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201287","Sample-Routine","Water","Surface Water",2022-07-08,"12:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-123920298",NA,NA,"Nitrate","Dissolved","0.056","mg/l asNO3",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-08 18:30:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.056,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"529","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201307","Quality Control Sample-Field Replicate","Water","Surface Water",2022-07-21,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-123993538",NA,NA,"Nitrate","Dissolved","0.068","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-21 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.068,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2119","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201307","Quality Control Sample-Field Replicate","Water","Surface Water",2022-07-21,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-123993571",NA,NA,"Nitrogen","Suspended","0.128","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-09-23,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-07-21 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.128,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1013","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201307","Quality Control Sample-Field Replicate","Water","Surface Water",2022-07-21,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-123993662",NA,NA,"Nitrate","Dissolved","0.300","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-21 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.3,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"530","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201308","Quality Control Sample-Field Replicate","Water","Surface Water",2022-07-21,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123993718",NA,NA,"Nitrate","Dissolved","5.94","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-21 15:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",5.94,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2120","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201308","Quality Control Sample-Field Replicate","Water","Surface Water",2022-07-21,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123993750",NA,NA,"Nitrogen","Suspended","0.404","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-09-23,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-07-21 15:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1014","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201308","Quality Control Sample-Field Replicate","Water","Surface Water",2022-07-21,"09:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-123993841",NA,NA,"Nitrate","Dissolved","26.3","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-21 15:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",26.3,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"531","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201309","Sample-Routine","Water","Surface Water",2022-07-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-123993891",NA,NA,"Nitrate","Dissolved","0.054","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-20 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.054,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1015","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201309","Sample-Routine","Water","Surface Water",2022-07-20,"14:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-123993901",NA,NA,"Nitrate","Dissolved","0.238","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-20 20:00:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.238,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"532","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201351","Sample-Routine","Water","Surface Water",2022-07-20,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-124079489",NA,NA,"Nitrate","Dissolved","0.033","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-20 20:15:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.033,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1016","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201351","Sample-Routine","Water","Surface Water",2022-07-20,"14:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-124079509",NA,NA,"Nitrate","Dissolved","0.148","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-20 20:15:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.148,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"533","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201352","Sample-Routine","Water","Surface Water",2022-07-20,"11:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-124079536",NA,NA,"Nitrate","Dissolved","0.163","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-20 17:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.163,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1017","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201352","Sample-Routine","Water","Surface Water",2022-07-20,"11:45:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-124079556",NA,NA,"Nitrate","Dissolved","0.719","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-20 17:45:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.719,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"534","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201353","Sample-Routine","Water","Surface Water",2022-07-27,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124079582","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-07-27 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1018","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201353","Sample-Routine","Water","Surface Water",2022-07-27,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124079602","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-07-27 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"535","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201354","Sample-Routine","Water","Surface Water",2022-07-22,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124079620","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.075","mg/l as N",NA,NA,"NWIS",6,NA,2022-07-22 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.075,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.075,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1019","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201354","Sample-Routine","Water","Surface Water",2022-07-22,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124079651","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.334","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-07-22 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.334,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.334,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"536","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201355","Sample-Routine","Water","Surface Water",2022-07-22,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124079667","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-07-22 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1020","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201355","Sample-Routine","Water","Surface Water",2022-07-22,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, low stage","Not applicable",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124079699","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-07-22 19:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"537","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201390","Sample-Routine","Water","Surface Water",2022-08-02,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-124087897","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-08-02 19:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1021","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201390","Sample-Routine","Water","Surface Water",2022-08-02,"13:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-124087906","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-08-02 19:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"538","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201394","Sample-Routine","Water","Surface Water",2022-08-04,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"Open-Mouth Bottle","NWIS-124088018",NA,NA,"Nitrate","Dissolved","0.046","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-04 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.046,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2121","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201394","Sample-Routine","Water","Surface Water",2022-08-04,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"Open-Mouth Bottle","NWIS-124088033",NA,NA,"Nitrogen","Suspended","0.213","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-10-17,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-08-04 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1022","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201394","Sample-Routine","Water","Surface Water",2022-08-04,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"Open-Mouth Bottle","NWIS-124088121",NA,NA,"Nitrate","Dissolved","0.204","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-04 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.204,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"539","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201395","Sample-Routine","Water","Surface Water",2022-08-04,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-124088175",NA,NA,"Nitrate","Dissolved","4.88","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-04 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.88,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2122","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201395","Sample-Routine","Water","Surface Water",2022-08-04,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-124088190",NA,NA,"Nitrogen","Suspended","0.333","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-10-17,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-08-04 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.333,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1023","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201395","Sample-Routine","Water","Surface Water",2022-08-04,"10:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-124088278",NA,NA,"Nitrate","Dissolved","21.6","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-04 16:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",21.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"540","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201393","Quality Control Sample-Field Replicate","Water","Surface Water",2022-07-27,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-124204816",NA,NA,"Nitrate","Dissolved","0.045","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-27 20:30:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.045,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1024","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201393","Quality Control Sample-Field Replicate","Water","Surface Water",2022-07-27,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10172200",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Open-Mouth Bottle","NWIS-124204826",NA,NA,"Nitrate","Dissolved","0.199","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-07-27 20:30:00,NA,"Stream",NA,"16020204","7.25","sq mi",NA,NA,"40.77994627000000","-111.8060450000000","24000","1","seconds","Interpolated from MAP.","NAD83","5403.38","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITRATE",0.199,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.77994627,-111.806045,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"541","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201527","Sample-Routine","Water","Surface Water",2022-08-18,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-124291778",NA,NA,"Nitrate","Dissolved","4.89","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-18 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",4.89,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2123","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201527","Sample-Routine","Water","Surface Water",2022-08-18,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-124291793",NA,NA,"Nitrogen","Suspended","0.093","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-10-31,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-08-18 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.093,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1025","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201527","Sample-Routine","Water","Surface Water",2022-08-18,"10:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-124291799",NA,NA,"Nitrate","Dissolved","21.7","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-18 16:30:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",21.7,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"542","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201526","Sample-Routine","Water","Surface Water",2022-08-18,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-124291837",NA,NA,"Nitrate","Dissolved","0.307","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-18 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.307,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2124","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201526","Sample-Routine","Water","Surface Water",2022-08-18,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-124291852","Not Detected",NA,"Nitrogen","Suspended",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-10-31,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-08-18 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.03,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1026","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201526","Sample-Routine","Water","Surface Water",2022-08-18,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"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","NWIS-124291857",NA,NA,"Nitrate","Dissolved","1.36","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-18 19:30:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.36,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"543","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201525","Sample-Routine","Water","Surface Water",2022-08-29,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle","NWIS-124291887",NA,NA,"Nitrate","Dissolved","0.251","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-29 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.251,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2125","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201525","Sample-Routine","Water","Surface Water",2022-08-29,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle","NWIS-124291922",NA,NA,"Nitrogen","Suspended","0.282","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-11-18,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-08-29 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1027","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201525","Sample-Routine","Water","Surface Water",2022-08-29,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10168000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"15","USGS parameter code 82398","10 or more equal width verticals, equal non-iso transit rate limited by velocity",NA,"Open-Mouth Bottle","NWIS-124291931",NA,NA,"Nitrate","Dissolved","1.11","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-08-29 18:00:00,NA,"Stream",NA,"16020204","46","sq mi",NA,NA,"40.66430556000000","-111.8988610000000",NA,"1","seconds","Interpolated from Digital MAP.","NAD83","4254.24","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.11,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.66430556,-111.898861,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"544","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201524","Sample-Routine","Water","Surface Water",2022-09-08,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-124291962",NA,NA,"Nitrate","Dissolved","6.46","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-09-08 19:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",6.46,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2126","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201524","Sample-Routine","Water","Surface Water",2022-09-08,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-124291977",NA,NA,"Nitrogen","Suspended","0.261","mg/l",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"49570",NA,NA,NA,NA,NA,NA,NA,NA,"COMB7","USGS","TPN, GF/F, combusion",NA,NA,"USGS-National Water Quality Lab, Denver, CO",2022-11-04,NA,NA,"Long Term Method Detection Level","0.03","mg/l",NA,NA,"NWIS",6,NA,2022-09-08 19:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","NonStandardized",NA,"NonStandardized","Not Reviewed","SUSPENDED","Accepted","NITROGEN_SUSPENDED_NA_MG/L",0.03,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1028","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201524","Sample-Routine","Water","Surface Water",2022-09-08,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"National Water Quality Assessment Program (NAWQA)",NA,"U.S. Geological Survey","USGS-10171000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-81 with Teflon cap and nozzle","NWIS-124292064",NA,NA,"Nitrate","Dissolved","28.6","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-09-08 19:00:00,NA,"Stream",NA,"16020204","3438","sq mi","3183","sq mi","40.73355737000000","-111.9232703000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4222.64","feet","0.13","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",28.6,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.73355737,-111.9232703,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"545","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201534","Sample-Routine","Water","Surface Water",2022-09-08,"10:30:00","MDT",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318605","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-08 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1029","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201534","Sample-Routine","Water","Surface Water",2022-09-08,"10:30:00","MDT",NA,NA,NA,NA,"1.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318615","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-08 16:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",1.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"546","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201535","Sample-Routine","Water","Surface Water",2022-09-08,"11:20:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318630","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-08 17:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1030","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201535","Sample-Routine","Water","Surface Water",2022-09-08,"11:20:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410422112200001",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318640","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-08 17:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.07271780000000","-112.3341186000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0727178,-112.3341186,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"547","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201536","Sample-Routine","Water","Surface Water",2022-09-08,"12:00:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318657","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-08 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1031","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201536","Sample-Routine","Water","Surface Water",2022-09-08,"12:00:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318667","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-08 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"548","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201537","Sample-Routine","Water","Surface Water",2022-09-08,"12:18:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318684","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.078","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-08 18:18:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.078,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.078,"MG/L AS N","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1032","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201537","Sample-Routine","Water","Surface Water",2022-09-08,"12:18:00","MDT",NA,NA,NA,NA,"6.0","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-405356112205601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318694","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.346","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-08 18:18:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"40.89882998000000","-112.3496756000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.346,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.89882998,-112.3496756,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.346,"MG/L ASNO3","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"549","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201538","Sample-Routine","Water","Surface Water",2022-09-08,"13:05:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318710","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.079","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-08 19:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.079,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.079,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1033","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201538","Sample-Routine","Water","Surface Water",2022-09-08,"13:05:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318719","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.349","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-08 19:05:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.349,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.349,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"550","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201539","Sample-Routine","Water","Surface Water",2022-09-08,"13:20:00","MDT",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318736","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-08 19:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1034","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201539","Sample-Routine","Water","Surface Water",2022-09-08,"13:20:00","MDT",NA,NA,NA,NA,"5.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-410644112382601",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318746","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-08 19:20:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.11215620000000","-112.6413570000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Interpolated from topographic map.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1121562,-112.641357,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",5.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"551","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201533","Sample-Routine","Water","Surface Water",2022-09-08,"10:23:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318760","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.08","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-08 16:23:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.08,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.08,"MG/L AS N","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1035","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201533","Sample-Routine","Water","Surface Water",2022-09-08,"10:23:00","MDT",NA,NA,NA,NA,"0.5","meters",NA,NA,NA,NA,NA,NA,NA,"Utah Division of Wildlife Resources, Salt Lake City","USGS-411116112244401",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"USGS","USGS","USGS",NA,"Unknown","NWIS-124318769","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.354","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-08 16:23:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.18771490000000","-112.4130094000000",NA,"1","seconds","Interpolated from MAP.","NAD83","4200","feet","10","feet","Altimeter.","NGVD29","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.354,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.1877149,-112.4130094,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.354,"MG/L ASNO3","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"552","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201554","Sample-Routine","Water","Surface Water",2022-09-07,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Other","NWIS-124350571","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.035","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-07 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.035,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.035,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1036","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201554","Sample-Routine","Water","Surface Water",2022-09-07,"14:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010026",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"50","USGS parameter code 82398","Point sample",NA,"Other","NWIS-124350581","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.157","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-07 20:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000",NA,".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.157,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.157,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"553","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201555","Sample-Routine","Water","Surface Water",2022-09-07,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124350605","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.04","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-07 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.04,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.04,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1037","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201555","Sample-Routine","Water","Surface Water",2022-09-07,"13:30:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10010025",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124350620","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.177","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-07 19:30:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.22086110000000","-112.7663889000000","24000",".5","seconds","Mapping grade GPS unit (handheld accuracy range 12 to 40 ft)","NAD83","4216.93","feet","0.1","feet","Reported method of determination.","NAVD88","US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.177,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.2208611,-112.7663889,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.177,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"554","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201560","Sample-Routine","Water","Surface Water",2022-09-08,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-124353854",NA,NA,"Nitrate","Dissolved","1.25","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-09-08 17:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",1.25,"MG/L AS N","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1038","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201560","Sample-Routine","Water","Surface Water",2022-09-08,"11:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10141000",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-81","NWIS-124353874",NA,NA,"Nitrate","Dissolved","5.54","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-09-08 17:00:00,NA,"Stream",NA,"16020102","2081","sq mi",NA,NA,"41.27827650000000","-112.0918866000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4200.22","feet","0.01","feet","Level or other surveyed method.","NAVD88","US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",5.54,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",41.2782765,-112.0918866,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"555","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201561","Sample-Routine","Water","Surface Water",2022-09-06,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124353904","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-06 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1039","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201561","Sample-Routine","Water","Surface Water",2022-09-06,"12:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-410401112134801",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124353924","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-06 18:00:00,NA,"Lake, Reservoir, Impoundment",NA,"16020310",NA,NA,NA,NA,"41.06688640000000","-112.2307802000000",NA,"1","seconds","Interpolated from MAP.","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",41.0668864,-112.2307802,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"556","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201559","Sample-Routine","Water","Surface Water",2022-09-08,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124353999","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.01","mg/l as N",NA,NA,"NWIS",6,NA,2022-09-08 19:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.01,"MG/L AS N","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",0.01,"MG/L AS N","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1040","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201559","Sample-Routine","Water","Surface Water",2022-09-08,"13:00:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey-Water Resources Discipline","USGS-10172630",NA,NA,NA,"Stable, low stage","Routine sample",NA,NA,"40","USGS parameter code 82398","Multiple verticals",NA,"US DH-95 plastic bottle","NWIS-124354019","Not Detected",NA,"Nitrate","Dissolved",NA,NA,NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,"Historical Lower Reporting Limit","0.044","mg/l asNO3",NA,NA,"NWIS",6,NA,2022-09-08 19:00:00,NA,"Stream",NA,"16020204",NA,NA,NA,NA,"40.81661107000000","-112.1007767000000",NA,"5","seconds","Interpolated from MAP.","NAD83","4194.01","feet","0.18","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.044,"MG/L ASNO3","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.81661107,-112.1007767,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",0.044,"MG/L ASNO3","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"557","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201589","Sample-Routine","Water","Surface Water",2022-09-21,"12:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-124387864",NA,NA,"Nitrate","Dissolved","0.015","mg/l as N",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"00618",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-09-21 18:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.015,"MG/L AS N","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L AS N",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1041","USGS-UT","USGS Utah Water Science Center","nwisut.01.02201589","Sample-Routine","Water","Surface Water",2022-09-21,"12:15:00","MDT",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"U.S. Geological Survey","USGS-09234500",NA,NA,NA,"Stable, normal stage","Routine sample",NA,NA,"10","USGS parameter code 82398","Equal width increment (ewi)",NA,"US DH-95 plastic bottle","NWIS-124387876",NA,NA,"Nitrate","Dissolved","0.067","mg/l asNO3",NA,"Preliminary",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"71851",NA,NA,NA,NA,NA,NA,NA,NA,"ALGOR","USGS","Computation by NWIS algorithm",NA,"NWIS User's Manual, QW System, Section 3.6.7",NA,NA,NA,NA,NA,NA,NA,NA,NA,"NWIS",6,NA,2022-09-21 18:15:00,NA,"Stream",NA,"14040106","19400","sq mi","15100","sq mi","40.90829296000000","-109.4229140000000","24000","1","seconds","Interpolated from MAP.","NAD83","5594.21","feet","0.12","feet","GNSS2 - Level 2 Quality Survey Grade Global Navigation Satellite System","NAVD88","US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITRATE",0.067,"MG/L ASNO3","Numeric","Not Reviewed","Uncensored",40.90829296,-109.422914,"N","Unknown","Not Reviewed","Not Reviewed",NA,"NonStandardized","Not Reviewed","DISSOLVED","Accepted","NITRATE_DISSOLVED_NA_MG/L ASNO3",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1042","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4917712-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"12:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871463617",NA,"as N","Nitrate","Total","2.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4917712-1014-LAB/results/871463617/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:30","STORET",7,NA,2020-10-14 19:39:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2870,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1043","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4917712-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"13:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871463628",NA,"as N","Nitrate","Total","3.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4917712-1111-LAB/results/871463628/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:31","STORET",7,NA,2020-11-11 20:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3700,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1044","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4917712-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"12:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871463639",NA,"as N","Nitrate","Total","5.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4917712-1209-LAB/results/871463639/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:31","STORET",7,NA,2020-12-09 19:33:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5520,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1045","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4994948-1013-LAB","Sample-Routine","Water",NA,2020-10-13,"08:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994948","Spring Ck south of Spring Ck Park tennis courts 2100 South, Lehi",NA,NA,NA,NA,"40.3620150000","-111.8380950000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871463738",NA,"as N","Nitrate","Total","2.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4994948-1013-LAB/results/871463738/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:33","STORET",7,NA,2020-10-13 15:46:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3620150000","-111.8380950000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2230,"UG/L","Numeric","Not Reviewed","Uncensored",40.362015,-111.838095,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1046","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4994948-1110-LAB","Sample-Routine","Water",NA,2020-11-10,"09:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994948","Spring Ck south of Spring Ck Park tennis courts 2100 South, Lehi",NA,NA,NA,NA,"40.3620150000","-111.8380950000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871463749",NA,"as N","Nitrate","Total","3.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4994948-1110-LAB/results/871463749/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:33","STORET",7,NA,2020-11-10 16:16:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3620150000","-111.8380950000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3220,"UG/L","Numeric","Not Reviewed","Uncensored",40.362015,-111.838095,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1047","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4994948-1208-LAB","Sample-Routine","Water",NA,2020-12-08,"09:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994948","Spring Ck south of Spring Ck Park tennis courts 2100 South, Lehi",NA,NA,NA,NA,"40.3620150000","-111.8380950000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871463760",NA,"as N","Nitrate","Total","3.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4994948-1208-LAB/results/871463760/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:34","STORET",7,NA,2020-12-08 16:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3620150000","-111.8380950000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3690,"UG/L","Numeric","Not Reviewed","Uncensored",40.362015,-111.838095,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1048","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4994952-1013-LAB","Sample-Routine","Water",NA,2020-10-13,"08:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871463859",NA,"as N","Nitrate","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4994952-1013-LAB/results/871463859/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:36","STORET",7,NA,2020-10-13 15:28:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1170,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1049","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4994952-1110-LAB","Sample-Routine","Water",NA,2020-11-10,"08:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871463870",NA,"as N","Nitrate","Total","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4994952-1110-LAB/results/871463870/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:36","STORET",7,NA,2020-11-10 15:51:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1610,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1050","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4994952-1208-LAB","Sample-Routine","Water",NA,2020-12-08,"08:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871463881",NA,"as N","Nitrate","Total","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4994952-1208-LAB/results/871463881/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:36","STORET",7,NA,2020-12-08 15:59:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1590,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1051","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4995043-1013-LAB","Sample-Routine","Water",NA,2020-10-13,"09:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464035",NA,"as N","Nitrate","Total","8.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995043-1013-LAB/results/871464035/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:39","STORET",7,NA,2020-10-13 16:16:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8960,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1052","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4995043-1110-LAB","Sample-Routine","Water",NA,2020-11-10,"09:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464046",NA,"as N","Nitrate","Total","8.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995043-1110-LAB/results/871464046/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:40","STORET",7,NA,2020-11-10 16:53:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8170,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1053","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4995043-1208-LAB","Sample-Routine","Water",NA,2020-12-08,"09:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464057",NA,"as N","Nitrate","Total","8.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995043-1208-LAB/results/871464057/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:40","STORET",7,NA,2020-12-08 16:58:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8320,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1054","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4995075-1013-LAB","Sample-Routine","Water",NA,2020-10-13,"09:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464156",NA,"as N","Nitrate","Total","2.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995075-1013-LAB/results/871464156/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:43","STORET",7,NA,2020-10-13 16:54:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2520,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1055","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4995075-1110-LAB","Sample-Routine","Water",NA,2020-11-10,"10:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464167",NA,"as N","Nitrate","Total","3.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995075-1110-LAB/results/871464167/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:43","STORET",7,NA,2020-11-10 17:13:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3220,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1056","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4995075-1208-LAB","Sample-Routine","Water",NA,2020-12-08,"10:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464178",NA,"as N","Nitrate","Total","3.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995075-1208-LAB/results/871464178/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:43","STORET",7,NA,2020-12-08 17:21:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3950,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1057","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4995210-1013-LAB","Sample-Routine","Water",NA,2020-10-13,"11:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464277",NA,"as N","Nitrate","Total","11.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995210-1013-LAB/results/871464277/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:45","STORET",7,NA,2020-10-13 18:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11800,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1058","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4995210-1110-LAB","Sample-Routine","Water",NA,2020-11-10,"12:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464288",NA,"as N","Nitrate","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995210-1110-LAB/results/871464288/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:45","STORET",7,NA,2020-11-10 19:34:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10500,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1059","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4995210-1208-LAB","Sample-Routine","Water",NA,2020-12-08,"12:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464299",NA,"as N","Nitrate","Total","12.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995210-1208-LAB/results/871464299/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:46","STORET",7,NA,2020-12-08 19:07:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12600,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1060","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4995575-1013-LAB","Sample-Routine","Water",NA,2020-10-13,"14:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464486",NA,"as N","Nitrate","Total","0.587","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995575-1013-LAB/results/871464486/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:48","STORET",7,NA,2020-10-13 21:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",587,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1061","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4995575-1110-LAB","Sample-Routine","Water",NA,2020-11-10,"15:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464497",NA,"as N","Nitrate","Total","0.634","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995575-1110-LAB/results/871464497/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:48","STORET",7,NA,2020-11-10 22:34:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",634,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1062","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4995575-1208-LAB","Sample-Routine","Water",NA,2020-12-08,"15:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464508",NA,"as N","Nitrate","Total","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995575-1208-LAB/results/871464508/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:48","STORET",7,NA,2020-12-08 22:27:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",531,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1063","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996003-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"12:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464606",NA,"as N","Nitrate","Total","3.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996003-1014-LAB/results/871464606/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:49","STORET",7,NA,2020-10-14 19:02:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3750,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1064","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996003-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"12:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464617",NA,"as N","Nitrate","Total","5.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996003-1111-LAB/results/871464617/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:49","STORET",7,NA,2020-11-11 19:43:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5730,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1065","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996003-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"11:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464628",NA,"as N","Nitrate","Total","7.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996003-1209-LAB/results/871464628/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:49","STORET",7,NA,2020-12-09 18:59:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7230,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1066","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996020-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464726",NA,"as N","Nitrate","Total","5.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996020-1014-LAB/results/871464726/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:51","STORET",7,NA,2020-10-14 18:40:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5370,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1067","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996020-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"12:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464737",NA,"as N","Nitrate","Total","6.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996020-1111-LAB/results/871464737/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:51","STORET",7,NA,2020-11-11 19:29:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6990,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1068","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996020-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464748",NA,"as N","Nitrate","Total","8.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996020-1209-LAB/results/871464748/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:51","STORET",7,NA,2020-12-09 18:46:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8550,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1069","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996022-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"11:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464846",NA,"as N","Nitrate","Total","2.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996022-1014-LAB/results/871464846/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:52","STORET",7,NA,2020-10-14 18:24:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2830,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1070","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996022-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"12:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464857",NA,"as N","Nitrate","Total","4.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996022-1111-LAB/results/871464857/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:52","STORET",7,NA,2020-11-11 19:13:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4060,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1071","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996022-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"11:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464868",NA,"as N","Nitrate","Total","4.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996022-1209-LAB/results/871464868/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:52","STORET",7,NA,2020-12-09 18:37:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4390,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1072","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996100-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464966",NA,"as N","Nitrate","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996100-1014-LAB/results/871464966/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:53","STORET",7,NA,2020-10-14 17:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1360,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1073","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996100-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"11:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464977",NA,"as N","Nitrate","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996100-1111-LAB/results/871464977/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:54","STORET",7,NA,2020-11-11 18:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1120,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1074","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996100-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"10:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871464988",NA,"as N","Nitrate","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996100-1209-LAB/results/871464988/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:54","STORET",7,NA,2020-12-09 17:59:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1190,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1075","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996190-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"09:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465086",NA,"as N","Nitrate","Total","9.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996190-1014-LAB/results/871465086/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:55","STORET",7,NA,2020-10-14 16:38:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9450,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1076","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996190-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"09:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465097",NA,"as N","Nitrate","Total","9.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996190-1111-LAB/results/871465097/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:56","STORET",7,NA,2020-11-11 16:37:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9570,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1077","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996190-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"09:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465108",NA,"as N","Nitrate","Total","6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996190-1209-LAB/results/871465108/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:56","STORET",7,NA,2020-12-09 16:43:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6000,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1078","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996275-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"10:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465206",NA,"as N","Nitrate","Total","9.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996275-1014-LAB/results/871465206/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:57","STORET",7,NA,2020-10-14 17:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9360,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1079","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996275-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"10:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465217",NA,"as N","Nitrate","Total","9.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996275-1111-LAB/results/871465217/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:57","STORET",7,NA,2020-11-11 17:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9800,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1080","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996275-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465228",NA,"as N","Nitrate","Total","7.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996275-1209-LAB/results/871465228/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:57","STORET",7,NA,2020-12-09 17:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7280,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1081","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996410-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465326",NA,"as N","Nitrate","Total","0.973","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996410-1014-LAB/results/871465326/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:59","STORET",7,NA,2020-10-14 16:25:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",973,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1082","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996410-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"09:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465337",NA,"as N","Nitrate","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996410-1111-LAB/results/871465337/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:59","STORET",7,NA,2020-11-11 16:22:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1260,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1083","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996410-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"09:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465348",NA,"as N","Nitrate","Total","0.991","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996410-1209-LAB/results/871465348/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:23:59","STORET",7,NA,2020-12-09 16:28:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",991,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1084","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996540-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"10:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465446",NA,"as N","Nitrate","Total","13.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996540-1014-LAB/results/871465446/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:01","STORET",7,NA,2020-10-14 17:07:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",13240,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1085","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996540-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"10:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465457",NA,"as N","Nitrate","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996540-1111-LAB/results/871465457/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:01","STORET",7,NA,2020-11-11 17:08:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10500,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1086","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996540-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"10:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465468",NA,"as N","Nitrate","Total","11.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996540-1209-LAB/results/871465468/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:01","STORET",7,NA,2020-12-09 17:13:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11200,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1087","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996550-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"09:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465566",NA,"as N","Nitrate","Total","18.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996550-1014-LAB/results/871465566/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:03","STORET",7,NA,2020-10-14 16:07:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",18140,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1088","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996550-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"09:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465577",NA,"as N","Nitrate","Total","22.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996550-1111-LAB/results/871465577/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:03","STORET",7,NA,2020-11-11 16:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",22800,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1089","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996550-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465588",NA,"as N","Nitrate","Total","19.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996550-1209-LAB/results/871465588/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:03","STORET",7,NA,2020-12-09 16:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",19860,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1090","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996560-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"08:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465675",NA,"as N","Nitrate","Total","20","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996560-1014-LAB/results/871465675/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:05","STORET",7,NA,2020-10-14 15:56:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",20000,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1091","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996560-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"08:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465686",NA,"as N","Nitrate","Total","26.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996560-1111-LAB/results/871465686/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:05","STORET",7,NA,2020-11-11 15:53:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",26100,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1092","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996560-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465697",NA,"as N","Nitrate","Total","23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996560-1209-LAB/results/871465697/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:05","STORET",7,NA,2020-12-09 16:00:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",23000,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1093","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996566-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"10:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465795",NA,"as N","Nitrate","Total","6.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996566-1014-LAB/results/871465795/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:07","STORET",7,NA,2020-10-14 17:19:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6600,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1094","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996566-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"10:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465806",NA,"as N","Nitrate","Total","9.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996566-1111-LAB/results/871465806/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:08","STORET",7,NA,2020-11-11 17:19:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9690,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1095","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996566-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465817",NA,"as N","Nitrate","Total","11.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996566-1209-LAB/results/871465817/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:08","STORET",7,NA,2020-12-09 17:24:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11400,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1096","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996570-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"08:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465915",NA,"as N","Nitrate","Total","2.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996570-1014-LAB/results/871465915/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:10","STORET",7,NA,2020-10-14 15:43:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2670,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1097","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996570-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"08:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465926",NA,"as N","Nitrate","Total","2.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996570-1111-LAB/results/871465926/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:10","STORET",7,NA,2020-11-11 15:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2360,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1098","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996570-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"08:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871465937",NA,"as N","Nitrate","Total","0.939","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996570-1209-LAB/results/871465937/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:10","STORET",7,NA,2020-12-09 15:48:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",939,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1099","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4996680-1013-LAB","Sample-Routine","Water",NA,2020-10-13,"13:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871466036",NA,"as N","Nitrate","Total","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4996680-1013-LAB/results/871466036/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:12","STORET",7,NA,2020-10-13 20:09:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",246,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1100","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4996680-1110-LAB","Sample-Routine","Water",NA,2020-11-10,"14:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871466047",NA,"as N","Nitrate","Total","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4996680-1110-LAB/results/871466047/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:12","STORET",7,NA,2020-11-10 21:12:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",245,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1101","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4996680-1208-LAB","Sample-Routine","Water",NA,2020-12-08,"13:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-871466058",NA,"as N","Nitrate","Total","0.298","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4996680-1208-LAB/results/871466058/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2020-12-28T16:24:12","STORET",7,NA,2020-12-08 20:23:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",298,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1102","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-5919860-1014-LAB","Sample-Routine","Water",NA,2020-10-14,"13:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-5919860","Beer Creek at 6400 S Road",NA,NA,NA,NA,"40.1144010000","-111.7929820000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-872082644",NA,"as N","Nitrate","Total","1.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-5919860-1014-LAB/results/872082644/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2021-01-08T13:36:26","STORET",7,NA,2020-10-14 20:09:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1144010000","-111.7929820000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1710,"UG/L","Numeric","Not Reviewed","Uncensored",40.114401,-111.792982,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1103","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-5919860-1111-LAB","Sample-Routine","Water",NA,2020-11-11,"13:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-5919860","Beer Creek at 6400 S Road",NA,NA,NA,NA,"40.1144010000","-111.7929820000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-872082655",NA,"as N","Nitrate","Total","1.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-5919860-1111-LAB/results/872082655/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2021-01-08T13:36:27","STORET",7,NA,2020-11-11 20:47:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1144010000","-111.7929820000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1930,"UG/L","Numeric","Not Reviewed","Uncensored",40.114401,-111.792982,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1104","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-5919860-1209-LAB","Sample-Routine","Water",NA,2020-12-09,"12:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-5919860","Beer Creek at 6400 S Road",NA,NA,NA,NA,"40.1144010000","-111.7929820000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-872082666",NA,"as N","Nitrate","Total","6.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-5919860-1209-LAB/results/872082666/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2021-01-08T13:36:27","STORET",7,NA,2020-12-09 19:57:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1144010000","-111.7929820000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6440,"UG/L","Numeric","Not Reviewed","Uncensored",40.114401,-111.792982,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1105","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4995222-1013-LAB","Sample-Routine","Water",NA,2020-10-13,"10:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-872083510",NA,"as N","Nitrate","Total","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1020-4995222-1013-LAB/results/872083510/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2021-01-08T13:46:18","STORET",7,NA,2020-10-13 17:19:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",653,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1106","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4995222-1110-LAB","Sample-Routine","Water",NA,2020-11-10,"10:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-872083534",NA,"as N","Nitrate","Total","2.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1120-4995222-1110-LAB/results/872083534/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2021-01-08T13:46:18","STORET",7,NA,2020-11-10 17:34:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2390,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1107","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4995222-1208-LAB","Sample-Routine","Water",NA,2020-12-08,"10:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-872083559",NA,"as N","Nitrate","Total","3.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1220-4995222-1208-LAB/results/872083559/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2021-01-08T13:46:19","STORET",7,NA,2020-12-08 17:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3960,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1108","952307_WQX","LT Environmental Inc.","952307_WQX-L1286923-01","Sample-Routine","Water",NA,2020-11-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-4933370","SW-05",NA,NA,NA,NA,"39.8424877830","-109.9160602910","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle","STORET-875331626",NA,"as N","Nitrate","Total","0.175","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1286923-01/results/875331626/resdetectqntlmts","Practical Quantitation Limit","0.1","mg/L",NA,"2021-02-08T12:01:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"14060005",NA,NA,NA,NA,"39.8424877830","-109.9160602910",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",175,"UG/L","Numeric","Not Reviewed","Uncensored",39.842487783,-109.916060291,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1109","952307_WQX","LT Environmental Inc.","952307_WQX-L1286944-01","Quality Control Sample-Blind Duplicate","Water",NA,2020-11-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-4933370","SW-05",NA,NA,NA,NA,"39.8424877830","-109.9160602910","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle","STORET-875331808",NA,"as N","Nitrate","Total","0.164","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1286944-01/results/875331808/resdetectqntlmts","Practical Quantitation Limit","0.1","mg/L",NA,"2021-02-08T12:01:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"14060005",NA,NA,NA,NA,"39.8424877830","-109.9160602910",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","QC_duplicate","Not Reviewed","WATER","NITRATE",164,"UG/L","Numeric","Not Reviewed","Uncensored",39.842487783,-109.916060291,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1110","952307_WQX","LT Environmental Inc.","952307_WQX-L1287560-01","Sample-Routine","Water",NA,2020-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-4933476","SW-09",NA,NA,NA,NA,"40.0721394630","-109.8575265990","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle","STORET-875331995",NA,"as N","Nitrate","Total","4.55","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1287560-01/results/875331995/resdetectqntlmts","Practical Quantitation Limit","0.1","mg/L",NA,"2021-02-08T12:01:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"14060005",NA,NA,NA,NA,"40.0721394630","-109.8575265990",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4550,"UG/L","Numeric","Not Reviewed","Uncensored",40.072139463,-109.857526599,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1111","952307_WQX","LT Environmental Inc.","952307_WQX-L1287638-01","Sample-Routine","Water",NA,2020-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-4933480","SW-08",NA,NA,NA,NA,"40.0827104690","-109.8737316460","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle","STORET-875332182",NA,"as N","Nitrate","Total","4.75","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1287638-01/results/875332182/resdetectqntlmts","Practical Quantitation Limit","0.1","mg/L",NA,"2021-02-08T12:01:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"14060005",NA,NA,NA,NA,"40.0827104690","-109.8737316460",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4750,"UG/L","Numeric","Not Reviewed","Uncensored",40.082710469,-109.873731646,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1112","952307_WQX","LT Environmental Inc.","952307_WQX-L1287642-01","Sample-Routine","Water",NA,2020-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-4937020","SW-11",NA,NA,NA,NA,"40.0849676760","-109.6757471220","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle","STORET-875332368",NA,"as N","Nitrate","Total","0.0547","mg/L","H;J","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1287642-01/results/875332368/resdetectqntlmts","Practical Quantitation Limit","0.1","mg/L",NA,"2021-02-08T12:01:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"14060001",NA,NA,NA,NA,"40.0849676760","-109.6757471220",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",54.7,"UG/L","Numeric","Pass","Uncensored",40.084967676,-109.675747122,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1113","952307_WQX","LT Environmental Inc.","952307_WQX-L1288466-01","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-Gasco Well","Gasco Well",NA,NA,NA,NA,"40.0019823170","-109.9267343060","LTE_SP","952307_WQX","Well water collection by submergible pump",NA,"Pump/Submersible","STORET-875332558","Not Detected","as N","Nitrate","Total",NA,NA,"H","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1288466-01/results/875332558/resdetectqntlmts","Practical Quantitation Limit","2","mg/L",NA,"2021-02-08T12:02:00","STORET",NA,NA,NA,NA,"Well",NA,"14060005",NA,NA,NA,NA,"40.0019823170","-109.9267343060",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2000,"UG/L","Result Value/Unit Copied from Detection Limit","Suspect","Non-Detect",40.001982317,-109.926734306,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1114","952307_WQX","LT Environmental Inc.","952307_WQX-L1288246-01","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-GW-15","GW-15",NA,NA,NA,NA,"40.0076920160","-109.7642711150","LTE_Bailer","952307_WQX","Well water collection by bailer",NA,"Pump/Bailer","STORET-875332749","Not Detected","as N","Nitrate","Total",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1288246-01/results/875332749/resdetectqntlmts","Practical Quantitation Limit","0.1","mg/L",NA,"2021-02-08T12:02:03","STORET",NA,NA,NA,NA,"Well",NA,"14060005",NA,NA,NA,NA,"40.0076920160","-109.7642711150",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.007692016,-109.764271115,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1115","952307_WQX","LT Environmental Inc.","952307_WQX-L1288244-01","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-GW-22","GW-22",NA,NA,NA,NA,"40.0202836990","-109.7489583640","LTE_Bailer","952307_WQX","Well water collection by bailer",NA,"Pump/Bailer","STORET-875332940","Not Detected","as N","Nitrate","Total",NA,NA,"H","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1288244-01/results/875332940/resdetectqntlmts","Practical Quantitation Limit","10","mg/L",NA,"2021-02-08T12:02:05","STORET",NA,NA,NA,NA,"Well",NA,"14060005",NA,NA,NA,NA,"40.0202836990","-109.7489583640",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10000,"UG/L","Result Value/Unit Copied from Detection Limit","Suspect","Non-Detect",40.020283699,-109.748958364,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",10,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1116","952307_WQX","LT Environmental Inc.","952307_WQX-L1286941-01","Sample-Routine","Water",NA,2020-11-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-Rye Spring 3","Rye Spring 3",NA,NA,NA,NA,"39.8545350100","110.2910545200","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle","STORET-875333128",NA,"as N","Nitrate","Total","0.626","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1286941-01/results/875333128/resdetectqntlmts","Practical Quantitation Limit","0.1","mg/L",NA,"2021-02-08T12:02:07","STORET",NA,NA,NA,NA,"Spring",NA,NA,NA,NA,NA,NA,"39.8545350100","110.2910545200",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",626,"UG/L","Numeric","Not Reviewed","Uncensored",39.85453501,110.29105452,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1117","952307_WQX","LT Environmental Inc.","952307_WQX-L1286916-01","Sample-Routine","Water",NA,2020-11-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"GASCO - 030812003","Long-Term Monitoring Plan for Water Resources",NA,"952307_WQX-Unnamed Spring 2","Unnamed Spring 2",NA,NA,NA,NA,"40.0125260000","-110.0080130000","LTE_SWC","952307_WQX","Surface water collection",NA,"Water Bottle","STORET-875333312",NA,"as N","Nitrate","Total","0.381","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"9056","USEPA","Anion Chromatography Method",NA,NA,NA,2020-11-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/952307_WQX/activities/952307_WQX-L1286916-01/results/875333312/resdetectqntlmts","Practical Quantitation Limit","0.1","mg/L",NA,"2021-02-08T12:02:09","STORET",NA,NA,NA,NA,"Spring",NA,"14060005",NA,NA,NA,NA,"40.0125260000","-110.0080130000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Baseline water quality monitoring in the Uinta Basin, Utah",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",381,"UG/L","Numeric","Not Reviewed","Uncensored",40.012526,-110.008013,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1118","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-GW03:202012070920:SR","Sample-Routine","Water",NA,2020-12-07,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-GW03","EDA special project",NA,NA,NA,NA,"40.2131055600","-109.7702916700","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492310",NA,"as N","Nitrate","Unfiltered","0.264","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW03%3A202012070920%3ASR/results/876492310/resdetectqntlmts","Laboratory Reporting Level","0.1","mg/L",NA,"2021-02-17T12:14:07","STORET",7,NA,2020-12-07 16:20:00,NA,"Well","NWNE Sec 21 T3S R2E","14060003",NA,NA,NA,NA,"40.2131055600","-109.7702916700",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,"80","ft","as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",264,"UG/L","Numeric","Not Reviewed","Uncensored",40.21310556,-109.77029167,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-GW03:202012070920:SR","Sample-Routine","Water",NA,2020-12-07,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-GW03","EDA special project",NA,NA,NA,NA,"40.2131055600","-109.7702916700","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492313","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/",NA,2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW03%3A202012070920%3ASR/results/876492313/resdetectqntlmts","Laboratory Reporting Level","0.25","mg/L",NA,"2021-02-17T12:14:07","STORET",7,NA,2020-12-07 16:20:00,NA,"Well","NWNE Sec 21 T3S R2E","14060003",NA,NA,NA,NA,"40.2131055600","-109.7702916700",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,"80","ft","as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",250,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.21310556,-109.77029167,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.25,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1119","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-GW04:202012090950:SR","Sample-Routine","Water",NA,2020-12-09,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-GW04","EDA special project",NA,NA,NA,NA,"40.1710083300","-109.7627250000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492421","Not Detected","as N","Nitrate","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW04%3A202012090950%3ASR/results/876492421/resdetectqntlmts","Laboratory Reporting Level","0.1","mg/L",NA,"2021-02-17T12:14:08","STORET",7,NA,2020-12-09 16:50:00,NA,"Well","Lot 4 Sec 3 T4S R2E","14060003",NA,NA,NA,NA,"40.1710083300","-109.7627250000",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,"80","ft","as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.17100833,-109.762725,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-GW04:202012090950:SR","Sample-Routine","Water",NA,2020-12-09,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-GW04","EDA special project",NA,NA,NA,NA,"40.1710083300","-109.7627250000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492424","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/",NA,2020-12-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW04%3A202012090950%3ASR/results/876492424/resdetectqntlmts","Laboratory Reporting Level","0.25","mg/L",NA,"2021-02-17T12:14:08","STORET",7,NA,2020-12-09 16:50:00,NA,"Well","Lot 4 Sec 3 T4S R2E","14060003",NA,NA,NA,NA,"40.1710083300","-109.7627250000",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,"80","ft","as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",250,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.17100833,-109.762725,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.25,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1120","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-GW08:202012090900:SR","Sample-Routine","Water",NA,2020-12-09,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-GW08","EDA special project",NA,NA,NA,NA,"40.1970805600","-109.7817111100","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492532",NA,"as N","Nitrate","Unfiltered","0.125","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW08%3A202012090900%3ASR/results/876492532/resdetectqntlmts","Laboratory Reporting Level","0.1","mg/L",NA,"2021-02-17T12:14:09","STORET",7,NA,2020-12-09 16:00:00,NA,"Well","NWNW Sec 28 T3S R2E","14060003",NA,NA,NA,NA,"40.1970805600","-109.7817111100",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,"60","ft","as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",125,"UG/L","Numeric","Not Reviewed","Uncensored",40.19708056,-109.78171111,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-GW08:202012090900:SR","Sample-Routine","Water",NA,2020-12-09,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-GW08","EDA special project",NA,NA,NA,NA,"40.1970805600","-109.7817111100","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492535","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/",NA,2020-12-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-GW08%3A202012090900%3ASR/results/876492535/resdetectqntlmts","Laboratory Reporting Level","0.25","mg/L",NA,"2021-02-17T12:14:09","STORET",7,NA,2020-12-09 16:00:00,NA,"Well","NWNW Sec 28 T3S R2E","14060003",NA,NA,NA,NA,"40.1970805600","-109.7817111100",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,"60","ft","as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",250,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.19708056,-109.78171111,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.25,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1121","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW01:202012070840:SR","Sample-Routine","Water",NA,2020-12-07,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW01","EDA Special project",NA,NA,NA,NA,"40.2415777800","-109.8594277800","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492642",NA,"as N","Nitrate","Unfiltered","0.349","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW01%3A202012070840%3ASR/results/876492642/resdetectqntlmts","Laboratory Reporting Level","0.1","mg/L",NA,"2021-02-17T12:14:11","STORET",7,NA,2020-12-07 15:40:00,NA,"River/Stream","NENE Sec 10 T3S R1E","14060003",NA,NA,NA,NA,"40.2415777800","-109.8594277800",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",349,"UG/L","Numeric","Not Reviewed","Uncensored",40.24157778,-109.85942778,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW01:202012070840:SR","Sample-Routine","Water",NA,2020-12-07,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW01","EDA Special project",NA,NA,NA,NA,"40.2415777800","-109.8594277800","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492644","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/",NA,2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW01%3A202012070840%3ASR/results/876492644/resdetectqntlmts","Laboratory Reporting Level","0.25","mg/L",NA,"2021-02-17T12:14:11","STORET",7,NA,2020-12-07 15:40:00,NA,"River/Stream","NENE Sec 10 T3S R1E","14060003",NA,NA,NA,NA,"40.2415777800","-109.8594277800",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",250,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.24157778,-109.85942778,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.25,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1122","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW02:202012071045:SR","Sample-Routine","Water",NA,2020-12-07,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW02","EDA special project",NA,NA,NA,NA,"40.1929611100","-109.9158194400","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492744","Not Detected","as N","Nitrate","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW02%3A202012071045%3ASR/results/876492744/resdetectqntlmts","Laboratory Reporting Level","0.1","mg/L",NA,"2021-02-17T12:14:12","STORET",7,NA,2020-12-07 17:45:00,NA,"River/Stream","Lot 1 Sec 30 T3S R1E, NWSW Sec 29 T3S R1E","14060003",NA,NA,NA,NA,"40.1929611100","-109.9158194400",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.19296111,-109.91581944,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW02:202012071045:SR","Sample-Routine","Water",NA,2020-12-07,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW02","EDA special project",NA,NA,NA,NA,"40.1929611100","-109.9158194400","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492747","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/",NA,2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW02%3A202012071045%3ASR/results/876492747/resdetectqntlmts","Laboratory Reporting Level","0.25","mg/L",NA,"2021-02-17T12:14:12","STORET",7,NA,2020-12-07 17:45:00,NA,"River/Stream","Lot 1 Sec 30 T3S R1E, NWSW Sec 29 T3S R1E","14060003",NA,NA,NA,NA,"40.1929611100","-109.9158194400",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",250,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.19296111,-109.91581944,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.25,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1123","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW03:202012071000:SR","Sample-Routine","Water",NA,2020-12-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW03","EDA special project",NA,NA,NA,NA,"40.2067166700","-109.8592388900","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492847","Not Detected","as N","Nitrate","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW03%3A202012071000%3ASR/results/876492847/resdetectqntlmts","Laboratory Reporting Level","0.1","mg/L",NA,"2021-02-17T12:14:13","STORET",7,NA,2020-12-07 17:00:00,NA,"River/Stream","SESE Sec 17 T3S R2E, NWSW Sec 23 T3S R1E","14060003",NA,NA,NA,NA,"40.2067166700","-109.8592388900",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.20671667,-109.85923889,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW03:202012071000:SR","Sample-Routine","Water",NA,2020-12-07,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW03","EDA special project",NA,NA,NA,NA,"40.2067166700","-109.8592388900","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492850","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/",NA,2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW03%3A202012071000%3ASR/results/876492850/resdetectqntlmts","Laboratory Reporting Level","0.25","mg/L",NA,"2021-02-17T12:14:13","STORET",7,NA,2020-12-07 17:00:00,NA,"River/Stream","SESE Sec 17 T3S R2E, NWSW Sec 23 T3S R1E","14060003",NA,NA,NA,NA,"40.2067166700","-109.8592388900",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",250,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.20671667,-109.85923889,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.25,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1124","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW04:202012070730:SR","Sample-Routine","Water",NA,2020-12-07,"07:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW04","EDA special project",NA,NA,NA,NA,"40.2329166700","-109.8021833300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492951",NA,"as N","Nitrate","Unfiltered","0.252","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW04%3A202012070730%3ASR/results/876492951/resdetectqntlmts","Laboratory Reporting Level","0.1","mg/L",NA,"2021-02-17T12:14:14","STORET",7,NA,2020-12-07 14:30:00,NA,"River/Stream","SWSW Sec 8 T3S R2E","14060003",NA,NA,NA,NA,"40.2329166700","-109.8021833300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",252,"UG/L","Numeric","Not Reviewed","Uncensored",40.23291667,-109.80218333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW04:202012070730:SR","Sample-Routine","Water",NA,2020-12-07,"07:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW04","EDA special project",NA,NA,NA,NA,"40.2329166700","-109.8021833300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876492953","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/",NA,2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW04%3A202012070730%3ASR/results/876492953/resdetectqntlmts","Laboratory Reporting Level","0.25","mg/L",NA,"2021-02-17T12:14:14","STORET",7,NA,2020-12-07 14:30:00,NA,"River/Stream","SWSW Sec 8 T3S R2E","14060003",NA,NA,NA,NA,"40.2329166700","-109.8021833300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",250,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.23291667,-109.80218333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.25,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1125","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW08:202012090740:SR","Sample-Routine","Water",NA,2020-12-09,"07:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW08","EDA special project",NA,NA,NA,NA,"40.1520694400","-109.7411805600","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876493053","Not Detected","as N","Nitrate","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW08%3A202012090740%3ASR/results/876493053/resdetectqntlmts","Laboratory Reporting Level","0.1","mg/L",NA,"2021-02-17T12:14:15","STORET",7,NA,2020-12-09 14:40:00,NA,"River/Stream","Lot 7 Sec 11 T4S R2E","14060003",NA,NA,NA,NA,"40.1520694400","-109.7411805600",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.15206944,-109.74118056,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SW08:202012090740:SR","Sample-Routine","Water",NA,2020-12-09,"07:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Randlett EDA","Randlett EDA Programmatic Environmental Assessment",NA,"NTHRNUTE-SW08","EDA special project",NA,NA,NA,NA,"40.1520694400","-109.7411805600","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-876493056","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/",NA,2020-12-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SW08%3A202012090740%3ASR/results/876493056/resdetectqntlmts","Laboratory Reporting Level","0.25","mg/L",NA,"2021-02-17T12:14:15","STORET",7,NA,2020-12-09 14:40:00,NA,"River/Stream","Lot 7 Sec 11 T4S R2E","14060003",NA,NA,NA,NA,"40.1520694400","-109.7411805600",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Randlett EDA Programmatic Environmental Assessment",NA,"N",NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",250,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.15206944,-109.74118056,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.25,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1126","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4992070-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824693",NA,"as N","Nitrate","Total","5.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:16","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5400,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1127","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4992070-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824706",NA,"as N","Nitrate","Total","2.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:16","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2530,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1128","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4992070-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824719",NA,"as N","Nitrate","Total","5.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:16","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5200,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1129","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4994600-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824758",NA,"as N","Nitrate","Total","0.841","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:17","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",841,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1130","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4994600-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824771",NA,"as N","Nitrate","Total","2.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:17","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2050,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1131","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4994600-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824784",NA,"as N","Nitrate","Total","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:17","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1350,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1132","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4992290-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824823",NA,"as N","Nitrate","Total","6.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:17","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6760,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1133","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4992290-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824836",NA,"as N","Nitrate","Total","6.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:17","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6490,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1134","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4992290-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824849",NA,"as N","Nitrate","Total","14.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:17","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",14100,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1135","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4991860-1022-LAB","Sample-Routine","Water",NA,2020-10-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824888",NA,"as N","Nitrate","Total","6.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:17","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6040,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1136","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4991860-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824913",NA,"as N","Nitrate","Total","6.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:18","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6280,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1137","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4992320-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824952",NA,"as N","Nitrate","Total","7.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:18","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7620,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1138","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4992320-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824965",NA,"as N","Nitrate","Total","6.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:18","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6800,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1139","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4992320-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883824978",NA,"as N","Nitrate","Total","15.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:18","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15800,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1140","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4991900-1022-LAB","Sample-Routine","Water",NA,2020-10-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825017",NA,"as N","Nitrate","Total","6.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:18","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6020,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1141","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4991900-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825030",NA,"as N","Nitrate","Total","4.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:18","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4210,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1142","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4991900-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825043",NA,"as N","Nitrate","Total","5.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:18","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5280,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1143","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4992880-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825082",NA,"as N","Nitrate","Total","3.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:19","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3550,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1144","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4992880-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825095",NA,"as N","Nitrate","Total","3.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:19","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3080,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1145","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4992880-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825108",NA,"as N","Nitrate","Total","3.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:19","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3790,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1146","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4991940-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825147",NA,"as N","Nitrate","Total","5.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:19","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5300,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1147","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4991940-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825172",NA,"as N","Nitrate","Total","5.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:19","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5090,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1148","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4994100-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825211",NA,"as N","Nitrate","Total","4.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:19","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4920,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1149","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4994100-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825224",NA,"as N","Nitrate","Total","3.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:19","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3490,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1150","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4994100-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825237",NA,"as N","Nitrate","Total","5.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:19","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5280,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1151","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4994170-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825276",NA,"as N","Nitrate","Total","3.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:20","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3080,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1152","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4994170-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825289",NA,"as N","Nitrate","Total","3.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:20","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3230,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1153","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4994170-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825302",NA,"as N","Nitrate","Total","4.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:20","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4140,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1154","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4994270-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825341",NA,"as N","Nitrate","Total","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:20","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2480,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1155","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4994270-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825354",NA,"as N","Nitrate","Total","3.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:20","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3150,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1156","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4994270-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825367",NA,"as N","Nitrate","Total","4.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:20","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4060,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1157","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4992950-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825406",NA,"as N","Nitrate","Total","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:20","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",562,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1158","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4992950-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825419",NA,"as N","Nitrate","Total","0.921","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:21","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",921,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1159","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4992950-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825432",NA,"as N","Nitrate","Total","0.595","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:21","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",595,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1160","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4990890-1022-LAB","Sample-Routine","Water",NA,2020-10-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825471",NA,"as N","Nitrate","Total","5.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:21","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5590,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1161","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4990890-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825496",NA,"as N","Nitrate","Total","6.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:21","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6610,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1162","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4991820-1022-LAB","Sample-Routine","Water",NA,2020-10-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825535",NA,"as N","Nitrate","Total","6.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:22","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6450,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1163","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4991820-1217-LAB","Sample-Routine","Water",NA,2020-12-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825560",NA,"as N","Nitrate","Total","6.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:22","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6300,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1164","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4992500-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825599",NA,"as N","Nitrate","Total","16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:22","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",16000,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1165","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4992500-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825612",NA,"as N","Nitrate","Total","9.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:22","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9980,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1166","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4992500-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825625",NA,"as N","Nitrate","Total","26.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:22","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",26400,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1167","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4993580-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825664",NA,"as N","Nitrate","Total","0.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:23","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",880,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1168","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4993580-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825677",NA,"as N","Nitrate","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:23","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1150,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1169","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4993580-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825690",NA,"as N","Nitrate","Total","0.841","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:23","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",841,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1170","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4991800-1022-LAB","Sample-Routine","Water",NA,2020-10-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825729",NA,"as N","Nitrate","Total","7.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:23","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7060,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1171","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4991800-1217-LAB","Sample-Routine","Water",NA,2020-12-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825754",NA,"as N","Nitrate","Total","5.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:24","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5960,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1172","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4992540-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825793",NA,"as N","Nitrate","Total","2.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:24","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2070,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1173","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4992540-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825806",NA,"as N","Nitrate","Total","2.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:24","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2520,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1174","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4992540-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825819",NA,"as N","Nitrate","Total","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:24","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1590,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1175","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4992480-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825858",NA,"as N","Nitrate","Total","14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:24","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",14000,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1176","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4992480-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825871",NA,"as N","Nitrate","Total","9.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:24","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9630,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1177","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4992480-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825884",NA,"as N","Nitrate","Total","24.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:24","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",24900,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1178","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4994730-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825923",NA,"as N","Nitrate","Total","0.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:25","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",790,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1179","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4994730-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825936",NA,"as N","Nitrate","Total","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:25","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1670,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1180","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4994730-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825949",NA,"as N","Nitrate","Total","0.999","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:25","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",999,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1181","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4990780-1022-LAB","Sample-Routine","Water",NA,2020-10-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883825988",NA,"as N","Nitrate","Total","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:26","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",250,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1182","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4990780-1119-LAB","Sample-Routine","Water",NA,2020-11-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826001",NA,"as N","Nitrate","Total","8.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:26","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8500,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1183","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4990780-1217-LAB","Sample-Routine","Water",NA,2020-12-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826014",NA,"as N","Nitrate","Total","5.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:26","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5840,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1184","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4991810-1022-LAB","Sample-Routine","Water",NA,2020-10-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826053",NA,"as N","Nitrate","Total","13.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:26","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",13800,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1185","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4991810-1119-LAB","Sample-Routine","Water",NA,2020-11-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826066",NA,"as N","Nitrate","Total","9.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:26","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9750,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1186","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4991810-1217-LAB","Sample-Routine","Water",NA,2020-12-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826079",NA,"as N","Nitrate","Total","13.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:26","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",13400,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1187","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4994160-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826118",NA,"as N","Nitrate","Total","8.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:26","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8660,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1188","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4994160-1118-LAB","Sample-Routine","Water",NA,2020-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826131",NA,"as N","Nitrate","Total","3.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:26","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3720,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1189","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4994160-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826144",NA,"as N","Nitrate","Total","6.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:26","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6530,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1190","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4990790-1022-LAB","Sample-Routine","Water",NA,2020-10-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826183",NA,"as N","Nitrate","Total","6.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:27","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6410,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1191","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4990790-1217-LAB","Sample-Routine","Water",NA,2020-12-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826208",NA,"as N","Nitrate","Total","6.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:27","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6850,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1192","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4990770-1022-LAB","Sample-Routine","Water",NA,2020-10-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826247",NA,"as N","Nitrate","Total","6.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:27","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6090,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1193","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1120-4990770-1119-LAB","Sample-Routine","Water",NA,2020-11-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826260",NA,"as N","Nitrate","Total","4.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:27","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4720,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1194","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4990770-1217-LAB","Sample-Routine","Water",NA,2020-12-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826273",NA,"as N","Nitrate","Total","6.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:27","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6170,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1195","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1020-4991290-1021-LAB","Sample-Routine","Water",NA,2020-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826312",NA,"as N","Nitrate","Total","7.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:27","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7010,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1196","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1220-4991290-1216-LAB","Sample-Routine","Water",NA,2020-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-883826337",NA,"as N","Nitrate","Total","7.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2021-04-02T19:20:28","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7890,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2035","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202105261409:SR","Sample-Routine","Water",NA,2021-05-26,"14:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-IDR","INDIAN CREEK",NA,NA,NA,NA,"40.1572222222","-110.4050000000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-902714899","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-07-13T21:01:27","STORET",7,NA,2021-05-26 21:09:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.1572222222,-110.405,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202105261409:SR","Sample-Routine","Water",NA,2021-05-26,"14:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-IDR","INDIAN CREEK",NA,NA,NA,NA,"40.1572222222","-110.4050000000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-902714901","Not Detected","None","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202105261409%3ASR/results/902714901/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-07-13T21:01:27","STORET",7,NA,2021-05-26 21:09:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"None","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.1572222222,-110.405,"N","Unknown","Not Reviewed","Accepted","NONE","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_NONE_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-RKD:202105261247:SR","Sample-Routine","Water",NA,2021-05-26,"12:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-RKD","Rock Creek",NA,NA,NA,NA,"40.3110798300","-110.4938520000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-902714993","Not Detected","None","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-RKD%3A202105261247%3ASR/results/902714993/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-07-13T21:01:31","STORET",7,NA,2021-05-26 19:47:00,NA,"River/Stream","Knights Diversion below 3rd bridge.","14060003",NA,NA,NA,NA,"40.3110798300","-110.4938520000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"None","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.31107983,-110.493852,"N","Unknown","Not Reviewed","Accepted","NONE","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_NONE_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2036","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-RKD:202105261247:SR","Sample-Routine","Water",NA,2021-05-26,"12:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-RKD","Rock Creek",NA,NA,NA,NA,"40.3110798300","-110.4938520000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-902714995","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-07-13T21:01:31","STORET",7,NA,2021-05-26 19:47:00,NA,"River/Stream","Knights Diversion below 3rd bridge.","14060003",NA,NA,NA,NA,"40.3110798300","-110.4938520000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.31107983,-110.493852,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2037","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SCC:202105261506:SR","Sample-Routine","Water",NA,2021-05-26,"15:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-SCC","Sowers Canyon Creek",NA,NA,NA,NA,"40.0615548300","-110.2903830000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-902715004","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-07-13T21:01:31","STORET",7,NA,2021-05-26 22:06:00,NA,"River/Stream","River/Stream","14060003",NA,NA,NA,NA,"40.0615548300","-110.2903830000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.06155483,-110.290383,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SCC:202105261506:SR","Sample-Routine","Water",NA,2021-05-26,"15:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-SCC","Sowers Canyon Creek",NA,NA,NA,NA,"40.0615548300","-110.2903830000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-902715006","Not Detected","None","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SCC%3A202105261506%3ASR/results/902715006/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-07-13T21:01:31","STORET",7,NA,2021-05-26 22:06:00,NA,"River/Stream","River/Stream","14060003",NA,NA,NA,NA,"40.0615548300","-110.2903830000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"None","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.06155483,-110.290383,"N","Unknown","Not Reviewed","Accepted","NONE","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_NONE_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202106011153:SR","Sample-Routine","Water",NA,2021-06-01,"11:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WRB","Whiterocks River 2",NA,NA,NA,NA,"40.5331460000","-109.9237518300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-902715057","Not Detected","None","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202106011153%3ASR/results/902715057/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-07-13T21:01:32","STORET",7,NA,2021-06-01 18:53:00,NA,"River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"None","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.533146,-109.92375183,"N","Unknown","Not Reviewed","Accepted","NONE","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_NONE_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2038","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202106011153:SR","Sample-Routine","Water",NA,2021-06-01,"11:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WRB","Whiterocks River 2",NA,NA,NA,NA,"40.5331460000","-109.9237518300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-902715059","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-07-13T21:01:32","STORET",7,NA,2021-06-01 18:53:00,NA,"River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.533146,-109.92375183,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-4951850-1004-4-C","Sample-Routine","Water",NA,2020-10-04,"17:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951850","PARIA R AT US89 XING",NA,NA,NA,NA,"37.1074900000","-111.9068500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533138",NA,"as N","Nitrogen","Total","0.104","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4951850-1004-4-C/results/911533138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:30","STORET",7,NA,2020-10-05 00:25:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.104,"MG/L","Numeric","Pass","Uncensored",37.10749,-111.90685,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-4953980-1004-4-C","Sample-Routine","Water",NA,2020-10-04,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533144",NA,"as N","Nitrogen","Total","0.111","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4953980-1004-4-C/results/911533144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:30","STORET",7,NA,2020-10-04 18:25:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.111,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-4953980-1004-4-C","Sample-Routine","Water",NA,2020-10-04,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533148",NA,"as N","Nitrogen","Dissolved","0.144","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4953980-1004-4-C/results/911533148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:30","STORET",7,NA,2020-10-04 18:25:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.144,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-4953981-1004-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-04,"11:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533170",NA,"as N","Nitrogen","Total","0.115","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4953981-1004-4-C/results/911533170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:31","STORET",7,NA,2020-10-04 18:17:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.115,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-4953981-1004-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-04,"11:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533174",NA,"as N","Nitrogen","Dissolved","0.141","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4953981-1004-4-C/results/911533174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:31","STORET",7,NA,2020-10-04 18:17:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.141,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-5994520-1005-4-C","Sample-Routine","Water",NA,2020-10-05,"08:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994520","LAST CHANCE AT BURNING HILLS RD XING",NA,NA,NA,NA,"37.1841500000","-111.3684900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533198",NA,"as N","Nitrogen","Total","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994520-1005-4-C/results/911533198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:31","STORET",7,NA,2020-10-05 15:51:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",37.18415,-111.36849,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-5994530-1005-4-C","Sample-Routine","Water",NA,2020-10-05,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533204",NA,"as N","Nitrogen","Total","0.658","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994530-1005-4-C/results/911533204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:31","STORET",7,NA,2020-10-05 17:25:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.658,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-5994530-1005-4-C","Sample-Routine","Water",NA,2020-10-05,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533208",NA,"as N","Nitrogen","Dissolved","0.492","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994530-1005-4-C/results/911533208/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:31","STORET",7,NA,2020-10-05 17:25:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.492,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-4951766-1005-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-05,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533230","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4951766-1005-4-C/results/911533230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:31","STORET",7,NA,2020-10-05 20:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-4951766-1005-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-05,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533234","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-4951766-1005-4-C/results/911533234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:31","STORET",7,NA,2020-10-05 20:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-5994550-1005-4-C","Sample-Routine","Water",NA,2020-10-05,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533256",NA,"as N","Nitrogen","Total","0.108","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994550-1005-4-C/results/911533256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-10-05 18:55:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.108,"MG/L","Numeric","Pass","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE201004-5994650-1004-4-C","Sample-Routine","Water",NA,2020-10-04,"12:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533262",NA,"as N","Nitrogen","Total","0.163","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE201004-5994650-1004-4-C/results/911533262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-10-04 19:38:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.163,"MG/L","Numeric","Pass","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4953193-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533271","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4953193-1116-4-C/results/911533271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-16 21:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4953193-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533275","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4953193-1116-4-C/results/911533275/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-16 21:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4955780-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533283","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955780-1113-4-C/results/911533283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-13 20:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4955780-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533287","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955780-1113-4-C/results/911533287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-13 20:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4955790-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533295","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955790-1113-4-C/results/911533295/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-13 21:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4955790-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533299","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955790-1113-4-C/results/911533299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-13 21:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4955791-1113-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533307","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955791-1113-4-C/results/911533307/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-13 21:15:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4955791-1113-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533311","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955791-1113-4-C/results/911533311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-13 21:15:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4955815-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533319","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955815-1113-4-C/results/911533319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-13 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4955815-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533323","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4955815-1113-4-C/results/911533323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-13 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4957002-1116-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4957002","BLM Moab Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533331","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4957002-1116-4-C/results/911533331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-16 20:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201113-4957002-1116-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4957002","BLM Moab Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533335","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201113-4957002-1116-4-C/results/911533335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:32","STORET",7,NA,2020-11-16 20:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201016-4953193-1019-4-C","Sample-Routine","Water",NA,2020-10-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533343",NA,"as N","Nitrogen","Total","0.205","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201016-4953193-1019-4-C/results/911533343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:33","STORET",7,NA,2020-10-19 20:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.205,"MG/L","Numeric","Not Reviewed","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201016-4953193-1019-4-C","Sample-Routine","Water",NA,2020-10-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533347",NA,"as N","Nitrogen","Dissolved","0.178","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201016-4953193-1019-4-C/results/911533347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:33","STORET",7,NA,2020-10-19 20:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.178,"MG/L","Numeric","Pass","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201016-4955790-1016-4-C","Sample-Routine","Water",NA,2020-10-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533375",NA,"as N","Nitrogen","Total","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201016-4955790-1016-4-C/results/911533375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:33","STORET",7,NA,2020-10-16 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201016-4955790-1016-4-C","Sample-Routine","Water",NA,2020-10-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533379",NA,"as N","Nitrogen","Dissolved","0.146","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201016-4955790-1016-4-C/results/911533379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:33","STORET",7,NA,2020-10-16 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.146,"MG/L","Numeric","Pass","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201202-4955780-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533402","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955780-1202-4-C/results/911533402/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:33","STORET",7,NA,2020-12-02 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201202-4955780-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533406","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955780-1202-4-C/results/911533406/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:33","STORET",7,NA,2020-12-02 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201202-4955790-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533419","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955790-1202-4-C/results/911533419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2020-12-02 19:20:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201202-4955790-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533423","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955790-1202-4-C/results/911533423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2020-12-02 19:20:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201202-4955791-1202-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-02,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533431","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955791-1202-4-C/results/911533431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2020-12-02 19:30:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201202-4955791-1202-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-02,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533435","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955791-1202-4-C/results/911533435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2020-12-02 19:30:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201202-4955815-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533443","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955815-1202-4-C/results/911533443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2020-12-02 20:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB201202-4955815-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533447","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB201202-4955815-1202-4-C/results/911533447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2020-12-02 20:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533455",NA,"as N","Nitrogen","Total","0.517","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C/results/911533455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2021-03-31 19:15:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.517,"MG/L","Numeric","Not Reviewed","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533459",NA,"as N","Nitrogen","Dissolved","0.939","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953060-0331-4-C/results/911533459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2021-03-31 19:15:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.939,"MG/L","Numeric","Not Reviewed","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533487","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C/results/911533487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2021-03-31 21:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533491",NA,"as N","Nitrogen","Dissolved","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953193-0331-4-C/results/911533491/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:34","STORET",7,NA,2021-03-31 21:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533519",NA,"as N","Nitrogen","Total","0.107","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C/results/911533519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:35","STORET",7,NA,2021-03-31 21:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.107,"MG/L","Numeric","Pass","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533523",NA,"as N","Nitrogen","Dissolved","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953205-0331-4-C/results/911533523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:35","STORET",7,NA,2021-03-31 21:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953210","COMB WASH BL FISH CK",NA,NA,NA,NA,"37.3841600000","-109.6684600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533551",NA,"as N","Nitrogen","Total","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C/results/911533551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:35","STORET",7,NA,2021-03-31 22:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3841600000","-109.6684600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",37.38416,-109.66846,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953210","COMB WASH BL FISH CK",NA,NA,NA,NA,"37.3841600000","-109.6684600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533555",NA,"as N","Nitrogen","Dissolved","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4953210-0331-4-C/results/911533555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:35","STORET",7,NA,2021-03-31 22:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3841600000","-109.6684600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",37.38416,-109.66846,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533583",NA,"as N","Nitrogen","Total","0.123","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C/results/911533583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:35","STORET",7,NA,2021-03-08 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.123,"MG/L","Numeric","Pass","Uncensored",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533587","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955780-0308-4-C/results/911533587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:35","STORET",7,NA,2021-03-08 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533610","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C/results/911533610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:36","STORET",7,NA,2021-03-08 20:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533614","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955790-0308-4-C/results/911533614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:36","STORET",7,NA,2021-03-08 20:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533647","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C/results/911533647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:36","STORET",7,NA,2021-03-08 20:45:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533651","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955791-0308-4-C/results/911533651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:36","STORET",7,NA,2021-03-08 20:45:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533679",NA,"as N","Nitrogen","Total","0.146","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C/results/911533679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:36","STORET",7,NA,2021-03-08 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.146,"MG/L","Numeric","Pass","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533683",NA,"as N","Nitrogen","Dissolved","0.105","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955810-0308-4-C/results/911533683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:36","STORET",7,NA,2021-03-08 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.105,"MG/L","Numeric","Pass","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533711","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C/results/911533711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:37","STORET",7,NA,2021-03-08 21:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533715","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4955815-0308-4-C/results/911533715/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:37","STORET",7,NA,2021-03-08 21:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4957002","BLM Moab Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533743","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C/results/911533743/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:37","STORET",7,NA,2021-03-18 20:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4957002","BLM Moab Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533747","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4957002-0318-4-C/results/911533747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:37","STORET",7,NA,2021-03-18 20:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4958750","FISHER CK AT MOUTH",NA,NA,NA,NA,"38.7433200000","-109.1351100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533770",NA,"as N","Nitrogen","Total","0.102","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C/results/911533770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:37","STORET",7,NA,2021-03-18 20:15:00,NA,"River/Stream",NA,"14030004",NA,NA,NA,NA,"38.7433200000","-109.1351100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.102,"MG/L","Numeric","Pass","Uncensored",38.74332,-109.13511,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4958750","FISHER CK AT MOUTH",NA,NA,NA,NA,"38.7433200000","-109.1351100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533774","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210308-4958750-0318-4-C/results/911533774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:37","STORET",7,NA,2021-03-18 20:15:00,NA,"River/Stream",NA,"14030004",NA,NA,NA,NA,"38.7433200000","-109.1351100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.74332,-109.13511,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4948002-0222-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-22,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4948002","BLM Richfield QA/QC Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533796","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4948002-0222-4-C/results/911533796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:38","STORET",7,NA,2021-02-22 22:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949263","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah",NA,NA,NA,NA,"38.1018500000","-112.0214700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533820",NA,"as N","Nitrogen","Total","0.13","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C/results/911533820/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:38","STORET",7,NA,2021-02-22 21:45:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.13,"MG/L","Numeric","Pass","Uncensored",38.10185,-112.02147,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949263","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah",NA,NA,NA,NA,"38.1018500000","-112.0214700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533824",NA,"as N","Nitrogen","Dissolved","0.119","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949263-0222-4-C/results/911533824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:38","STORET",7,NA,2021-02-22 21:45:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.119,"MG/L","Numeric","Pass","Uncensored",38.10185,-112.02147,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949583","Deer Creek above Mountain Spring Fork and below BLM/USFS boundary",NA,NA,NA,NA,"38.0005700000","-112.0554900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533848","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C/results/911533848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:38","STORET",7,NA,2021-02-22 16:45:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0005700000","-112.0554900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00057,-112.05549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949583","Deer Creek above Mountain Spring Fork and below BLM/USFS boundary",NA,NA,NA,NA,"38.0005700000","-112.0554900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533852",NA,"as N","Nitrogen","Dissolved","0.129","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949583-0222-4-C/results/911533852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:38","STORET",7,NA,2021-02-22 16:45:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0005700000","-112.0554900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.129,"MG/L","Numeric","Pass","Uncensored",38.00057,-112.05549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949970","E FK SEVIER R AB CNFL/ DEER CK",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533876",NA,"as N","Nitrogen","Total","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C/results/911533876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:38","STORET",7,NA,2021-02-22 19:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949970","E FK SEVIER R AB CNFL/ DEER CK",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533880",NA,"as N","Nitrogen","Dissolved","0.805","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949970-0222-4-C/results/911533880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:38","STORET",7,NA,2021-02-22 19:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.805,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-22,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949971","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533904",NA,"as N","Nitrogen","Total","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C/results/911533904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2021-02-22 19:15:00,NA,"River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-22,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949971","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533908",NA,"as N","Nitrogen","Dissolved","0.916","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949971-0222-4-C/results/911533908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2021-02-22 19:15:00,NA,"River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.916,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949980","DEER CK AB CNFL/ E FK SEVIER R",NA,NA,NA,NA,"38.0112200000","-111.9665800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533932",NA,"as N","Nitrogen","Total","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C/results/911533932/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2021-02-22 18:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",38.01122,-111.96658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949980","DEER CK AB CNFL/ E FK SEVIER R",NA,NA,NA,NA,"38.0112200000","-111.9665800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533936",NA,"as N","Nitrogen","Dissolved","0.539","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210222-4949980-0222-4-C/results/911533936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2021-02-22 18:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.539,"MG/L","Numeric","Not Reviewed","Uncensored",38.01122,-111.96658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF201022-4948002-1022-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-22,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4948002","BLM Richfield QA/QC Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533958","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4948002-1022-4-C/results/911533958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2020-10-22 23:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF201022-4949263-1022-4-C","Sample-Routine","Water",NA,2020-10-22,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949263","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah",NA,NA,NA,NA,"38.1018500000","-112.0214700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533963",NA,"as N","Nitrogen","Total","0.141","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949263-1022-4-C/results/911533963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2020-10-22 20:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.141,"MG/L","Numeric","Pass","Uncensored",38.10185,-112.02147,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF201022-4949263-1022-4-C","Sample-Routine","Water",NA,2020-10-22,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949263","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah",NA,NA,NA,NA,"38.1018500000","-112.0214700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533967",NA,"as N","Nitrogen","Dissolved","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949263-1022-4-C/results/911533967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2020-10-22 20:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",38.10185,-112.02147,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF201022-4949970-1022-4-C","Sample-Routine","Water",NA,2020-10-22,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949970","E FK SEVIER R AB CNFL/ DEER CK",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533972",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949970-1022-4-C/results/911533972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2020-10-22 17:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF201022-4949970-1022-4-C","Sample-Routine","Water",NA,2020-10-22,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949970","E FK SEVIER R AB CNFL/ DEER CK",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533976",NA,"as N","Nitrogen","Dissolved","0.669","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949970-1022-4-C/results/911533976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2020-10-22 17:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.669,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF201022-4949971-1022-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-22,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949971","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533981",NA,"as N","Nitrogen","Total","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949971-1022-4-C/results/911533981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2020-10-22 17:15:00,NA,"River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF201022-4949971-1022-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-22,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949971","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533985",NA,"as N","Nitrogen","Dissolved","0.647","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949971-1022-4-C/results/911533985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2020-10-22 17:15:00,NA,"River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.647,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF201022-4949980-1022-4-C","Sample-Routine","Water",NA,2020-10-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949980","DEER CK AB CNFL/ E FK SEVIER R",NA,NA,NA,NA,"38.0112200000","-111.9665800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533990",NA,"as N","Nitrogen","Total","0.535","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949980-1022-4-C/results/911533990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2020-10-22 18:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.535,"MG/L","Numeric","Not Reviewed","Uncensored",38.01122,-111.96658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF201022-4949980-1022-4-C","Sample-Routine","Water",NA,2020-10-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949980","DEER CK AB CNFL/ E FK SEVIER R",NA,NA,NA,NA,"38.0112200000","-111.9665800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911533994",NA,"as N","Nitrogen","Dissolved","0.609","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF201022-4949980-1022-4-C/results/911533994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2020-10-22 18:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.609,"MG/L","Numeric","Not Reviewed","Uncensored",38.01122,-111.96658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C","Sample-Routine","Water",NA,2021-03-25,"09:00:00","MST",NA,NA,NA,"Surface","0.66","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534000",NA,"as N","Nitrogen","Total","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C/results/911534000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:39","STORET",7,NA,2021-03-25 16:00:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.66,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C","Sample-Routine","Water",NA,2021-03-25,"09:00:00","MST",NA,NA,NA,"Surface","0.66","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534005",NA,"as N","Nitrogen","Dissolved","0.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-4952940-0325-4-C/results/911534005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:40","STORET",7,NA,2021-03-25 16:00:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.85,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.66,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C","Quality Control Sample-Field Blank","Water",NA,2021-03-27,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534029","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C/results/911534029/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:40","STORET",7,NA,2021-03-27 21:15:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C","Quality Control Sample-Field Blank","Water",NA,2021-03-27,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534034","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952422-0327-2-C/results/911534034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:40","STORET",7,NA,2021-03-27 21:15:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C","Quality Control Sample-Field Blank","Water",NA,2021-03-27,"14:30:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534038","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C/results/911534038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:40","STORET",7,NA,2021-03-27 21:30:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C","Quality Control Sample-Field Blank","Water",NA,2021-03-27,"14:30:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534043","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952422-0327-29-C/results/911534043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:40","STORET",7,NA,2021-03-27 21:30:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-24,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534135",NA,"as N","Nitrogen","Total","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C/results/911534135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:41","STORET",7,NA,2021-03-24 20:30:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-24,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534140",NA,"as N","Nitrogen","Dissolved","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952560-0324-2-C/results/911534140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:41","STORET",7,NA,2021-03-24 20:30:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C","Sample-Routine","Water",NA,2021-03-24,"13:45:00","MST",NA,NA,NA,"Bottom","91.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534144",NA,"as N","Nitrogen","Total","0.445","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C/results/911534144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:41","STORET",7,NA,2021-03-24 20:45:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.445,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",91.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C","Sample-Routine","Water",NA,2021-03-24,"13:45:00","MST",NA,NA,NA,"Bottom","91.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534149",NA,"as N","Nitrogen","Dissolved","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952560-0324-29-C/results/911534149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:41","STORET",7,NA,2021-03-24 20:45:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",91.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-24,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534173",NA,"as N","Nitrogen","Total","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C/results/911534173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:41","STORET",7,NA,2021-03-24 23:15:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-24,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534178",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952590-0324-2-C/results/911534178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:41","STORET",7,NA,2021-03-24 23:15:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C","Sample-Routine","Water",NA,2021-03-24,"16:30:00","MST",NA,NA,NA,"Bottom","51","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534182",NA,"as N","Nitrogen","Total","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C/results/911534182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:41","STORET",7,NA,2021-03-24 23:30:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",51,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C","Sample-Routine","Water",NA,2021-03-24,"16:30:00","MST",NA,NA,NA,"Bottom","51","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534187",NA,"as N","Nitrogen","Dissolved","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Filter reseampled on 3/25/2021 at 10:00 hrs",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952590-0324-29-C/results/911534187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:42","STORET",7,NA,2021-03-24 23:30:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",51,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-27,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534211",NA,"as N","Nitrogen","Total","0.339","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C/results/911534211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:42","STORET",7,NA,2021-03-27 15:45:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.339,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-27,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534216",NA,"as N","Nitrogen","Dissolved","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952700-0327-2-C/results/911534216/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:42","STORET",7,NA,2021-03-27 15:45:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C","Sample-Routine","Water",NA,2021-03-27,"09:15:00","MST",NA,NA,NA,"Bottom","36","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534220",NA,"as N","Nitrogen","Total","0.394","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C/results/911534220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:42","STORET",7,NA,2021-03-27 16:15:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.394,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",36,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C","Sample-Routine","Water",NA,2021-03-27,"09:15:00","MST",NA,NA,NA,"Bottom","36","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534225",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952700-0327-29-C/results/911534225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:42","STORET",7,NA,2021-03-27 16:15:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",36,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C","Sample-Routine","Water",NA,2021-03-27,"11:00:00","MST",NA,NA,NA,"Surface","0.58","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534249",NA,"as N","Nitrogen","Total","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C/results/911534249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:42","STORET",7,NA,2021-03-27 18:00:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.58,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C","Sample-Routine","Water",NA,2021-03-27,"11:00:00","MST",NA,NA,NA,"Surface","0.58","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534254",NA,"as N","Nitrogen","Dissolved","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952740-0327-4-C/results/911534254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:42","STORET",7,NA,2021-03-27 18:00:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.58,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-25,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534278",NA,"as N","Nitrogen","Total","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C/results/911534278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:42","STORET",7,NA,2021-03-25 23:00:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-25,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534283",NA,"as N","Nitrogen","Dissolved","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-2-C/results/911534283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-25 23:00:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C","Sample-Routine","Water",NA,2021-03-25,"16:15:00","MST",NA,NA,NA,"AboveThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534287",NA,"as N","Nitrogen","Total","0.433","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C/results/911534287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-25 23:15:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.433,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C","Sample-Routine","Water",NA,2021-03-25,"16:15:00","MST",NA,NA,NA,"AboveThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534292",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-23-C/results/911534292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-25 23:15:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C","Sample-Routine","Water",NA,2021-03-25,"16:20:00","MST",NA,NA,NA,"BelowThermoclin","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534296",NA,"as N","Nitrogen","Total","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C/results/911534296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-25 23:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C","Sample-Routine","Water",NA,2021-03-25,"16:20:00","MST",NA,NA,NA,"BelowThermoclin","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534301",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-27-C/results/911534301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-25 23:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C","Sample-Routine","Water",NA,2021-03-25,"16:25:00","MST",NA,NA,NA,"Bottom","63","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534305",NA,"as N","Nitrogen","Total","0.453","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C/results/911534305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-25 23:25:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.453,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",63,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C","Sample-Routine","Water",NA,2021-03-25,"16:25:00","MST",NA,NA,NA,"Bottom","63","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534310",NA,"as N","Nitrogen","Dissolved","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952770-0325-29-C/results/911534310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-25 23:25:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",63,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-26,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534334",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C/results/911534334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-26 16:10:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-26,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534339",NA,"as N","Nitrogen","Dissolved","0.394","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952910-0326-2-C/results/911534339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-26 16:10:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.394,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C","Sample-Routine","Water",NA,2021-03-26,"09:20:00","MST",NA,NA,NA,"Bottom","42.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534343",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C/results/911534343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-26 16:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",42.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C","Sample-Routine","Water",NA,2021-03-26,"09:20:00","MST",NA,NA,NA,"Bottom","42.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534348",NA,"as N","Nitrogen","Dissolved","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952910-0326-29-C/results/911534348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:43","STORET",7,NA,2021-03-26 16:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",42.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900470-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534388",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900470-0210-4-C/results/911534388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:44","STORET",7,NA,2021-02-10 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900470-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534392",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900470-0210-4-C/results/911534392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:44","STORET",7,NA,2021-02-10 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900510-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534414",NA,"as N","Nitrogen","Total","0.608","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900510-0210-4-C/results/911534414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:44","STORET",7,NA,2021-02-10 19:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.608,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900510-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534418",NA,"as N","Nitrogen","Dissolved","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900510-0210-4-C/results/911534418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:44","STORET",7,NA,2021-02-10 19:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900511-0210-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-10,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534440",NA,"as N","Nitrogen","Total","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900511-0210-4-C/results/911534440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:44","STORET",7,NA,2021-02-10 20:00:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900511-0210-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-10,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534444",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900511-0210-4-C/results/911534444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:44","STORET",7,NA,2021-02-10 20:00:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0208-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-08,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534449","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0208-4-C/results/911534449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:44","STORET",7,NA,2021-02-08 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0208-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-08,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534453","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0208-4-C/results/911534453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:44","STORET",7,NA,2021-02-08 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0209-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534475","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0209-4-C/results/911534475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:45","STORET",7,NA,2021-02-09 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0209-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534479","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0209-4-C/results/911534479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:45","STORET",7,NA,2021-02-09 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0210-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534535","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0210-4-C/results/911534535/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:45","STORET",7,NA,2021-02-10 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900753-0210-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534539","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900753-0210-4-C/results/911534539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:45","STORET",7,NA,2021-02-10 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903950-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534544",NA,"as N","Nitrogen","Total","9.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903950-0209-4-C/results/911534544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:45","STORET",7,NA,2021-02-09 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903950-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534548",NA,"as N","Nitrogen","Dissolved","9.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903950-0209-4-C/results/911534548/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:45","STORET",7,NA,2021-02-09 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904110-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534587",NA,"as N","Nitrogen","Total","2.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904110-0210-4-C/results/911534587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:46","STORET",7,NA,2021-02-10 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904110-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534591",NA,"as N","Nitrogen","Dissolved","2.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904110-0210-4-C/results/911534591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:46","STORET",7,NA,2021-02-10 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904740-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534596",NA,"as N","Nitrogen","Total","18.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904740-0209-4-C/results/911534596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:46","STORET",7,NA,2021-02-09 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904740-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534600",NA,"as N","Nitrogen","Dissolved","18.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904740-0209-4-C/results/911534600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:46","STORET",7,NA,2021-02-09 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904770-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534639",NA,"as N","Nitrogen","Total","32.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904770-0210-4-C/results/911534639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:46","STORET",7,NA,2021-02-10 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",32.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904770-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534643",NA,"as N","Nitrogen","Dissolved","32.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904770-0210-4-C/results/911534643/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:46","STORET",7,NA,2021-02-10 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",32.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904800-0209-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-09,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534648",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904800-0209-4-C/results/911534648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:46","STORET",7,NA,2021-02-09 18:10:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904800-0209-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-09,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534652",NA,"as N","Nitrogen","Dissolved","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904800-0209-4-C/results/911534652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:46","STORET",7,NA,2021-02-09 18:10:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904810-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534692",NA,"as N","Nitrogen","Total","9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904810-0210-4-C/results/911534692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:47","STORET",7,NA,2021-02-10 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904810-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534696",NA,"as N","Nitrogen","Dissolved","9.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904810-0210-4-C/results/911534696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:47","STORET",7,NA,2021-02-10 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904840-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904840","DITCH AB EA MILLER SC-12",NA,NA,NA,NA,"41.6555700000","-111.8690300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534702",NA,"as N","Nitrogen","Total","3.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904840-0210-4-C/results/911534702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:47","STORET",7,NA,2021-02-10 17:00:00,NA,"Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.65557,-111.86903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904840-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904840","DITCH AB EA MILLER SC-12",NA,NA,NA,NA,"41.6555700000","-111.8690300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534706",NA,"as N","Nitrogen","Dissolved","3.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904840-0210-4-C/results/911534706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:47","STORET",7,NA,2021-02-10 17:00:00,NA,"Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.65557,-111.86903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904900-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534728",NA,"as N","Nitrogen","Total","3.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904900-0209-4-C/results/911534728/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:47","STORET",7,NA,2021-02-09 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904900-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534732",NA,"as N","Nitrogen","Dissolved","3.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904900-0209-4-C/results/911534732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:47","STORET",7,NA,2021-02-09 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904920-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534754",NA,"as N","Nitrogen","Total","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904920-0209-4-C/results/911534754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:48","STORET",7,NA,2021-02-09 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904920-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534758",NA,"as N","Nitrogen","Dissolved","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904920-0209-4-C/results/911534758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:48","STORET",7,NA,2021-02-09 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904940-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534780",NA,"as N","Nitrogen","Total","18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904940-0209-4-C/results/911534780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:48","STORET",7,NA,2021-02-09 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904940-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534784",NA,"as N","Nitrogen","Dissolved","17.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904940-0209-4-C/results/911534784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:48","STORET",7,NA,2021-02-09 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904943-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534823",NA,"as N","Nitrogen","Total","6.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904943-0210-4-C/results/911534823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:48","STORET",7,NA,2021-02-10 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904943-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534827",NA,"as N","Nitrogen","Dissolved","6.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904943-0210-4-C/results/911534827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:48","STORET",7,NA,2021-02-10 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904965-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534832",NA,"as N","Nitrogen","Total","3.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904965-0209-4-C/results/911534832/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:49","STORET",7,NA,2021-02-09 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.98,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904965-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534836",NA,"as N","Nitrogen","Dissolved","3.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904965-0209-4-C/results/911534836/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:49","STORET",7,NA,2021-02-09 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904990-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534858",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904990-0209-4-C/results/911534858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:49","STORET",7,NA,2021-02-09 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904990-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534862",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904990-0209-4-C/results/911534862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:49","STORET",7,NA,2021-02-09 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905000-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534884",NA,"as N","Nitrogen","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905000-0209-4-C/results/911534884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:49","STORET",7,NA,2021-02-09 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905000-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534888",NA,"as N","Nitrogen","Dissolved","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905000-0209-4-C/results/911534888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:49","STORET",7,NA,2021-02-09 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905040-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534910",NA,"as N","Nitrogen","Total","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905040-0209-4-C/results/911534910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:49","STORET",7,NA,2021-02-09 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905040-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534914",NA,"as N","Nitrogen","Dissolved","0.359","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905040-0209-4-C/results/911534914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:49","STORET",7,NA,2021-02-09 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.359,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905050-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534936",NA,"as N","Nitrogen","Total","13.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905050-0209-4-C/results/911534936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:50","STORET",7,NA,2021-02-09 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905050-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534940",NA,"as N","Nitrogen","Dissolved","13.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905050-0209-4-C/results/911534940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:50","STORET",7,NA,2021-02-09 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905052-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534980",NA,"as N","Nitrogen","Total","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905052-0209-4-C/results/911534980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:50","STORET",7,NA,2021-02-09 17:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905052-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911534984",NA,"as N","Nitrogen","Dissolved","1.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905052-0209-4-C/results/911534984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:50","STORET",7,NA,2021-02-09 17:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.81,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905070-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535024",NA,"as N","Nitrogen","Total","28.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905070-0209-4-C/results/911535024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:50","STORET",7,NA,2021-02-09 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",28.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905070-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535028",NA,"as N","Nitrogen","Dissolved","24.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905070-0209-4-C/results/911535028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:50","STORET",7,NA,2021-02-09 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",24.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905090-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535068",NA,"as N","Nitrogen","Total","19.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905090-0209-4-C/results/911535068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:51","STORET",7,NA,2021-02-09 17:15:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905090-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535072",NA,"as N","Nitrogen","Dissolved","18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905090-0209-4-C/results/911535072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:51","STORET",7,NA,2021-02-09 17:15:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905200-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535111",NA,"as N","Nitrogen","Total","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905200-0209-4-C/results/911535111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:51","STORET",7,NA,2021-02-09 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905200-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535115",NA,"as N","Nitrogen","Dissolved","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905200-0209-4-C/results/911535115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:51","STORET",7,NA,2021-02-09 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905301-0209-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-09,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535137",NA,"as N","Nitrogen","Total","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905301-0209-4-C/results/911535137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:51","STORET",7,NA,2021-02-09 16:40:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905301-0209-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-09,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535141",NA,"as N","Nitrogen","Dissolved","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905301-0209-4-C/results/911535141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:52","STORET",7,NA,2021-02-09 16:40:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905400-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535163",NA,"as N","Nitrogen","Total","0.353","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905400-0209-4-C/results/911535163/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:52","STORET",7,NA,2021-02-09 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.353,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905400-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535167",NA,"as N","Nitrogen","Dissolved","0.488","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905400-0209-4-C/results/911535167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:52","STORET",7,NA,2021-02-09 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.488,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905440-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535189",NA,"as N","Nitrogen","Total","0.262","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905440-0209-4-C/results/911535189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:52","STORET",7,NA,2021-02-09 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.262,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905440-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535193",NA,"as N","Nitrogen","Dissolved","0.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905440-0209-4-C/results/911535193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:52","STORET",7,NA,2021-02-09 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905441-0209-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-09,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535215",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905441-0209-4-C/results/911535215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:52","STORET",7,NA,2021-02-09 19:50:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905441-0209-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-09,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535219",NA,"as N","Nitrogen","Dissolved","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905441-0209-4-C/results/911535219/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:52","STORET",7,NA,2021-02-09 19:50:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905520-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535259",NA,"as N","Nitrogen","Total","9.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905520-0210-4-C/results/911535259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:53","STORET",7,NA,2021-02-10 17:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905520-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535263",NA,"as N","Nitrogen","Dissolved","10.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905520-0210-4-C/results/911535263/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:53","STORET",7,NA,2021-02-10 17:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905540-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535286",NA,"as N","Nitrogen","Total","43.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905540-0210-4-C/results/911535286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:53","STORET",7,NA,2021-02-10 16:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",43.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905540-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535290",NA,"as N","Nitrogen","Dissolved","42.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905540-0210-4-C/results/911535290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:53","STORET",7,NA,2021-02-10 16:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",42.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905630-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535312",NA,"as N","Nitrogen","Total","0.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905630-0210-4-C/results/911535312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:53","STORET",7,NA,2021-02-10 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905630-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535316",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905630-0210-4-C/results/911535316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:53","STORET",7,NA,2021-02-10 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905631-0210-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-10,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535338",NA,"as N","Nitrogen","Total","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905631-0210-4-C/results/911535338/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:54","STORET",7,NA,2021-02-10 18:10:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905631-0210-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-10,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535342",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905631-0210-4-C/results/911535342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:54","STORET",7,NA,2021-02-10 18:10:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905640-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535364",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905640-0210-4-C/results/911535364/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:54","STORET",7,NA,2021-02-10 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905640-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535368",NA,"as N","Nitrogen","Dissolved","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905640-0210-4-C/results/911535368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:54","STORET",7,NA,2021-02-10 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905650-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535390",NA,"as N","Nitrogen","Total","0.904","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905650-0210-4-C/results/911535390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:54","STORET",7,NA,2021-02-10 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.904,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905650-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535394",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905650-0210-4-C/results/911535394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:54","STORET",7,NA,2021-02-10 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905670-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535399",NA,"as N","Nitrogen","Total","0.534","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905670-0209-4-C/results/911535399/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:54","STORET",7,NA,2021-02-09 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.534,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905670-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535403",NA,"as N","Nitrogen","Dissolved","0.534","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905670-0209-4-C/results/911535403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:54","STORET",7,NA,2021-02-09 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.534,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905700-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535425",NA,"as N","Nitrogen","Total","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905700-0209-4-C/results/911535425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:55","STORET",7,NA,2021-02-09 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905700-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535429",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905700-0209-4-C/results/911535429/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:55","STORET",7,NA,2021-02-09 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905740-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535451",NA,"as N","Nitrogen","Total","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905740-0209-4-C/results/911535451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:55","STORET",7,NA,2021-02-09 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905740-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535455",NA,"as N","Nitrogen","Dissolved","0.195","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905740-0209-4-C/results/911535455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:55","STORET",7,NA,2021-02-09 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Pass","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905750-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535477",NA,"as N","Nitrogen","Total","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905750-0209-4-C/results/911535477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:56","STORET",7,NA,2021-02-09 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905750-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535481",NA,"as N","Nitrogen","Dissolved","0.222","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905750-0209-4-C/results/911535481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:56","STORET",7,NA,2021-02-09 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.222,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905780-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535503",NA,"as N","Nitrogen","Total","0.171","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905780-0209-4-C/results/911535503/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:56","STORET",7,NA,2021-02-09 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.171,"MG/L","Numeric","Pass","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905780-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535507",NA,"as N","Nitrogen","Dissolved","0.326","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905780-0209-4-C/results/911535507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:56","STORET",7,NA,2021-02-09 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.326,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905940-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535546",NA,"as N","Nitrogen","Total","3.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905940-0210-4-C/results/911535546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:56","STORET",7,NA,2021-02-10 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4905940-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535550",NA,"as N","Nitrogen","Dissolved","3.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4905940-0210-4-C/results/911535550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:56","STORET",7,NA,2021-02-10 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4906400-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535555",NA,"as N","Nitrogen","Total","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4906400-0209-4-C/results/911535555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:57","STORET",7,NA,2021-02-09 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4906400-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535559",NA,"as N","Nitrogen","Dissolved","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4906400-0209-4-C/results/911535559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:57","STORET",7,NA,2021-02-09 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908160-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535581",NA,"as N","Nitrogen","Total","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908160-0208-4-C/results/911535581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:57","STORET",7,NA,2021-02-08 19:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908160-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535585",NA,"as N","Nitrogen","Dissolved","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908160-0208-4-C/results/911535585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:57","STORET",7,NA,2021-02-08 19:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908165-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535607",NA,"as N","Nitrogen","Total","0.658","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908165-0208-4-C/results/911535607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:57","STORET",7,NA,2021-02-08 19:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.658,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908165-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535611",NA,"as N","Nitrogen","Dissolved","0.805","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908165-0208-4-C/results/911535611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:57","STORET",7,NA,2021-02-08 19:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.805,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908168-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535633",NA,"as N","Nitrogen","Total","0.445","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908168-0208-4-C/results/911535633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:58","STORET",7,NA,2021-02-08 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.445,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908168-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535637",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908168-0208-4-C/results/911535637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:58","STORET",7,NA,2021-02-08 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908170-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535659",NA,"as N","Nitrogen","Total","0.584","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908170-0208-4-C/results/911535659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:58","STORET",7,NA,2021-02-08 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.584,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908170-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535663",NA,"as N","Nitrogen","Dissolved","0.895","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908170-0208-4-C/results/911535663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:58","STORET",7,NA,2021-02-08 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.895,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908350-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535685",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908350-0208-4-C/results/911535685/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:58","STORET",7,NA,2021-02-08 17:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908350-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535689",NA,"as N","Nitrogen","Dissolved","0.941","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908350-0208-4-C/results/911535689/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:58","STORET",7,NA,2021-02-08 17:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.941,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908500-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535711",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908500-0208-4-C/results/911535711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:59","STORET",7,NA,2021-02-08 16:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908500-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535715",NA,"as N","Nitrogen","Dissolved","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908500-0208-4-C/results/911535715/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:59","STORET",7,NA,2021-02-08 16:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908697-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535737",NA,"as N","Nitrogen","Total","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908697-0208-4-C/results/911535737/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:59","STORET",7,NA,2021-02-08 18:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908697-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535741",NA,"as N","Nitrogen","Dissolved","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908697-0208-4-C/results/911535741/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:59","STORET",7,NA,2021-02-08 18:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908744-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535763",NA,"as N","Nitrogen","Total","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908744-0209-4-C/results/911535763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:59","STORET",7,NA,2021-02-09 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908744-0209-4-C","Sample-Routine","Water",NA,2021-02-09,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535767",NA,"as N","Nitrogen","Dissolved","0.189","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908744-0209-4-C/results/911535767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:59","STORET",7,NA,2021-02-09 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.189,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-5906850-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535789",NA,"as N","Nitrogen","Total","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-5906850-0208-4-C/results/911535789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:59","STORET",7,NA,2021-02-08 17:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-5906850-0208-4-C","Sample-Routine","Water",NA,2021-02-08,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535793",NA,"as N","Nitrogen","Dissolved","0.548","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-5906850-0208-4-C/results/911535793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:33:59","STORET",7,NA,2021-02-08 17:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.548,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900470-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535815",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900470-1028-4-C/results/911535815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900470-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535819",NA,"as N","Nitrogen","Total","0.998","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900470-1028-4-C/results/911535819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.998,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900470-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535820",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900470-1028-4-C/results/911535820/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900470-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535823",NA,"as N","Nitrogen","Dissolved","0.992","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900470-1028-4-C/results/911535823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.992,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900510-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535843",NA,"as N","Nitrogen","Total","0.919","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900510-1028-4-C/results/911535843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.919,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900510-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535847",NA,"as N","Nitrogen","Total","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900510-1028-4-C/results/911535847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900510-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535848",NA,"as N","Nitrogen","Dissolved","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900510-1028-4-C/results/911535848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900510-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535851",NA,"as N","Nitrogen","Dissolved","0.652","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900510-1028-4-C/results/911535851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.652,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900511-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535871",NA,"as N","Nitrogen","Total","0.684","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900511-1028-4-C/results/911535871/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:30:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.684,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900511-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535875",NA,"as N","Nitrogen","Total","0.655","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900511-1028-4-C/results/911535875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:30:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.655,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900511-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535876",NA,"as N","Nitrogen","Dissolved","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900511-1028-4-C/results/911535876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:30:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900511-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535879",NA,"as N","Nitrogen","Dissolved","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900511-1028-4-C/results/911535879/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:00","STORET",7,NA,2020-10-28 21:30:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1026-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-26,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535899",NA,"as N","Nitrogen","Dissolved","0.087","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1026-4-C/results/911535899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-26 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.087,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1026-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-26,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535902","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1026-4-C/results/911535902/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-26 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1026-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-26,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535903","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1026-4-C/results/911535903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-26 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","5","Y",FALSE +"2356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1026-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-26,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535907","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1026-4-C/results/911535907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-26 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","5","Y",FALSE +"2357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535944","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1027-4-C/results/911535944/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-28 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","7","Y",FALSE +"2358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535948","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1027-4-C/results/911535948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-28 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","7","Y",FALSE +"2359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535949","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1027-4-C/results/911535949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-28 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","6","Y",FALSE +"2360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535952","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1027-4-C/results/911535952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-28 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","6","Y",FALSE +"2361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535972","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1028-4-C/results/911535972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","9","Y",FALSE +"2362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535976","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1028-4-C/results/911535976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","9","Y",FALSE +"2363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535977","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1028-4-C/results/911535977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:01","STORET",7,NA,2020-10-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","8","Y",FALSE +"2364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900751-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911535980","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900751-1028-4-C/results/911535980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:02","STORET",7,NA,2020-10-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","8","Y",FALSE +"2365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1026-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-26,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536000","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1026-4-C/results/911536000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:02","STORET",7,NA,2020-10-26 23:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","11","Y",FALSE +"2366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1026-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-26,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536004","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1026-4-C/results/911536004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:02","STORET",7,NA,2020-10-26 23:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","11","Y",FALSE +"2367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1026-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-26,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536005","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1026-4-C/results/911536005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:02","STORET",7,NA,2020-10-26 23:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","10","Y",FALSE +"2368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1026-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-26,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536008","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1026-4-C/results/911536008/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:02","STORET",7,NA,2020-10-26 23:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","10","Y",FALSE +"2369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536028","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1027-4-C/results/911536028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:02","STORET",7,NA,2020-10-28 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","13","Y",FALSE +"2370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536032","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1027-4-C/results/911536032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:02","STORET",7,NA,2020-10-28 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","13","Y",FALSE +"2371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536033","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1027-4-C/results/911536033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:02","STORET",7,NA,2020-10-28 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","12","Y",FALSE +"2372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536036","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1027-4-C/results/911536036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:02","STORET",7,NA,2020-10-28 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","12","Y",FALSE +"2373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536073",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1028-4-C/results/911536073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:03","STORET",7,NA,2020-10-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536077","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1028-4-C/results/911536077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:03","STORET",7,NA,2020-10-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536078","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1028-4-C/results/911536078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:03","STORET",7,NA,2020-10-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","14","Y",FALSE +"2376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4900753-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536081","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4900753-1028-4-C/results/911536081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:03","STORET",7,NA,2020-10-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","14","Y",FALSE +"2377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901050-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536101",NA,"as N","Nitrogen","Dissolved","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901050-1026-4-C/results/911536101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:03","STORET",7,NA,2020-10-26 17:10:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901050-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536104",NA,"as N","Nitrogen","Dissolved","0.746","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901050-1026-4-C/results/911536104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:03","STORET",7,NA,2020-10-26 17:10:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.746,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901050-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536105",NA,"as N","Nitrogen","Total","0.604","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901050-1026-4-C/results/911536105/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:03","STORET",7,NA,2020-10-26 17:10:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.604,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901050-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536109",NA,"as N","Nitrogen","Total","0.639","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901050-1026-4-C/results/911536109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:03","STORET",7,NA,2020-10-26 17:10:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.639,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901100-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536129",NA,"as N","Nitrogen","Dissolved","0.596","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901100-1026-4-C/results/911536129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:03","STORET",7,NA,2020-10-26 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.596,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901100-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536132",NA,"as N","Nitrogen","Dissolved","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901100-1026-4-C/results/911536132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901100-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536133",NA,"as N","Nitrogen","Total","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901100-1026-4-C/results/911536133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.617,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901100-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536137",NA,"as N","Nitrogen","Total","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901100-1026-4-C/results/911536137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901180-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536157",NA,"as N","Nitrogen","Dissolved","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901180-1026-4-C/results/911536157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901180-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536160",NA,"as N","Nitrogen","Dissolved","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901180-1026-4-C/results/911536160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901180-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536161",NA,"as N","Nitrogen","Total","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901180-1026-4-C/results/911536161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901180-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536165",NA,"as N","Nitrogen","Total","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901180-1026-4-C/results/911536165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901200-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536203",NA,"as N","Nitrogen","Dissolved","3.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901200-1026-4-C/results/911536203/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 16:30:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901200-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536206",NA,"as N","Nitrogen","Dissolved","3.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901200-1026-4-C/results/911536206/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 16:30:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901200-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536207",NA,"as N","Nitrogen","Total","3.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901200-1026-4-C/results/911536207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 16:30:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","15","Y",FALSE +"2392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901200-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536211",NA,"as N","Nitrogen","Total","3.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901200-1026-4-C/results/911536211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:04","STORET",7,NA,2020-10-26 16:30:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","15","Y",FALSE +"2393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901225-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536248",NA,"as N","Nitrogen","Dissolved","3.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901225-1026-4-C/results/911536248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:05","STORET",7,NA,2020-10-26 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901225-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536251",NA,"as N","Nitrogen","Dissolved","3.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901225-1026-4-C/results/911536251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:05","STORET",7,NA,2020-10-26 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901225-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536252",NA,"as N","Nitrogen","Total","3.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901225-1026-4-C/results/911536252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:05","STORET",7,NA,2020-10-26 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901225-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536256",NA,"as N","Nitrogen","Total","3.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901225-1026-4-C/results/911536256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:05","STORET",7,NA,2020-10-26 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901431-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536293",NA,"as N","Nitrogen","Dissolved","4.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901431-1026-4-C/results/911536293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:05","STORET",7,NA,2020-10-26 17:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901431-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536296",NA,"as N","Nitrogen","Dissolved","4.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901431-1026-4-C/results/911536296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:05","STORET",7,NA,2020-10-26 17:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901431-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536297",NA,"as N","Nitrogen","Total","4.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901431-1026-4-C/results/911536297/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:05","STORET",7,NA,2020-10-26 17:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901431-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536301",NA,"as N","Nitrogen","Total","4.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901431-1026-4-C/results/911536301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:05","STORET",7,NA,2020-10-26 17:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.97,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901432-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536321",NA,"as N","Nitrogen","Dissolved","4.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901432-1026-4-C/results/911536321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 17:20:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901432-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536324",NA,"as N","Nitrogen","Dissolved","4.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901432-1026-4-C/results/911536324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 17:20:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901432-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536325",NA,"as N","Nitrogen","Total","4.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901432-1026-4-C/results/911536325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 17:20:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901432-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536329",NA,"as N","Nitrogen","Total","5.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901432-1026-4-C/results/911536329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 17:20:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",5.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901600-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536349",NA,"as N","Nitrogen","Dissolved","0.636","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901600-1026-4-C/results/911536349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 17:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.636,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901600-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536352",NA,"as N","Nitrogen","Dissolved","0.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901600-1026-4-C/results/911536352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 17:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901600-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536353",NA,"as N","Nitrogen","Total","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901600-1026-4-C/results/911536353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 17:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901600-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536357",NA,"as N","Nitrogen","Total","0.706","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901600-1026-4-C/results/911536357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 17:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.706,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536377",NA,"as N","Nitrogen","Total","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901700-1027-4-C/results/911536377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-27 15:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536381",NA,"as N","Nitrogen","Total","0.826","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901700-1027-4-C/results/911536381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-27 15:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.826,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536382",NA,"as N","Nitrogen","Dissolved","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901700-1027-4-C/results/911536382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-27 15:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536385",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901700-1027-4-C/results/911536385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-27 15:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901730-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536405",NA,"as N","Nitrogen","Dissolved","0.508","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901730-1026-4-C/results/911536405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.508,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901730-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536408",NA,"as N","Nitrogen","Dissolved","0.819","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901730-1026-4-C/results/911536408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.819,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901730-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536409",NA,"as N","Nitrogen","Total","0.581","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901730-1026-4-C/results/911536409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.581,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901730-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536413",NA,"as N","Nitrogen","Total","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901730-1026-4-C/results/911536413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-26 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901790-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536433",NA,"as N","Nitrogen","Total","0.635","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901790-1027-4-C/results/911536433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:06","STORET",7,NA,2020-10-27 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.635,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901790-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536437",NA,"as N","Nitrogen","Total","0.654","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901790-1027-4-C/results/911536437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.654,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901790-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536438",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901790-1027-4-C/results/911536438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901790-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536441",NA,"as N","Nitrogen","Dissolved","0.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901790-1027-4-C/results/911536441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901930-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536461",NA,"as N","Nitrogen","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901930-1027-4-C/results/911536461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 16:20:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901930-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536465",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901930-1027-4-C/results/911536465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 16:20:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901930-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536466",NA,"as N","Nitrogen","Dissolved","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901930-1027-4-C/results/911536466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 16:20:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901930-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536469",NA,"as N","Nitrogen","Dissolved","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901930-1027-4-C/results/911536469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 16:20:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901950-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536489",NA,"as N","Nitrogen","Total","0.685","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901950-1027-4-C/results/911536489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:50:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.685,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901950-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536493",NA,"as N","Nitrogen","Total","0.762","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901950-1027-4-C/results/911536493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:50:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.762,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901950-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536494",NA,"as N","Nitrogen","Dissolved","0.702","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901950-1027-4-C/results/911536494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:50:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.702,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901950-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536497",NA,"as N","Nitrogen","Dissolved","0.736","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901950-1027-4-C/results/911536497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:50:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.736,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901975-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536517",NA,"as N","Nitrogen","Total","2.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901975-1027-4-C/results/911536517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901975-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536521",NA,"as N","Nitrogen","Total","3.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901975-1027-4-C/results/911536521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901975-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536522",NA,"as N","Nitrogen","Dissolved","2.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901975-1027-4-C/results/911536522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901975-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536525",NA,"as N","Nitrogen","Dissolved","3.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901975-1027-4-C/results/911536525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901980-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536545",NA,"as N","Nitrogen","Total","0.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901980-1027-4-C/results/911536545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901980-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536549",NA,"as N","Nitrogen","Total","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901980-1027-4-C/results/911536549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901980-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536550",NA,"as N","Nitrogen","Dissolved","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901980-1027-4-C/results/911536550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:07","STORET",7,NA,2020-10-27 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4901980-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536553",NA,"as N","Nitrogen","Dissolved","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4901980-1027-4-C/results/911536553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-27 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902000-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536573",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902000-1026-4-C/results/911536573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902000-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536576",NA,"as N","Nitrogen","Dissolved","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902000-1026-4-C/results/911536576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902000-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536577",NA,"as N","Nitrogen","Total","0.901","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902000-1026-4-C/results/911536577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.901,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902000-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536581",NA,"as N","Nitrogen","Total","0.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902000-1026-4-C/results/911536581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.97,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902040-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536602",NA,"as N","Nitrogen","Dissolved","0.733","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902040-1026-4-C/results/911536602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.733,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902040-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536605",NA,"as N","Nitrogen","Dissolved","0.857","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902040-1026-4-C/results/911536605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.857,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902040-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536606",NA,"as N","Nitrogen","Total","0.809","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902040-1026-4-C/results/911536606/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.809,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902040-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536610",NA,"as N","Nitrogen","Total","0.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902040-1026-4-C/results/911536610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902050-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536630",NA,"as N","Nitrogen","Dissolved","0.822","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902050-1026-4-C/results/911536630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.822,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902050-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536633",NA,"as N","Nitrogen","Dissolved","0.765","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902050-1026-4-C/results/911536633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.765,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902050-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536634",NA,"as N","Nitrogen","Total","0.761","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902050-1026-4-C/results/911536634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.761,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902050-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536638",NA,"as N","Nitrogen","Total","0.774","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902050-1026-4-C/results/911536638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:08","STORET",7,NA,2020-10-26 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.774,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902700-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536658",NA,"as N","Nitrogen","Dissolved","2.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902700-1026-4-C/results/911536658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.94,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902700-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536661",NA,"as N","Nitrogen","Dissolved","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902700-1026-4-C/results/911536661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902700-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536662",NA,"as N","Nitrogen","Total","2.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902700-1026-4-C/results/911536662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902700-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536666",NA,"as N","Nitrogen","Total","3.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902700-1026-4-C/results/911536666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902710-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536687",NA,"as N","Nitrogen","Dissolved","19.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902710-1026-4-C/results/911536687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:20:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902710-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536690",NA,"as N","Nitrogen","Dissolved","19.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902710-1026-4-C/results/911536690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:20:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902710-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536691",NA,"as N","Nitrogen","Total","19.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902710-1026-4-C/results/911536691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:20:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902710-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536695",NA,"as N","Nitrogen","Total","20.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902710-1026-4-C/results/911536695/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:20:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",20.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902720-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536716",NA,"as N","Nitrogen","Dissolved","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902720-1026-4-C/results/911536716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902720-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536719",NA,"as N","Nitrogen","Dissolved","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902720-1026-4-C/results/911536719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902720-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536720",NA,"as N","Nitrogen","Total","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902720-1026-4-C/results/911536720/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902720-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536724",NA,"as N","Nitrogen","Total","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902720-1026-4-C/results/911536724/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:09","STORET",7,NA,2020-10-26 19:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902900-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536744",NA,"as N","Nitrogen","Dissolved","0.579","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902900-1026-4-C/results/911536744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 20:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.579,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902900-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536747",NA,"as N","Nitrogen","Dissolved","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902900-1026-4-C/results/911536747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 20:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902900-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536748",NA,"as N","Nitrogen","Total","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902900-1026-4-C/results/911536748/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 20:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902900-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536752",NA,"as N","Nitrogen","Total","0.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902900-1026-4-C/results/911536752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 20:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902940-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536772",NA,"as N","Nitrogen","Dissolved","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902940-1026-4-C/results/911536772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 22:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902940-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536775",NA,"as N","Nitrogen","Dissolved","0.281","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902940-1026-4-C/results/911536775/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 22:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.281,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902940-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536776",NA,"as N","Nitrogen","Total","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902940-1026-4-C/results/911536776/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 22:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902940-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536780",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902940-1026-4-C/results/911536780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 22:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902941-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536800",NA,"as N","Nitrogen","Dissolved","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902941-1026-4-C/results/911536800/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 22:15:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902941-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536803",NA,"as N","Nitrogen","Dissolved","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902941-1026-4-C/results/911536803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 22:15:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902941-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536804",NA,"as N","Nitrogen","Total","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902941-1026-4-C/results/911536804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 22:15:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4902941-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536808",NA,"as N","Nitrogen","Total","0.262","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4902941-1026-4-C/results/911536808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:10","STORET",7,NA,2020-10-26 22:15:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.262,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903030-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536828",NA,"as N","Nitrogen","Total","2.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903030-1027-4-C/results/911536828/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903030-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536832",NA,"as N","Nitrogen","Total","2.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903030-1027-4-C/results/911536832/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903030-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536833",NA,"as N","Nitrogen","Dissolved","2.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903030-1027-4-C/results/911536833/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903030-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536836",NA,"as N","Nitrogen","Dissolved","2.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903030-1027-4-C/results/911536836/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903060-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536856",NA,"as N","Nitrogen","Total","4.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903060-1027-4-C/results/911536856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903060-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536860",NA,"as N","Nitrogen","Total","4.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903060-1027-4-C/results/911536860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.95,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903060-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536861",NA,"as N","Nitrogen","Dissolved","4.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903060-1027-4-C/results/911536861/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903060-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536864",NA,"as N","Nitrogen","Dissolved","4.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903060-1027-4-C/results/911536864/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903080-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536884",NA,"as N","Nitrogen","Total","4.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903080-1027-4-C/results/911536884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903080-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536888",NA,"as N","Nitrogen","Total","4.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903080-1027-4-C/results/911536888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.95,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903080-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536889",NA,"as N","Nitrogen","Dissolved","4.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903080-1027-4-C/results/911536889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903080-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536892",NA,"as N","Nitrogen","Dissolved","5.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903080-1027-4-C/results/911536892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903180-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536912",NA,"as N","Nitrogen","Total","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903180-1027-4-C/results/911536912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 21:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903180-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536916",NA,"as N","Nitrogen","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903180-1027-4-C/results/911536916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 21:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903180-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536917",NA,"as N","Nitrogen","Dissolved","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903180-1027-4-C/results/911536917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:11","STORET",7,NA,2020-10-27 21:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903180-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536920",NA,"as N","Nitrogen","Dissolved","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903180-1027-4-C/results/911536920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903190-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536940",NA,"as N","Nitrogen","Total","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903190-1027-4-C/results/911536940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903190-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536944",NA,"as N","Nitrogen","Total","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903190-1027-4-C/results/911536944/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903190-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536945",NA,"as N","Nitrogen","Dissolved","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903190-1027-4-C/results/911536945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903190-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536948",NA,"as N","Nitrogen","Dissolved","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903190-1027-4-C/results/911536948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903191-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536968",NA,"as N","Nitrogen","Total","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903191-1027-4-C/results/911536968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903191-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536972",NA,"as N","Nitrogen","Total","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903191-1027-4-C/results/911536972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903191-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536973",NA,"as N","Nitrogen","Dissolved","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903191-1027-4-C/results/911536973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903191-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536976",NA,"as N","Nitrogen","Dissolved","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903191-1027-4-C/results/911536976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903200-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911536996",NA,"as N","Nitrogen","Total","1.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903200-1027-4-C/results/911536996/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903200-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537000",NA,"as N","Nitrogen","Total","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903200-1027-4-C/results/911537000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903200-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537001",NA,"as N","Nitrogen","Dissolved","1.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903200-1027-4-C/results/911537001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903200-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537004",NA,"as N","Nitrogen","Dissolved","1.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903200-1027-4-C/results/911537004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903260-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537024",NA,"as N","Nitrogen","Total","0.938","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903260-1027-4-C/results/911537024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.938,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903260-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537028",NA,"as N","Nitrogen","Total","0.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903260-1027-4-C/results/911537028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903260-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537029",NA,"as N","Nitrogen","Dissolved","0.919","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903260-1027-4-C/results/911537029/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.919,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903260-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537032",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903260-1027-4-C/results/911537032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:12","STORET",7,NA,2020-10-27 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537052",NA,"as N","Nitrogen","Total","0.951","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903400-1027-4-C/results/911537052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.951,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537056",NA,"as N","Nitrogen","Total","0.987","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903400-1027-4-C/results/911537056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.987,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537057",NA,"as N","Nitrogen","Dissolved","0.895","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903400-1027-4-C/results/911537057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.895,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537060",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903400-1027-4-C/results/911537060/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903500-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537080",NA,"as N","Nitrogen","Total","1.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903500-1027-4-C/results/911537080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903500-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537084",NA,"as N","Nitrogen","Total","1.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903500-1027-4-C/results/911537084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.79,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903500-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537085",NA,"as N","Nitrogen","Dissolved","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903500-1027-4-C/results/911537085/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903500-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537088",NA,"as N","Nitrogen","Dissolved","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903500-1027-4-C/results/911537088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903501-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537108",NA,"as N","Nitrogen","Total","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903501-1027-4-C/results/911537108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 18:50:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903501-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537112",NA,"as N","Nitrogen","Total","1.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903501-1027-4-C/results/911537112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 18:50:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903501-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537113",NA,"as N","Nitrogen","Dissolved","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903501-1027-4-C/results/911537113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 18:50:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903501-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537116",NA,"as N","Nitrogen","Dissolved","1.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903501-1027-4-C/results/911537116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-27 18:50:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903504-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537136",NA,"as N","Nitrogen","Total","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903504-1028-4-C/results/911537136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-28 16:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903504-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537140",NA,"as N","Nitrogen","Total","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903504-1028-4-C/results/911537140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-28 16:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903504-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537141",NA,"as N","Nitrogen","Dissolved","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903504-1028-4-C/results/911537141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-28 16:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903504-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537144",NA,"as N","Nitrogen","Dissolved","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903504-1028-4-C/results/911537144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:13","STORET",7,NA,2020-10-28 16:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903507-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537164",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903507-1028-4-C/results/911537164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 16:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903507-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537168",NA,"as N","Nitrogen","Total","0.513","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903507-1028-4-C/results/911537168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 16:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.513,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903507-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537169",NA,"as N","Nitrogen","Dissolved","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903507-1028-4-C/results/911537169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 16:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903507-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537172",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903507-1028-4-C/results/911537172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 16:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903510-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537192",NA,"as N","Nitrogen","Total","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903510-1028-4-C/results/911537192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903510-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537196",NA,"as N","Nitrogen","Total","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903510-1028-4-C/results/911537196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903510-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537197",NA,"as N","Nitrogen","Dissolved","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903510-1028-4-C/results/911537197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903510-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537200",NA,"as N","Nitrogen","Dissolved","0.432","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903510-1028-4-C/results/911537200/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.432,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903699-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537220",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903699-1028-4-C/results/911537220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","16","Y",FALSE +"2530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903699-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537224",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903699-1028-4-C/results/911537224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","16","Y",FALSE +"2531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903699-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537225",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903699-1028-4-C/results/911537225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903699-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537228",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903699-1028-4-C/results/911537228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903723-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537249",NA,"as N","Nitrogen","Total","12.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903723-1028-4-C/results/911537249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 18:00:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903723-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537253",NA,"as N","Nitrogen","Total","13.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903723-1028-4-C/results/911537253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 18:00:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903723-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537254",NA,"as N","Nitrogen","Dissolved","12.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903723-1028-4-C/results/911537254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 18:00:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903723-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537257",NA,"as N","Nitrogen","Dissolved","13.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903723-1028-4-C/results/911537257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:14","STORET",7,NA,2020-10-28 18:00:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903770-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537277",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903770-1028-4-C/results/911537277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:15","STORET",7,NA,2020-10-28 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903770-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537281",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903770-1028-4-C/results/911537281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:15","STORET",7,NA,2020-10-28 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903770-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537282",NA,"as N","Nitrogen","Dissolved","0.985","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903770-1028-4-C/results/911537282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:15","STORET",7,NA,2020-10-28 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.985,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903770-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537285",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903770-1028-4-C/results/911537285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:15","STORET",7,NA,2020-10-28 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903820-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537333",NA,"as N","Nitrogen","Total","0.903","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903820-1028-4-C/results/911537333/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:15","STORET",7,NA,2020-10-28 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.903,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903820-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537337",NA,"as N","Nitrogen","Total","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903820-1028-4-C/results/911537337/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:15","STORET",7,NA,2020-10-28 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.869,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903820-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537338",NA,"as N","Nitrogen","Dissolved","0.817","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903820-1028-4-C/results/911537338/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:15","STORET",7,NA,2020-10-28 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.817,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903820-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537341",NA,"as N","Nitrogen","Dissolved","0.916","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903820-1028-4-C/results/911537341/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:15","STORET",7,NA,2020-10-28 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.916,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903950-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537361",NA,"as N","Nitrogen","Total","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903950-1027-4-C/results/911537361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-27 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903950-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537365",NA,"as N","Nitrogen","Total","10.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903950-1027-4-C/results/911537365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-27 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903950-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537366",NA,"as N","Nitrogen","Dissolved","10.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903950-1027-4-C/results/911537366/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-27 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4903950-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537369",NA,"as N","Nitrogen","Dissolved","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4903950-1027-4-C/results/911537369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-27 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904110-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537389",NA,"as N","Nitrogen","Total","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904110-1028-4-C/results/911537389/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","17","Y",FALSE +"2550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904110-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537393",NA,"as N","Nitrogen","Total","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904110-1028-4-C/results/911537393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","17","Y",FALSE +"2551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904110-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537394",NA,"as N","Nitrogen","Dissolved","2.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904110-1028-4-C/results/911537394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904110-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537397",NA,"as N","Nitrogen","Dissolved","2.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904110-1028-4-C/results/911537397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904240-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537417",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904240-1028-4-C/results/911537417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904240-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537421",NA,"as N","Nitrogen","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904240-1028-4-C/results/911537421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904240-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537422",NA,"as N","Nitrogen","Dissolved","0.959","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904240-1028-4-C/results/911537422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.959,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904240-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537425",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904240-1028-4-C/results/911537425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904241-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537445",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904241-1028-4-C/results/911537445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 19:30:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904241-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537449",NA,"as N","Nitrogen","Total","0.939","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904241-1028-4-C/results/911537449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 19:30:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.939,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904241-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537450",NA,"as N","Nitrogen","Dissolved","0.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904241-1028-4-C/results/911537450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 19:30:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904241-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537453",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904241-1028-4-C/results/911537453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 19:30:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904250-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537473",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904250-1028-4-C/results/911537473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904250-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537477",NA,"as N","Nitrogen","Total","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904250-1028-4-C/results/911537477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:16","STORET",7,NA,2020-10-28 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904250-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537478",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904250-1028-4-C/results/911537478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904250-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537481",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904250-1028-4-C/results/911537481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904310-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537501",NA,"as N","Nitrogen","Total","0.859","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904310-1028-4-C/results/911537501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.859,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904310-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537505",NA,"as N","Nitrogen","Total","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904310-1028-4-C/results/911537505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904310-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537506",NA,"as N","Nitrogen","Dissolved","0.648","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904310-1028-4-C/results/911537506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.648,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904310-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537509",NA,"as N","Nitrogen","Dissolved","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904310-1028-4-C/results/911537509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904330-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537529",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904330-1028-4-C/results/911537529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904330-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537533",NA,"as N","Nitrogen","Total","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904330-1028-4-C/results/911537533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904330-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537534",NA,"as N","Nitrogen","Dissolved","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904330-1028-4-C/results/911537534/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904330-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537537",NA,"as N","Nitrogen","Dissolved","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904330-1028-4-C/results/911537537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904340-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537557",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904340-1028-4-C/results/911537557/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904340-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537561",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904340-1028-4-C/results/911537561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904340-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537562",NA,"as N","Nitrogen","Dissolved","0.979","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904340-1028-4-C/results/911537562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.979,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904340-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537565",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904340-1028-4-C/results/911537565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-28 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904490-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537585",NA,"as N","Nitrogen","Total","0.806","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904490-1027-4-C/results/911537585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-27 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.806,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904490-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537589",NA,"as N","Nitrogen","Total","0.926","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904490-1027-4-C/results/911537589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-27 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.926,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904490-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537590",NA,"as N","Nitrogen","Dissolved","0.914","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904490-1027-4-C/results/911537590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:17","STORET",7,NA,2020-10-27 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.914,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904490-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537593",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904490-1027-4-C/results/911537593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904510-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537613",NA,"as N","Nitrogen","Total","3.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904510-1027-4-C/results/911537613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.82,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904510-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537617",NA,"as N","Nitrogen","Total","4.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904510-1027-4-C/results/911537617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904510-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537618",NA,"as N","Nitrogen","Dissolved","3.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904510-1027-4-C/results/911537618/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904510-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537621",NA,"as N","Nitrogen","Dissolved","4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904510-1027-4-C/results/911537621/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904720-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537641",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904720-1027-4-C/results/911537641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904720-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537645",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904720-1027-4-C/results/911537645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904720-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537646",NA,"as N","Nitrogen","Dissolved","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904720-1027-4-C/results/911537646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904720-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537649",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904720-1027-4-C/results/911537649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904724-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537669",NA,"as N","Nitrogen","Total","3.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904724-1027-4-C/results/911537669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904724-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537673",NA,"as N","Nitrogen","Total","2.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904724-1027-4-C/results/911537673/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904724-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537674",NA,"as N","Nitrogen","Dissolved","2.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904724-1027-4-C/results/911537674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904724-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537677",NA,"as N","Nitrogen","Dissolved","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904724-1027-4-C/results/911537677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904726-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537697",NA,"as N","Nitrogen","Total","4.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904726-1027-4-C/results/911537697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.78,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904726-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537701",NA,"as N","Nitrogen","Total","3.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904726-1027-4-C/results/911537701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904726-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537702",NA,"as N","Nitrogen","Dissolved","4.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904726-1027-4-C/results/911537702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904726-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537705",NA,"as N","Nitrogen","Dissolved","4.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904726-1027-4-C/results/911537705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:18","STORET",7,NA,2020-10-27 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904740-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537725",NA,"as N","Nitrogen","Total","21.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904740-1027-4-C/results/911537725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-27 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904740-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537729",NA,"as N","Nitrogen","Total","22.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904740-1027-4-C/results/911537729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-27 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904740-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537730",NA,"as N","Nitrogen","Dissolved","21.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904740-1027-4-C/results/911537730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-27 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904740-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537733",NA,"as N","Nitrogen","Dissolved","22.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904740-1027-4-C/results/911537733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-27 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904770-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537753",NA,"as N","Nitrogen","Total","30.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904770-1028-4-C/results/911537753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-28 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",30.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904770-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537757",NA,"as N","Nitrogen","Total","33.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904770-1028-4-C/results/911537757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-28 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",33.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904770-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537758",NA,"as N","Nitrogen","Dissolved","31.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904770-1028-4-C/results/911537758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-28 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",31.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904770-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537761",NA,"as N","Nitrogen","Dissolved","32.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904770-1028-4-C/results/911537761/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-28 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",32.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904800-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537781",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904800-1027-4-C/results/911537781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-27 18:40:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904800-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537785",NA,"as N","Nitrogen","Total","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904800-1027-4-C/results/911537785/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-27 18:40:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904800-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537786",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904800-1027-4-C/results/911537786/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-27 18:40:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904800-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537789",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904800-1027-4-C/results/911537789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-27 18:40:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904810-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537810",NA,"as N","Nitrogen","Total","7.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904810-1028-4-C/results/911537810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-28 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904810-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537814",NA,"as N","Nitrogen","Total","7.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904810-1028-4-C/results/911537814/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-28 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904810-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537815",NA,"as N","Nitrogen","Dissolved","7.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904810-1028-4-C/results/911537815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-28 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904810-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537818",NA,"as N","Nitrogen","Dissolved","7.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904810-1028-4-C/results/911537818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:19","STORET",7,NA,2020-10-28 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904870-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537838",NA,"as N","Nitrogen","Total","2.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904870-1027-4-C/results/911537838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904870-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537842",NA,"as N","Nitrogen","Total","2.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904870-1027-4-C/results/911537842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904870-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537843",NA,"as N","Nitrogen","Dissolved","2.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904870-1027-4-C/results/911537843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904870-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537846",NA,"as N","Nitrogen","Dissolved","2.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904870-1027-4-C/results/911537846/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904900-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537866",NA,"as N","Nitrogen","Total","3.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904900-1027-4-C/results/911537866/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904900-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537870",NA,"as N","Nitrogen","Total","3.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904900-1027-4-C/results/911537870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904900-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537871",NA,"as N","Nitrogen","Dissolved","3.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904900-1027-4-C/results/911537871/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904900-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537874",NA,"as N","Nitrogen","Dissolved","3.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904900-1027-4-C/results/911537874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904920-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537894",NA,"as N","Nitrogen","Total","8.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904920-1027-4-C/results/911537894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904920-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537898",NA,"as N","Nitrogen","Total","9.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904920-1027-4-C/results/911537898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904920-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537899",NA,"as N","Nitrogen","Dissolved","8.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904920-1027-4-C/results/911537899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904920-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537902",NA,"as N","Nitrogen","Dissolved","9.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904920-1027-4-C/results/911537902/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904940-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537922",NA,"as N","Nitrogen","Total","21.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904940-1027-4-C/results/911537922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904940-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537926",NA,"as N","Nitrogen","Total","22.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904940-1027-4-C/results/911537926/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904940-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537927",NA,"as N","Nitrogen","Dissolved","20.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904940-1027-4-C/results/911537927/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",20.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904940-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537930",NA,"as N","Nitrogen","Dissolved","23.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904940-1027-4-C/results/911537930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-27 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",23.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904943-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537950",NA,"as N","Nitrogen","Total","7.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904943-1028-4-C/results/911537950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-28 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904943-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537954",NA,"as N","Nitrogen","Total","7.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904943-1028-4-C/results/911537954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-28 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904943-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537955",NA,"as N","Nitrogen","Dissolved","7.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904943-1028-4-C/results/911537955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-28 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904943-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537958",NA,"as N","Nitrogen","Dissolved","7.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904943-1028-4-C/results/911537958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:20","STORET",7,NA,2020-10-28 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904965-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537978",NA,"as N","Nitrogen","Total","3.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904965-1027-4-C/results/911537978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904965-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537982",NA,"as N","Nitrogen","Total","3.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904965-1027-4-C/results/911537982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904965-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537983",NA,"as N","Nitrogen","Dissolved","3.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904965-1027-4-C/results/911537983/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904965-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911537986",NA,"as N","Nitrogen","Dissolved","3.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904965-1027-4-C/results/911537986/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904990-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538006",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904990-1027-4-C/results/911538006/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904990-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538010",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904990-1027-4-C/results/911538010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904990-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538011",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904990-1027-4-C/results/911538011/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4904990-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538014",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4904990-1027-4-C/results/911538014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905000-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538034",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905000-1027-4-C/results/911538034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905000-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538038",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905000-1027-4-C/results/911538038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905000-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538039",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905000-1027-4-C/results/911538039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905000-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538042",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905000-1027-4-C/results/911538042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905040-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538062",NA,"as N","Nitrogen","Total","0.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905040-1027-4-C/results/911538062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905040-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538066",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905040-1027-4-C/results/911538066/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905040-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538067",NA,"as N","Nitrogen","Dissolved","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905040-1027-4-C/results/911538067/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.331,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905040-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538070",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905040-1027-4-C/results/911538070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905050-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538090",NA,"as N","Nitrogen","Total","9.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905050-1027-4-C/results/911538090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:21","STORET",7,NA,2020-10-27 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905050-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538094",NA,"as N","Nitrogen","Total","9.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905050-1027-4-C/results/911538094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905050-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538095",NA,"as N","Nitrogen","Dissolved","9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905050-1027-4-C/results/911538095/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905050-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538098",NA,"as N","Nitrogen","Dissolved","9.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905050-1027-4-C/results/911538098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905052-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538136",NA,"as N","Nitrogen","Total","1.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905052-1027-4-C/results/911538136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905052-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538140",NA,"as N","Nitrogen","Total","2.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905052-1027-4-C/results/911538140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905052-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538141",NA,"as N","Nitrogen","Dissolved","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905052-1027-4-C/results/911538141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905052-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538144",NA,"as N","Nitrogen","Dissolved","2.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905052-1027-4-C/results/911538144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905070-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538182",NA,"as N","Nitrogen","Total","18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905070-1027-4-C/results/911538182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905070-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538186",NA,"as N","Nitrogen","Total","17.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905070-1027-4-C/results/911538186/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905070-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538187",NA,"as N","Nitrogen","Dissolved","17.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905070-1027-4-C/results/911538187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","18","Y",FALSE +"2660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905070-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538190",NA,"as N","Nitrogen","Dissolved","17.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905070-1027-4-C/results/911538190/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:22","STORET",7,NA,2020-10-27 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","18","Y",FALSE +"2661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905078-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538262",NA,"as N","Nitrogen","Total","0.683","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905078-1027-4-C/results/911538262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:23","STORET",7,NA,2020-10-27 17:00:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.683,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905078-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538266",NA,"as N","Nitrogen","Total","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905078-1027-4-C/results/911538266/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:23","STORET",7,NA,2020-10-27 17:00:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905078-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538267",NA,"as N","Nitrogen","Dissolved","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905078-1027-4-C/results/911538267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:23","STORET",7,NA,2020-10-27 17:00:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905078-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538270",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905078-1027-4-C/results/911538270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:23","STORET",7,NA,2020-10-27 17:00:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905090-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538274",NA,"as N","Nitrogen","Total","11.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905090-1027-4-C/results/911538274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:23","STORET",7,NA,2020-10-27 17:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905090-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538278",NA,"as N","Nitrogen","Total","11.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905090-1027-4-C/results/911538278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:23","STORET",7,NA,2020-10-27 17:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905090-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538279",NA,"as N","Nitrogen","Dissolved","11.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905090-1027-4-C/results/911538279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:23","STORET",7,NA,2020-10-27 17:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905090-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538282",NA,"as N","Nitrogen","Dissolved","11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905090-1027-4-C/results/911538282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:23","STORET",7,NA,2020-10-27 17:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905200-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538319",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905200-1027-4-C/results/911538319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905200-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538323",NA,"as N","Nitrogen","Total","0.174","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905200-1027-4-C/results/911538323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.174,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905200-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538324",NA,"as N","Nitrogen","Dissolved","0.301","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905200-1027-4-C/results/911538324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.301,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905200-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538327",NA,"as N","Nitrogen","Dissolved","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905200-1027-4-C/results/911538327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905301-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538347",NA,"as N","Nitrogen","Total","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905301-1027-4-C/results/911538347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 16:10:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905301-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538351",NA,"as N","Nitrogen","Total","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905301-1027-4-C/results/911538351/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 16:10:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905301-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538352",NA,"as N","Nitrogen","Dissolved","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905301-1027-4-C/results/911538352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 16:10:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905301-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538355","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905301-1027-4-C/results/911538355/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 16:10:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538375",NA,"as N","Nitrogen","Total","0.359","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905400-1027-4-C/results/911538375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.359,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538379",NA,"as N","Nitrogen","Total","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905400-1027-4-C/results/911538379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538380",NA,"as N","Nitrogen","Dissolved","0.353","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905400-1027-4-C/results/911538380/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.353,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538383",NA,"as N","Nitrogen","Dissolved","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905400-1027-4-C/results/911538383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905440-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538403",NA,"as N","Nitrogen","Total","0.298","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905440-1027-4-C/results/911538403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 21:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.298,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905440-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538407",NA,"as N","Nitrogen","Total","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905440-1027-4-C/results/911538407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 21:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.331,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905440-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538408",NA,"as N","Nitrogen","Dissolved","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905440-1027-4-C/results/911538408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 21:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905440-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538411",NA,"as N","Nitrogen","Dissolved","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905440-1027-4-C/results/911538411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:24","STORET",7,NA,2020-10-27 21:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905441-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538431",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905441-1027-4-C/results/911538431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905441-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538435",NA,"as N","Nitrogen","Total","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905441-1027-4-C/results/911538435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905441-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538436",NA,"as N","Nitrogen","Dissolved","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905441-1027-4-C/results/911538436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905441-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538439",NA,"as N","Nitrogen","Dissolved","0.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905441-1027-4-C/results/911538439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-27 21:50:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905520-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538460",NA,"as N","Nitrogen","Total","12.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905520-1028-4-C/results/911538460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 17:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905520-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538464",NA,"as N","Nitrogen","Total","13.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905520-1028-4-C/results/911538464/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 17:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905520-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538465",NA,"as N","Nitrogen","Dissolved","13.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905520-1028-4-C/results/911538465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 17:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905520-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538468",NA,"as N","Nitrogen","Dissolved","13.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905520-1028-4-C/results/911538468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 17:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905540-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538489",NA,"as N","Nitrogen","Total","40","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905540-1028-4-C/results/911538489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",40,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905540-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538493",NA,"as N","Nitrogen","Total","43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905540-1028-4-C/results/911538493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",43,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905540-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538494",NA,"as N","Nitrogen","Dissolved","40.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905540-1028-4-C/results/911538494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",40.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905540-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538497",NA,"as N","Nitrogen","Dissolved","41.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905540-1028-4-C/results/911538497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",41.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905580-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538518",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905580-1028-4-C/results/911538518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905580-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538522",NA,"as N","Nitrogen","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905580-1028-4-C/results/911538522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905580-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538523",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905580-1028-4-C/results/911538523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:25","STORET",7,NA,2020-10-28 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905580-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538526",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905580-1028-4-C/results/911538526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905590-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538546",NA,"as N","Nitrogen","Total","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905590-1028-4-C/results/911538546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905590-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538550",NA,"as N","Nitrogen","Total","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905590-1028-4-C/results/911538550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905590-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538551",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905590-1028-4-C/results/911538551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905590-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538554",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905590-1028-4-C/results/911538554/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905625-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905625","Little Bear River at 4700 S xing below RR bridge",NA,NA,NA,NA,"41.6468700000","-111.9224400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538574",NA,"as N","Nitrogen","Total","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905625-1028-4-C/results/911538574/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",41.64687,-111.92244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905625-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905625","Little Bear River at 4700 S xing below RR bridge",NA,NA,NA,NA,"41.6468700000","-111.9224400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538578",NA,"as N","Nitrogen","Total","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905625-1028-4-C/results/911538578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.64687,-111.92244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905625-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905625","Little Bear River at 4700 S xing below RR bridge",NA,NA,NA,NA,"41.6468700000","-111.9224400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538579",NA,"as N","Nitrogen","Dissolved","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905625-1028-4-C/results/911538579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",41.64687,-111.92244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905625-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905625","Little Bear River at 4700 S xing below RR bridge",NA,NA,NA,NA,"41.6468700000","-111.9224400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538582",NA,"as N","Nitrogen","Dissolved","0.517","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905625-1028-4-C/results/911538582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.517,"MG/L","Numeric","Not Reviewed","Uncensored",41.64687,-111.92244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905630-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538602",NA,"as N","Nitrogen","Total","0.468","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905630-1028-4-C/results/911538602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.468,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905630-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538606",NA,"as N","Nitrogen","Total","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905630-1028-4-C/results/911538606/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905630-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538607",NA,"as N","Nitrogen","Dissolved","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905630-1028-4-C/results/911538607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905630-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538610",NA,"as N","Nitrogen","Dissolved","0.564","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905630-1028-4-C/results/911538610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.564,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905631-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538630",NA,"as N","Nitrogen","Total","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905631-1028-4-C/results/911538630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:20:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905631-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538634",NA,"as N","Nitrogen","Total","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905631-1028-4-C/results/911538634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:20:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905631-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538635",NA,"as N","Nitrogen","Dissolved","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905631-1028-4-C/results/911538635/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:20:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905631-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538638",NA,"as N","Nitrogen","Dissolved","0.306","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905631-1028-4-C/results/911538638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:26","STORET",7,NA,2020-10-28 18:20:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.306,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905650-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538658",NA,"as N","Nitrogen","Total","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905650-1028-4-C/results/911538658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-28 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905650-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538662",NA,"as N","Nitrogen","Total","0.739","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905650-1028-4-C/results/911538662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-28 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.739,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905650-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538663",NA,"as N","Nitrogen","Dissolved","0.608","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905650-1028-4-C/results/911538663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-28 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.608,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905650-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538666",NA,"as N","Nitrogen","Dissolved","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905650-1028-4-C/results/911538666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-28 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905670-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538686",NA,"as N","Nitrogen","Total","0.706","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905670-1027-4-C/results/911538686/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.706,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905670-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538690",NA,"as N","Nitrogen","Total","0.732","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905670-1027-4-C/results/911538690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.732,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905670-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538691",NA,"as N","Nitrogen","Dissolved","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905670-1027-4-C/results/911538691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905670-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538694",NA,"as N","Nitrogen","Dissolved","0.695","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905670-1027-4-C/results/911538694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.695,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538714",NA,"as N","Nitrogen","Total","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905700-1027-4-C/results/911538714/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 22:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538718",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905700-1027-4-C/results/911538718/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 22:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538719",NA,"as N","Nitrogen","Dissolved","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905700-1027-4-C/results/911538719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 22:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538722","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905700-1027-4-C/results/911538722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 22:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905740-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538742",NA,"as N","Nitrogen","Total","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905740-1027-4-C/results/911538742/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 23:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905740-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538746",NA,"as N","Nitrogen","Total","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905740-1027-4-C/results/911538746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 23:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905740-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538747",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905740-1027-4-C/results/911538747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 23:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905740-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538750","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905740-1027-4-C/results/911538750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:27","STORET",7,NA,2020-10-27 23:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905750-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538770",NA,"as N","Nitrogen","Total","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905750-1027-4-C/results/911538770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 22:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905750-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538774","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905750-1027-4-C/results/911538774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 22:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905750-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538775",NA,"as N","Nitrogen","Dissolved","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905750-1027-4-C/results/911538775/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 22:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905750-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538778","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905750-1027-4-C/results/911538778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 22:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905770-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538798",NA,"as N","Nitrogen","Total","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905770-1027-4-C/results/911538798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 23:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905770-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538802",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905770-1027-4-C/results/911538802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 23:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905770-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538803",NA,"as N","Nitrogen","Dissolved","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905770-1027-4-C/results/911538803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 23:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905770-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538806","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905770-1027-4-C/results/911538806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 23:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905780-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538826",NA,"as N","Nitrogen","Total","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905780-1027-4-C/results/911538826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 23:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905780-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538830",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905780-1027-4-C/results/911538830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 23:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905780-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538831",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905780-1027-4-C/results/911538831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 23:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905780-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538834","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905780-1027-4-C/results/911538834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-27 23:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905940-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538854",NA,"as N","Nitrogen","Total","3.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905940-1028-4-C/results/911538854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-28 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.82,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905940-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538858",NA,"as N","Nitrogen","Total","4.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905940-1028-4-C/results/911538858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-28 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905940-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538859",NA,"as N","Nitrogen","Dissolved","3.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905940-1028-4-C/results/911538859/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-28 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4905940-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538862",NA,"as N","Nitrogen","Dissolved","3.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4905940-1028-4-C/results/911538862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:28","STORET",7,NA,2020-10-28 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.97,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4906400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538882",NA,"as N","Nitrogen","Total","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4906400-1027-4-C/results/911538882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-27 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4906400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538886",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4906400-1027-4-C/results/911538886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-27 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4906400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538887",NA,"as N","Nitrogen","Dissolved","0.304","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4906400-1027-4-C/results/911538887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-27 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.304,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4906400-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538890",NA,"as N","Nitrogen","Dissolved","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4906400-1027-4-C/results/911538890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-27 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908100-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538910",NA,"as N","Nitrogen","Total","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908100-1026-4-C/results/911538910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 21:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908100-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538914",NA,"as N","Nitrogen","Total","0.688","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908100-1026-4-C/results/911538914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 21:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.688,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908100-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538915",NA,"as N","Nitrogen","Dissolved","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908100-1026-4-C/results/911538915/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 21:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908100-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538918","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908100-1026-4-C/results/911538918/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 21:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908130-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538938",NA,"as N","Nitrogen","Total","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908130-1026-4-C/results/911538938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 19:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908130-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538942",NA,"as N","Nitrogen","Total","0.205","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908130-1026-4-C/results/911538942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 19:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.205,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908130-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538943",NA,"as N","Nitrogen","Dissolved","0.295","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908130-1026-4-C/results/911538943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 19:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.295,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908130-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538946","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908130-1026-4-C/results/911538946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 19:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908140-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538966",NA,"as N","Nitrogen","Total","0.359","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908140-1026-4-C/results/911538966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.359,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908140-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538970",NA,"as N","Nitrogen","Total","0.326","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908140-1026-4-C/results/911538970/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.326,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908140-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538971",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908140-1026-4-C/results/911538971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908140-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538974",NA,"as N","Nitrogen","Dissolved","0.236","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908140-1026-4-C/results/911538974/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.236,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908152-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538994",NA,"as N","Nitrogen","Total","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908152-1026-4-C/results/911538994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 22:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908152-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538998",NA,"as N","Nitrogen","Total","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908152-1026-4-C/results/911538998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:29","STORET",7,NA,2020-10-26 22:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908152-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911538999",NA,"as N","Nitrogen","Dissolved","0.434","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908152-1026-4-C/results/911538999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 22:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.434,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908152-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539002",NA,"as N","Nitrogen","Dissolved","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908152-1026-4-C/results/911539002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 22:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908160-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539022",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908160-1026-4-C/results/911539022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908160-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539026",NA,"as N","Nitrogen","Total","0.195","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908160-1026-4-C/results/911539026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Pass","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908160-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539027",NA,"as N","Nitrogen","Dissolved","0.281","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908160-1026-4-C/results/911539027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.281,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908160-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539030","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908160-1026-4-C/results/911539030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908165-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539050",NA,"as N","Nitrogen","Total","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908165-1026-4-C/results/911539050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 20:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908165-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539054",NA,"as N","Nitrogen","Total","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908165-1026-4-C/results/911539054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 20:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908165-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539055",NA,"as N","Nitrogen","Dissolved","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908165-1026-4-C/results/911539055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 20:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908165-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539058",NA,"as N","Nitrogen","Dissolved","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908165-1026-4-C/results/911539058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 20:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908168-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539078",NA,"as N","Nitrogen","Total","0.145","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908168-1026-4-C/results/911539078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 20:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.145,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908168-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539082","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908168-1026-4-C/results/911539082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 20:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908168-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539083",NA,"as N","Nitrogen","Dissolved","0.192","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908168-1026-4-C/results/911539083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 20:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.192,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908168-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539086","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908168-1026-4-C/results/911539086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:30","STORET",7,NA,2020-10-26 20:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908170-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539106",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908170-1026-4-C/results/911539106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908170-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539110",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908170-1026-4-C/results/911539110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908170-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539111",NA,"as N","Nitrogen","Dissolved","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908170-1026-4-C/results/911539111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908170-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539114",NA,"as N","Nitrogen","Dissolved","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908170-1026-4-C/results/911539114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908280-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539134",NA,"as N","Nitrogen","Total","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908280-1026-4-C/results/911539134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908280-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539138",NA,"as N","Nitrogen","Total","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908280-1026-4-C/results/911539138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908280-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539139",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908280-1026-4-C/results/911539139/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908280-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539142",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908280-1026-4-C/results/911539142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908281-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539162",NA,"as N","Nitrogen","Total","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908281-1026-4-C/results/911539162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 20:00:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908281-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539166",NA,"as N","Nitrogen","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908281-1026-4-C/results/911539166/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 20:00:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908281-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539167",NA,"as N","Nitrogen","Dissolved","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908281-1026-4-C/results/911539167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 20:00:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908281-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-26,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539170",NA,"as N","Nitrogen","Dissolved","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908281-1026-4-C/results/911539170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 20:00:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908350-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539190",NA,"as N","Nitrogen","Total","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908350-1026-4-C/results/911539190/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 18:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908350-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539194",NA,"as N","Nitrogen","Total","0.301","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908350-1026-4-C/results/911539194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 18:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.301,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908350-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539195",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908350-1026-4-C/results/911539195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:31","STORET",7,NA,2020-10-26 18:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908350-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539198",NA,"as N","Nitrogen","Dissolved","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908350-1026-4-C/results/911539198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-26 18:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908500-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539218",NA,"as N","Nitrogen","Total","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908500-1026-4-C/results/911539218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-26 17:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908500-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539222",NA,"as N","Nitrogen","Total","0.877","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908500-1026-4-C/results/911539222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-26 17:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.877,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908500-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539223",NA,"as N","Nitrogen","Dissolved","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908500-1026-4-C/results/911539223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-26 17:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908500-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539226",NA,"as N","Nitrogen","Dissolved","0.684","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908500-1026-4-C/results/911539226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-26 17:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.684,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908697-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539246",NA,"as N","Nitrogen","Total","0.393","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908697-1026-4-C/results/911539246/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-26 18:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.393,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908697-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539250",NA,"as N","Nitrogen","Total","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908697-1026-4-C/results/911539250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-26 18:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908697-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539251",NA,"as N","Nitrogen","Dissolved","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908697-1026-4-C/results/911539251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-26 18:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908697-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539254",NA,"as N","Nitrogen","Dissolved","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908697-1026-4-C/results/911539254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-26 18:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908744-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539274",NA,"as N","Nitrogen","Total","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908744-1027-4-C/results/911539274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-27 15:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908744-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539278",NA,"as N","Nitrogen","Total","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908744-1027-4-C/results/911539278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-27 15:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908744-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539279",NA,"as N","Nitrogen","Dissolved","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908744-1027-4-C/results/911539279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-27 15:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908744-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539282",NA,"as N","Nitrogen","Dissolved","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908744-1027-4-C/results/911539282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:32","STORET",7,NA,2020-10-27 15:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908745-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539302",NA,"as N","Nitrogen","Dissolved","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908745-1026-4-C/results/911539302/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908745-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539305",NA,"as N","Nitrogen","Dissolved","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908745-1026-4-C/results/911539305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908745-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539306",NA,"as N","Nitrogen","Total","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908745-1026-4-C/results/911539306/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-4908745-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539310",NA,"as N","Nitrogen","Total","0.222","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-4908745-1026-4-C/results/911539310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.222,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-5906850-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539325",NA,"as N","Nitrogen","Total","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5906850-1026-4-C/results/911539325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-5906850-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539329",NA,"as N","Nitrogen","Total","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5906850-1026-4-C/results/911539329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-5906850-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539330",NA,"as N","Nitrogen","Dissolved","0.289","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5906850-1026-4-C/results/911539330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.289,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-5906850-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539333",NA,"as N","Nitrogen","Dissolved","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5906850-1026-4-C/results/911539333/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-5984855-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539354",NA,"as N","Nitrogen","Dissolved","7.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5984855-1026-4-C/results/911539354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 15:40:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-5984855-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539357",NA,"as N","Nitrogen","Dissolved","9.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5984855-1026-4-C/results/911539357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 15:40:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.95,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-5984855-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539358",NA,"as N","Nitrogen","Total","8.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5984855-1026-4-C/results/911539358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 15:40:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-5984855-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539362",NA,"as N","Nitrogen","Total","9.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5984855-1026-4-C/results/911539362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:33","STORET",7,NA,2020-10-26 15:40:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201026-5989995-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539380","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201026-5989995-1028-4-C/results/911539380/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-10-28 18:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900751-1116-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-16,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539386","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1116-4-C/results/911539386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-17 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900751-1116-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-16,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539390","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1116-4-C/results/911539390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-17 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900751-1117-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-17,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539429","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1117-4-C/results/911539429/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-18 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900751-1117-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-17,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539433","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1117-4-C/results/911539433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-18 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900751-1118-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-18,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539438","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1118-4-C/results/911539438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-18 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900751-1118-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-18,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539442","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900751-1118-4-C/results/911539442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-18 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900753-1130-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-30,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539447","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1130-4-C/results/911539447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-30 23:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900753-1130-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-30,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539451","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1130-4-C/results/911539451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-30 23:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901050-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539456",NA,"as N","Nitrogen","Total","0.755","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901050-1116-4-C/results/911539456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-16 18:00:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.755,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901050-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539460",NA,"as N","Nitrogen","Dissolved","0.731","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901050-1116-4-C/results/911539460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:34","STORET",7,NA,2020-11-16 18:00:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.731,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901100-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539465",NA,"as N","Nitrogen","Total","0.824","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901100-1116-4-C/results/911539465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:35","STORET",7,NA,2020-11-16 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.824,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901100-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539469",NA,"as N","Nitrogen","Dissolved","0.851","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901100-1116-4-C/results/911539469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:35","STORET",7,NA,2020-11-16 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.851,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901180-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539474",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901180-1116-4-C/results/911539474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:35","STORET",7,NA,2020-11-16 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901180-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539478",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901180-1116-4-C/results/911539478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:35","STORET",7,NA,2020-11-16 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901190-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539518",NA,"as N","Nitrogen","Total","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901190-1116-4-C/results/911539518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:35","STORET",7,NA,2020-11-16 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901190-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539522",NA,"as N","Nitrogen","Dissolved","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901190-1116-4-C/results/911539522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:35","STORET",7,NA,2020-11-16 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901200-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539562",NA,"as N","Nitrogen","Total","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901200-1116-4-C/results/911539562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:36","STORET",7,NA,2020-11-16 17:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901200-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539566",NA,"as N","Nitrogen","Dissolved","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901200-1116-4-C/results/911539566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:36","STORET",7,NA,2020-11-16 17:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901225-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539605",NA,"as N","Nitrogen","Total","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901225-1116-4-C/results/911539605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:36","STORET",7,NA,2020-11-16 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901225-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539609",NA,"as N","Nitrogen","Dissolved","1.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901225-1116-4-C/results/911539609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:36","STORET",7,NA,2020-11-16 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901431-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539648",NA,"as N","Nitrogen","Total","4.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901431-1116-4-C/results/911539648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:36","STORET",7,NA,2020-11-16 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901431-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539652",NA,"as N","Nitrogen","Dissolved","3.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901431-1116-4-C/results/911539652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:36","STORET",7,NA,2020-11-16 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901432-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-16,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539657",NA,"as N","Nitrogen","Total","4.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901432-1116-4-C/results/911539657/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:36","STORET",7,NA,2020-11-16 20:20:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901432-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-16,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539661",NA,"as N","Nitrogen","Dissolved","4.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901432-1116-4-C/results/911539661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:36","STORET",7,NA,2020-11-16 20:20:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901600-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539666",NA,"as N","Nitrogen","Total","0.846","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901600-1116-4-C/results/911539666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:36","STORET",7,NA,2020-11-16 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.846,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901600-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539670",NA,"as N","Nitrogen","Dissolved","0.907","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901600-1116-4-C/results/911539670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.907,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901700-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539675",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901700-1116-4-C/results/911539675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901700-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539679",NA,"as N","Nitrogen","Dissolved","1.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901700-1116-4-C/results/911539679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901730-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539684",NA,"as N","Nitrogen","Total","0.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901730-1116-4-C/results/911539684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 21:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901730-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539688",NA,"as N","Nitrogen","Dissolved","0.969","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901730-1116-4-C/results/911539688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 21:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.969,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901790-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539693",NA,"as N","Nitrogen","Total","0.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901790-1117-4-C/results/911539693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-17 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901790-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539697",NA,"as N","Nitrogen","Dissolved","0.809","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901790-1117-4-C/results/911539697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-17 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.809,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901950-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539702",NA,"as N","Nitrogen","Total","0.959","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901950-1117-4-C/results/911539702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-17 17:30:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.959,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901950-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539706",NA,"as N","Nitrogen","Dissolved","0.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901950-1117-4-C/results/911539706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-17 17:30:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901975-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539711",NA,"as N","Nitrogen","Total","3.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901975-1117-4-C/results/911539711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-17 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901975-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539715",NA,"as N","Nitrogen","Dissolved","2.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901975-1117-4-C/results/911539715/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-17 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901980-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539720",NA,"as N","Nitrogen","Total","0.929","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901980-1117-4-C/results/911539720/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-17 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.929,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4901980-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539724",NA,"as N","Nitrogen","Dissolved","0.908","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4901980-1117-4-C/results/911539724/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-17 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.908,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902000-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539729",NA,"as N","Nitrogen","Total","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902000-1116-4-C/results/911539729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902000-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539733",NA,"as N","Nitrogen","Dissolved","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902000-1116-4-C/results/911539733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902040-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539739",NA,"as N","Nitrogen","Total","1.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902040-1116-4-C/results/911539739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 18:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.81,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902040-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539743",NA,"as N","Nitrogen","Dissolved","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902040-1116-4-C/results/911539743/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 18:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902050-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539748",NA,"as N","Nitrogen","Total","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902050-1116-4-C/results/911539748/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902050-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539752",NA,"as N","Nitrogen","Dissolved","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902050-1116-4-C/results/911539752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902700-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539757",NA,"as N","Nitrogen","Total","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902700-1116-4-C/results/911539757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902700-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539761",NA,"as N","Nitrogen","Dissolved","1.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902700-1116-4-C/results/911539761/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.96,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902710-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539767",NA,"as N","Nitrogen","Total","18.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902710-1116-4-C/results/911539767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 21:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902710-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539771",NA,"as N","Nitrogen","Dissolved","16.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902710-1116-4-C/results/911539771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 21:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902720-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539777",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902720-1116-4-C/results/911539777/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902720-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539781",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902720-1116-4-C/results/911539781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:37","STORET",7,NA,2020-11-16 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902900-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539786",NA,"as N","Nitrogen","Total","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902900-1116-4-C/results/911539786/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-16 22:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902900-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539790",NA,"as N","Nitrogen","Dissolved","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902900-1116-4-C/results/911539790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-16 22:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902940-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539795",NA,"as N","Nitrogen","Total","0.422","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902940-1116-4-C/results/911539795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-16 23:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.422,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902940-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539799",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902940-1116-4-C/results/911539799/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-16 23:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902941-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-16,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539804",NA,"as N","Nitrogen","Total","0.399","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902941-1116-4-C/results/911539804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-16 23:10:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.399,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4902941-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-16,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539808",NA,"as N","Nitrogen","Dissolved","0.196","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4902941-1116-4-C/results/911539808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-16 23:10:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.196,"MG/L","Numeric","Pass","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903030-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539813",NA,"as N","Nitrogen","Total","2.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903030-1117-4-C/results/911539813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 21:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903030-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539817",NA,"as N","Nitrogen","Dissolved","2.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903030-1117-4-C/results/911539817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 21:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903060-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539822",NA,"as N","Nitrogen","Total","5.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903060-1117-4-C/results/911539822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 21:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903060-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539826",NA,"as N","Nitrogen","Dissolved","5.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903060-1117-4-C/results/911539826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 21:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903080-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539831",NA,"as N","Nitrogen","Total","5.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903080-1117-4-C/results/911539831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903080-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539835",NA,"as N","Nitrogen","Dissolved","5.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903080-1117-4-C/results/911539835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903180-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539840",NA,"as N","Nitrogen","Total","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903180-1117-4-C/results/911539840/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 22:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903180-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539844",NA,"as N","Nitrogen","Dissolved","1.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903180-1117-4-C/results/911539844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 22:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903190-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539849",NA,"as N","Nitrogen","Total","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903190-1117-4-C/results/911539849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 22:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903190-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539853",NA,"as N","Nitrogen","Dissolved","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903190-1117-4-C/results/911539853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 22:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903191-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539858",NA,"as N","Nitrogen","Total","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903191-1117-4-C/results/911539858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 22:20:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903191-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539862",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903191-1117-4-C/results/911539862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 22:20:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903200-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539867",NA,"as N","Nitrogen","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903200-1117-4-C/results/911539867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 22:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903200-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539871",NA,"as N","Nitrogen","Dissolved","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903200-1117-4-C/results/911539871/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 22:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903260-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539876",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903260-1117-4-C/results/911539876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903260-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539880",NA,"as N","Nitrogen","Dissolved","0.966","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903260-1117-4-C/results/911539880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.966,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903400-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539885",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903400-1117-4-C/results/911539885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903400-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539889",NA,"as N","Nitrogen","Dissolved","0.989","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903400-1117-4-C/results/911539889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:38","STORET",7,NA,2020-11-17 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.989,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903500-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539894",NA,"as N","Nitrogen","Total","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903500-1117-4-C/results/911539894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903500-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539898",NA,"as N","Nitrogen","Dissolved","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903500-1117-4-C/results/911539898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903501-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539903",NA,"as N","Nitrogen","Total","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903501-1117-4-C/results/911539903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 19:10:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903501-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539907",NA,"as N","Nitrogen","Dissolved","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903501-1117-4-C/results/911539907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 19:10:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903504-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539912",NA,"as N","Nitrogen","Total","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903504-1117-4-C/results/911539912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903504-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539916",NA,"as N","Nitrogen","Dissolved","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903504-1117-4-C/results/911539916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903507-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539921",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903507-1117-4-C/results/911539921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903507-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539925",NA,"as N","Nitrogen","Dissolved","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903507-1117-4-C/results/911539925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903510-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539930",NA,"as N","Nitrogen","Total","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903510-1117-4-C/results/911539930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903510-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539934",NA,"as N","Nitrogen","Dissolved","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903510-1117-4-C/results/911539934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-17 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903699-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539939",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903699-1118-4-C/results/911539939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 16:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903699-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539943",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903699-1118-4-C/results/911539943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 16:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903723-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539949",NA,"as N","Nitrogen","Total","16.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903723-1118-4-C/results/911539949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 17:20:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903723-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539953",NA,"as N","Nitrogen","Dissolved","16.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903723-1118-4-C/results/911539953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 17:20:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903770-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539959",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903770-1118-4-C/results/911539959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903770-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539963",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903770-1118-4-C/results/911539963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903820-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539977",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903820-1118-4-C/results/911539977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 16:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903820-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539981",NA,"as N","Nitrogen","Dissolved","0.878","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903820-1118-4-C/results/911539981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 16:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.878,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904240-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539987",NA,"as N","Nitrogen","Total","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904240-1118-4-C/results/911539987/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904240-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539991",NA,"as N","Nitrogen","Dissolved","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904240-1118-4-C/results/911539991/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904241-1118-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-18,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911539996",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904241-1118-4-C/results/911539996/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 17:40:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904241-1118-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-18,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540000",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904241-1118-4-C/results/911540000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 17:40:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904250-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540005",NA,"as N","Nitrogen","Total","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904250-1118-4-C/results/911540005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904250-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540009",NA,"as N","Nitrogen","Dissolved","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904250-1118-4-C/results/911540009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:39","STORET",7,NA,2020-11-18 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904300-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904300","HIGH CK @ U91 XING",NA,NA,NA,NA,"41.9568700000","-111.8130100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540014",NA,"as N","Nitrogen","Total","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904300-1118-4-C/results/911540014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-18 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.95687,-111.81301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904300-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904300","HIGH CK @ U91 XING",NA,NA,NA,NA,"41.9568700000","-111.8130100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540018",NA,"as N","Nitrogen","Dissolved","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904300-1118-4-C/results/911540018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-18 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",41.95687,-111.81301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904310-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540023",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904310-1118-4-C/results/911540023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-18 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904310-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540027",NA,"as N","Nitrogen","Dissolved","0.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904310-1118-4-C/results/911540027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-18 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904340-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540032",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904340-1118-4-C/results/911540032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-18 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904340-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540036",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904340-1118-4-C/results/911540036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-18 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904490-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540041",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904490-1117-4-C/results/911540041/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904490-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540045",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904490-1117-4-C/results/911540045/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904510-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540050",NA,"as N","Nitrogen","Total","5.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904510-1117-4-C/results/911540050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904510-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540054",NA,"as N","Nitrogen","Dissolved","4.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904510-1117-4-C/results/911540054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904720-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540059",NA,"as N","Nitrogen","Total","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904720-1117-4-C/results/911540059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 21:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904720-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540063",NA,"as N","Nitrogen","Dissolved","0.866","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904720-1117-4-C/results/911540063/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 21:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.866,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904724-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540068",NA,"as N","Nitrogen","Total","3.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904724-1117-4-C/results/911540068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904724-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540072",NA,"as N","Nitrogen","Dissolved","2.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904724-1117-4-C/results/911540072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904726-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540077",NA,"as N","Nitrogen","Total","7.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904726-1117-4-C/results/911540077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904726-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540081",NA,"as N","Nitrogen","Dissolved","6.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904726-1117-4-C/results/911540081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-17 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908130-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540104",NA,"as N","Nitrogen","Total","0.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908130-1130-4-C/results/911540104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-30 19:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908130-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540108",NA,"as N","Nitrogen","Dissolved","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908130-1130-4-C/results/911540108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-30 19:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908140-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540113",NA,"as N","Nitrogen","Total","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908140-1130-4-C/results/911540113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-30 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908140-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540117",NA,"as N","Nitrogen","Dissolved","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908140-1130-4-C/results/911540117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-30 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908160-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540122",NA,"as N","Nitrogen","Total","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908160-1130-4-C/results/911540122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-30 21:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908160-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540126",NA,"as N","Nitrogen","Dissolved","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908160-1130-4-C/results/911540126/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:40","STORET",7,NA,2020-11-30 21:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908165-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540131",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908165-1130-4-C/results/911540131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 20:25:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908165-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540135",NA,"as N","Nitrogen","Dissolved","0.306","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908165-1130-4-C/results/911540135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 20:25:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.306,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908168-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540140",NA,"as N","Nitrogen","Total","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908168-1130-4-C/results/911540140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 20:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908168-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540144",NA,"as N","Nitrogen","Dissolved","0.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908168-1130-4-C/results/911540144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 20:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908170-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540149",NA,"as N","Nitrogen","Total","0.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908170-1130-4-C/results/911540149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 20:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908170-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540153",NA,"as N","Nitrogen","Dissolved","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908170-1130-4-C/results/911540153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 20:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908280-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540158",NA,"as N","Nitrogen","Total","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908280-1130-4-C/results/911540158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 19:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908280-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540162",NA,"as N","Nitrogen","Dissolved","0.418","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908280-1130-4-C/results/911540162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 19:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.418,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908281-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-30,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540167",NA,"as N","Nitrogen","Total","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908281-1130-4-C/results/911540167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 20:00:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908281-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-30,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540171",NA,"as N","Nitrogen","Dissolved","0.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908281-1130-4-C/results/911540171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 20:00:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908350-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540176",NA,"as N","Nitrogen","Total","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908350-1130-4-C/results/911540176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908350-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540180",NA,"as N","Nitrogen","Dissolved","0.557","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908350-1130-4-C/results/911540180/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.557,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908697-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540185",NA,"as N","Nitrogen","Total","0.407","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908697-1130-4-C/results/911540185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 18:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.407,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908697-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540189",NA,"as N","Nitrogen","Dissolved","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908697-1130-4-C/results/911540189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 18:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908745-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540194",NA,"as N","Nitrogen","Total","0.374","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908745-1116-4-C/results/911540194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-16 22:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.374,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908745-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540198",NA,"as N","Nitrogen","Dissolved","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908745-1116-4-C/results/911540198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-16 22:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-5906850-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540203",NA,"as N","Nitrogen","Total","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-5906850-1130-4-C/results/911540203/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-5906850-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540207",NA,"as N","Nitrogen","Dissolved","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-5906850-1130-4-C/results/911540207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-30 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-5984855-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540213",NA,"as N","Nitrogen","Total","10.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-5984855-1117-4-C/results/911540213/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-17 15:00:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-5984855-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540217",NA,"as N","Nitrogen","Dissolved","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-5984855-1117-4-C/results/911540217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-11-17 15:00:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900470-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540222",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900470-1202-4-C/results/911540222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-12-02 20:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900470-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540226",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900470-1202-4-C/results/911540226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-12-02 20:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900510-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540231",NA,"as N","Nitrogen","Total","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900510-1202-4-C/results/911540231/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-12-02 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.617,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900510-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540235",NA,"as N","Nitrogen","Dissolved","0.656","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900510-1202-4-C/results/911540235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-12-02 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.656,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900511-1202-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-02,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540240",NA,"as N","Nitrogen","Total","0.769","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900511-1202-4-C/results/911540240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:41","STORET",7,NA,2020-12-02 20:25:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.769,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900511-1202-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-02,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540244",NA,"as N","Nitrogen","Dissolved","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900511-1202-4-C/results/911540244/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 20:25:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900753-1201-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-01,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540249","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1201-4-C/results/911540249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900753-1201-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-01,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540253","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1201-4-C/results/911540253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900753-1202-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-02,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540292","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1202-4-C/results/911540292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 21:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4900753-1202-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-02,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540296","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4900753-1202-4-C/results/911540296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 21:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903950-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540301",NA,"as N","Nitrogen","Total","7.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903950-1201-4-C/results/911540301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-01 20:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4903950-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540305",NA,"as N","Nitrogen","Dissolved","7.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4903950-1201-4-C/results/911540305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-01 20:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904110-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540310",NA,"as N","Nitrogen","Total","2.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904110-1202-4-C/results/911540310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 16:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904110-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540314",NA,"as N","Nitrogen","Dissolved","2.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904110-1202-4-C/results/911540314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 16:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904740-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540319",NA,"as N","Nitrogen","Total","14.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904740-1201-4-C/results/911540319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-01 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904740-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540323",NA,"as N","Nitrogen","Dissolved","14.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904740-1201-4-C/results/911540323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-01 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904770-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540328",NA,"as N","Nitrogen","Total","21.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904770-1202-4-C/results/911540328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904770-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540332",NA,"as N","Nitrogen","Dissolved","22.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904770-1202-4-C/results/911540332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904800-1201-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-01,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540337",NA,"as N","Nitrogen","Total","0.868","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904800-1201-4-C/results/911540337/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-01 18:25:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.868,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904800-1201-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-01,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540341",NA,"as N","Nitrogen","Dissolved","0.875","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904800-1201-4-C/results/911540341/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-01 18:25:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.875,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904810-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540347",NA,"as N","Nitrogen","Total","8.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904810-1202-4-C/results/911540347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 16:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904810-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540351",NA,"as N","Nitrogen","Dissolved","8.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904810-1202-4-C/results/911540351/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-02 16:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904870-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540356",NA,"as N","Nitrogen","Total","2.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904870-1201-4-C/results/911540356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-01 20:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904870-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540360",NA,"as N","Nitrogen","Dissolved","2.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904870-1201-4-C/results/911540360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:42","STORET",7,NA,2020-12-01 20:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904900-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540365",NA,"as N","Nitrogen","Total","3.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904900-1201-4-C/results/911540365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 18:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904900-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540369",NA,"as N","Nitrogen","Dissolved","3.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904900-1201-4-C/results/911540369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 18:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904920-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540374",NA,"as N","Nitrogen","Total","5.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904920-1201-4-C/results/911540374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 19:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904920-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540378",NA,"as N","Nitrogen","Dissolved","5.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904920-1201-4-C/results/911540378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 19:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904940-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540383",NA,"as N","Nitrogen","Total","14.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904940-1201-4-C/results/911540383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 20:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904940-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540387",NA,"as N","Nitrogen","Dissolved","14.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904940-1201-4-C/results/911540387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 20:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904943-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540392",NA,"as N","Nitrogen","Total","5.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904943-1202-4-C/results/911540392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-02 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904943-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540396",NA,"as N","Nitrogen","Dissolved","6.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904943-1202-4-C/results/911540396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-02 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904965-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540401",NA,"as N","Nitrogen","Total","2.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904965-1201-4-C/results/911540401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904965-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540405",NA,"as N","Nitrogen","Dissolved","2.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904965-1201-4-C/results/911540405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904990-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540410",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904990-1201-4-C/results/911540410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4904990-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540414",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4904990-1201-4-C/results/911540414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905000-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540419",NA,"as N","Nitrogen","Total","0.849","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905000-1201-4-C/results/911540419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.849,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905000-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540423",NA,"as N","Nitrogen","Dissolved","0.914","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905000-1201-4-C/results/911540423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.914,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905040-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540428",NA,"as N","Nitrogen","Total","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905040-1201-4-C/results/911540428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905040-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540432",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905040-1201-4-C/results/911540432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905050-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540437",NA,"as N","Nitrogen","Total","5.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905050-1201-4-C/results/911540437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905050-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540441",NA,"as N","Nitrogen","Dissolved","5.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905050-1201-4-C/results/911540441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.97,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905052-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540481",NA,"as N","Nitrogen","Total","1.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905052-1201-4-C/results/911540481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:43","STORET",7,NA,2020-12-01 17:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.94,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905052-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540485",NA,"as N","Nitrogen","Dissolved","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905052-1201-4-C/results/911540485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:44","STORET",7,NA,2020-12-01 17:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905070-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540525",NA,"as N","Nitrogen","Total","14.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905070-1201-4-C/results/911540525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:44","STORET",7,NA,2020-12-01 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905070-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540529",NA,"as N","Nitrogen","Dissolved","13.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905070-1201-4-C/results/911540529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:44","STORET",7,NA,2020-12-01 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905078-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540569",NA,"as N","Nitrogen","Total","0.533","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905078-1201-4-C/results/911540569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:44","STORET",7,NA,2020-12-01 16:55:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.533,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905078-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540573",NA,"as N","Nitrogen","Dissolved","0.577","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905078-1201-4-C/results/911540573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:44","STORET",7,NA,2020-12-01 16:55:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.577,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905090-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540613",NA,"as N","Nitrogen","Total","8.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905090-1201-4-C/results/911540613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:44","STORET",7,NA,2020-12-01 17:20:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905090-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540617",NA,"as N","Nitrogen","Dissolved","8.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905090-1201-4-C/results/911540617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:44","STORET",7,NA,2020-12-01 17:20:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905200-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540656",NA,"as N","Nitrogen","Total","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905200-1201-4-C/results/911540656/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 16:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905200-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540660",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905200-1201-4-C/results/911540660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 16:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905301-1201-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-01,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540665",NA,"as N","Nitrogen","Total","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905301-1201-4-C/results/911540665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 16:25:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905301-1201-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-01,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540669",NA,"as N","Nitrogen","Dissolved","0.626","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905301-1201-4-C/results/911540669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 16:25:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.626,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905400-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540674",NA,"as N","Nitrogen","Total","0.388","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905400-1201-4-C/results/911540674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.388,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905400-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540678",NA,"as N","Nitrogen","Dissolved","0.418","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905400-1201-4-C/results/911540678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.418,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905440-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540683",NA,"as N","Nitrogen","Total","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905440-1201-4-C/results/911540683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905440-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540687",NA,"as N","Nitrogen","Dissolved","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905440-1201-4-C/results/911540687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905441-1201-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-01,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540692",NA,"as N","Nitrogen","Total","0.399","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905441-1201-4-C/results/911540692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 21:35:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.399,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905441-1201-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-01,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540696",NA,"as N","Nitrogen","Dissolved","0.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905441-1201-4-C/results/911540696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-01 21:35:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905520-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540702",NA,"as N","Nitrogen","Total","8.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905520-1202-4-C/results/911540702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 17:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.94,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905520-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540706",NA,"as N","Nitrogen","Dissolved","9.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905520-1202-4-C/results/911540706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 17:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905540-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540712",NA,"as N","Nitrogen","Total","24.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905540-1202-4-C/results/911540712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 16:25:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",24.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905540-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540716",NA,"as N","Nitrogen","Dissolved","24.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905540-1202-4-C/results/911540716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 16:25:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",24.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905580-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540722",NA,"as N","Nitrogen","Total","0.701","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905580-1202-4-C/results/911540722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 19:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.701,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905580-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540726",NA,"as N","Nitrogen","Dissolved","0.674","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905580-1202-4-C/results/911540726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 19:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.674,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905590-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540731",NA,"as N","Nitrogen","Total","0.725","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905590-1202-4-C/results/911540731/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 19:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.725,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905590-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540735",NA,"as N","Nitrogen","Dissolved","0.706","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905590-1202-4-C/results/911540735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 19:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.706,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905625-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905625","Little Bear River at 4700 S xing below RR bridge",NA,NA,NA,NA,"41.6468700000","-111.9224400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540740",NA,"as N","Nitrogen","Total","0.473","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905625-1202-4-C/results/911540740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.473,"MG/L","Numeric","Not Reviewed","Uncensored",41.64687,-111.92244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905625-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905625","Little Bear River at 4700 S xing below RR bridge",NA,NA,NA,NA,"41.6468700000","-111.9224400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540744",NA,"as N","Nitrogen","Dissolved","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905625-1202-4-C/results/911540744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",41.64687,-111.92244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905630-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540749",NA,"as N","Nitrogen","Total","0.489","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905630-1202-4-C/results/911540749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 17:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.489,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905630-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540753",NA,"as N","Nitrogen","Dissolved","0.536","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905630-1202-4-C/results/911540753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:45","STORET",7,NA,2020-12-02 17:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.536,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905631-1202-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540758",NA,"as N","Nitrogen","Total","0.493","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905631-1202-4-C/results/911540758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-02 18:00:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.493,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905631-1202-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540762",NA,"as N","Nitrogen","Dissolved","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905631-1202-4-C/results/911540762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-02 18:00:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905650-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540767",NA,"as N","Nitrogen","Total","0.463","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905650-1202-4-C/results/911540767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-02 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.463,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905650-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540771",NA,"as N","Nitrogen","Dissolved","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905650-1202-4-C/results/911540771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-02 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905670-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540776",NA,"as N","Nitrogen","Total","0.689","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905670-1201-4-C/results/911540776/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 21:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.689,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905670-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540780",NA,"as N","Nitrogen","Dissolved","0.669","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905670-1201-4-C/results/911540780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 21:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.669,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905700-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540785",NA,"as N","Nitrogen","Total","0.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905700-1201-4-C/results/911540785/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 22:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905700-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540789",NA,"as N","Nitrogen","Dissolved","0.355","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905700-1201-4-C/results/911540789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 22:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.355,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905740-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540794",NA,"as N","Nitrogen","Total","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905740-1201-4-C/results/911540794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 23:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905740-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540798",NA,"as N","Nitrogen","Dissolved","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905740-1201-4-C/results/911540798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 23:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905750-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540803",NA,"as N","Nitrogen","Total","0.276","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905750-1201-4-C/results/911540803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 22:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.276,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905750-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540807",NA,"as N","Nitrogen","Dissolved","0.317","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905750-1201-4-C/results/911540807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 22:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.317,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905780-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540812",NA,"as N","Nitrogen","Total","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905780-1201-4-C/results/911540812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 22:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905780-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540816",NA,"as N","Nitrogen","Dissolved","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905780-1201-4-C/results/911540816/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 22:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905940-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540821",NA,"as N","Nitrogen","Total","3.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905940-1202-4-C/results/911540821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-02 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.96,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4905940-1202-4-C","Sample-Routine","Water",NA,2020-12-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540825",NA,"as N","Nitrogen","Dissolved","3.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4905940-1202-4-C/results/911540825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-02 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.97,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4906400-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540830",NA,"as N","Nitrogen","Total","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4906400-1201-4-C/results/911540830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4906400-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540834",NA,"as N","Nitrogen","Dissolved","0.465","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4906400-1201-4-C/results/911540834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.465,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908744-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540839",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908744-1201-4-C/results/911540839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 16:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201116-4908744-1201-4-C","Sample-Routine","Water",NA,2020-12-01,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540843",NA,"as N","Nitrogen","Dissolved","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201116-4908744-1201-4-C/results/911540843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-01 16:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900751-1214-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-14,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540848","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1214-4-C/results/911540848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-14 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900751-1214-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-14,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540852","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1214-4-C/results/911540852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:46","STORET",7,NA,2020-12-14 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900751-1215-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540891","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1215-4-C/results/911540891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:47","STORET",7,NA,2020-12-15 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900751-1215-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540895","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1215-4-C/results/911540895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:47","STORET",7,NA,2020-12-15 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900751-1216-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540917","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1216-4-C/results/911540917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:47","STORET",7,NA,2020-12-16 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900751-1216-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540921",NA,"as N","Nitrogen","Dissolved","0.106","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900751-1216-4-C/results/911540921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:47","STORET",7,NA,2020-12-16 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.106,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900753-1214-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-14,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540943","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900753-1214-4-C/results/911540943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:47","STORET",7,NA,2020-12-15 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900753-1214-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-14,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540947","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900753-1214-4-C/results/911540947/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:47","STORET",7,NA,2020-12-15 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900753-1215-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-15,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540969","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900753-1215-4-C/results/911540969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:47","STORET",7,NA,2020-12-16 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4900753-1215-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-15,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540973","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4900753-1215-4-C/results/911540973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:47","STORET",7,NA,2020-12-16 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901180-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540995",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901180-1214-4-C/results/911540995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:48","STORET",7,NA,2020-12-14 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901180-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911540999",NA,"as N","Nitrogen","Dissolved","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901180-1214-4-C/results/911540999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:48","STORET",7,NA,2020-12-14 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901200-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541039",NA,"as N","Nitrogen","Total","2.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901200-1214-4-C/results/911541039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:48","STORET",7,NA,2020-12-14 17:00:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901200-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541043",NA,"as N","Nitrogen","Dissolved","2.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901200-1214-4-C/results/911541043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:48","STORET",7,NA,2020-12-14 17:00:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901225-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541082",NA,"as N","Nitrogen","Total","1.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901225-1214-4-C/results/911541082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:48","STORET",7,NA,2020-12-14 17:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901225-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541086",NA,"as N","Nitrogen","Dissolved","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901225-1214-4-C/results/911541086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:48","STORET",7,NA,2020-12-14 17:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901431-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541125",NA,"as N","Nitrogen","Total","4.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901431-1214-4-C/results/911541125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:49","STORET",7,NA,2020-12-14 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901431-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541129",NA,"as N","Nitrogen","Dissolved","3.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901431-1214-4-C/results/911541129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:49","STORET",7,NA,2020-12-14 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901432-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-14,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541151",NA,"as N","Nitrogen","Total","4.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901432-1214-4-C/results/911541151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:49","STORET",7,NA,2020-12-14 18:50:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901432-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-14,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541155",NA,"as N","Nitrogen","Dissolved","4.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901432-1214-4-C/results/911541155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:49","STORET",7,NA,2020-12-14 18:50:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901600-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541177",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901600-1214-4-C/results/911541177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:49","STORET",7,NA,2020-12-14 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901600-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541181",NA,"as N","Nitrogen","Dissolved","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901600-1214-4-C/results/911541181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:49","STORET",7,NA,2020-12-14 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901730-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541203",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901730-1214-4-C/results/911541203/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:49","STORET",7,NA,2020-12-14 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901730-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541207",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901730-1214-4-C/results/911541207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:49","STORET",7,NA,2020-12-14 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901790-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541229",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901790-1215-4-C/results/911541229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:50","STORET",7,NA,2020-12-15 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901790-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541233",NA,"as N","Nitrogen","Dissolved","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901790-1215-4-C/results/911541233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:50","STORET",7,NA,2020-12-15 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901975-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541255",NA,"as N","Nitrogen","Total","3.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901975-1215-4-C/results/911541255/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:50","STORET",7,NA,2020-12-15 16:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901975-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541259",NA,"as N","Nitrogen","Dissolved","3.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901975-1215-4-C/results/911541259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:50","STORET",7,NA,2020-12-15 16:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901980-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541281",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901980-1215-4-C/results/911541281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:50","STORET",7,NA,2020-12-15 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4901980-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541285",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4901980-1215-4-C/results/911541285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:50","STORET",7,NA,2020-12-15 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902040-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541307",NA,"as N","Nitrogen","Total","2.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902040-1214-4-C/results/911541307/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:50","STORET",7,NA,2020-12-14 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902040-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541311",NA,"as N","Nitrogen","Dissolved","1.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902040-1214-4-C/results/911541311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:50","STORET",7,NA,2020-12-14 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902700-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541333",NA,"as N","Nitrogen","Total","2.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902700-1214-4-C/results/911541333/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:51","STORET",7,NA,2020-12-14 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902700-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541337",NA,"as N","Nitrogen","Dissolved","2.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902700-1214-4-C/results/911541337/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:51","STORET",7,NA,2020-12-14 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902710-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541360",NA,"as N","Nitrogen","Total","29.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902710-1214-4-C/results/911541360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:51","STORET",7,NA,2020-12-14 19:30:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",29.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902710-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541364",NA,"as N","Nitrogen","Dissolved","27.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902710-1214-4-C/results/911541364/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:51","STORET",7,NA,2020-12-14 19:30:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",27.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902720-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541387",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902720-1214-4-C/results/911541387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:51","STORET",7,NA,2020-12-14 19:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902720-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541391",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902720-1214-4-C/results/911541391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:51","STORET",7,NA,2020-12-14 19:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902900-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541413",NA,"as N","Nitrogen","Total","0.652","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902900-1214-4-C/results/911541413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:51","STORET",7,NA,2020-12-14 20:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.652,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902900-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541417",NA,"as N","Nitrogen","Dissolved","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902900-1214-4-C/results/911541417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:51","STORET",7,NA,2020-12-14 20:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902940-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541438",NA,"as N","Nitrogen","Total","0.506","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902940-1214-4-C/results/911541438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:52","STORET",7,NA,2020-12-14 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.506,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902940-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541442",NA,"as N","Nitrogen","Dissolved","0.585","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902940-1214-4-C/results/911541442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:52","STORET",7,NA,2020-12-14 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.585,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902941-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541464",NA,"as N","Nitrogen","Total","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902941-1214-4-C/results/911541464/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:52","STORET",7,NA,2020-12-14 20:30:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4902941-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541468",NA,"as N","Nitrogen","Dissolved","0.741","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4902941-1214-4-C/results/911541468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:52","STORET",7,NA,2020-12-14 20:30:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.741,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903080-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541490",NA,"as N","Nitrogen","Total","4.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903080-1215-4-C/results/911541490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:52","STORET",7,NA,2020-12-15 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.94,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903080-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541494",NA,"as N","Nitrogen","Dissolved","4.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903080-1215-4-C/results/911541494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:52","STORET",7,NA,2020-12-15 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903180-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541516",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903180-1215-4-C/results/911541516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:52","STORET",7,NA,2020-12-15 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903180-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541520",NA,"as N","Nitrogen","Dissolved","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903180-1215-4-C/results/911541520/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:52","STORET",7,NA,2020-12-15 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903190-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541542",NA,"as N","Nitrogen","Total","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903190-1215-4-C/results/911541542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903190-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541546",NA,"as N","Nitrogen","Dissolved","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903190-1215-4-C/results/911541546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903191-1215-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-15,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541568",NA,"as N","Nitrogen","Total","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903191-1215-4-C/results/911541568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 20:40:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903191-1215-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-15,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541572",NA,"as N","Nitrogen","Dissolved","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903191-1215-4-C/results/911541572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 20:40:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903200-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541594",NA,"as N","Nitrogen","Total","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903200-1215-4-C/results/911541594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903200-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541598",NA,"as N","Nitrogen","Dissolved","1.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903200-1215-4-C/results/911541598/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903400-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541620",NA,"as N","Nitrogen","Total","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903400-1215-4-C/results/911541620/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903400-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541624",NA,"as N","Nitrogen","Dissolved","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903400-1215-4-C/results/911541624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903504-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541646",NA,"as N","Nitrogen","Total","0.501","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903504-1215-4-C/results/911541646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.501,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903504-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541650",NA,"as N","Nitrogen","Dissolved","0.564","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903504-1215-4-C/results/911541650/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:53","STORET",7,NA,2020-12-15 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.564,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903507-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541672",NA,"as N","Nitrogen","Total","0.628","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903507-1215-4-C/results/911541672/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:54","STORET",7,NA,2020-12-15 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.628,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903507-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541676",NA,"as N","Nitrogen","Dissolved","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903507-1215-4-C/results/911541676/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:54","STORET",7,NA,2020-12-15 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903510-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541698",NA,"as N","Nitrogen","Total","0.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903510-1215-4-C/results/911541698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:54","STORET",7,NA,2020-12-15 18:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903510-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541702",NA,"as N","Nitrogen","Dissolved","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903510-1215-4-C/results/911541702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:54","STORET",7,NA,2020-12-15 18:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903699-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541724",NA,"as N","Nitrogen","Total","2.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903699-1216-4-C/results/911541724/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:54","STORET",7,NA,2020-12-16 17:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903699-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541728",NA,"as N","Nitrogen","Dissolved","2.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903699-1216-4-C/results/911541728/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:54","STORET",7,NA,2020-12-16 17:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903723-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541751",NA,"as N","Nitrogen","Total","21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903723-1216-4-C/results/911541751/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:54","STORET",7,NA,2020-12-16 18:00:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903723-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541755",NA,"as N","Nitrogen","Dissolved","19.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903723-1216-4-C/results/911541755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:54","STORET",7,NA,2020-12-16 18:00:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903950-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541803",NA,"as N","Nitrogen","Total","9.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903950-1215-4-C/results/911541803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:55","STORET",7,NA,2020-12-15 20:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4903950-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541807",NA,"as N","Nitrogen","Dissolved","8.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4903950-1215-4-C/results/911541807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:55","STORET",7,NA,2020-12-15 20:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904110-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541829",NA,"as N","Nitrogen","Total","2.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904110-1216-4-C/results/911541829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:55","STORET",7,NA,2020-12-16 16:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904110-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541833",NA,"as N","Nitrogen","Dissolved","2.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904110-1216-4-C/results/911541833/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:55","STORET",7,NA,2020-12-16 16:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904240-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541856",NA,"as N","Nitrogen","Total","2.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904240-1216-4-C/results/911541856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:55","STORET",7,NA,2020-12-16 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904240-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541860",NA,"as N","Nitrogen","Dissolved","2.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904240-1216-4-C/results/911541860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:55","STORET",7,NA,2020-12-16 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904241-1216-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541882",NA,"as N","Nitrogen","Total","2.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904241-1216-4-C/results/911541882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:56","STORET",7,NA,2020-12-16 18:30:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904241-1216-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541886",NA,"as N","Nitrogen","Dissolved","2.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904241-1216-4-C/results/911541886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:56","STORET",7,NA,2020-12-16 18:30:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904250-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541908",NA,"as N","Nitrogen","Total","2.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904250-1216-4-C/results/911541908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:56","STORET",7,NA,2020-12-16 17:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904250-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541912",NA,"as N","Nitrogen","Dissolved","2.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904250-1216-4-C/results/911541912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:56","STORET",7,NA,2020-12-16 17:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904340-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541934",NA,"as N","Nitrogen","Total","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904340-1216-4-C/results/911541934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:56","STORET",7,NA,2020-12-16 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904340-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541938",NA,"as N","Nitrogen","Dissolved","2.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904340-1216-4-C/results/911541938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:56","STORET",7,NA,2020-12-16 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904740-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541960",NA,"as N","Nitrogen","Total","18.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904740-1215-4-C/results/911541960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:56","STORET",7,NA,2020-12-15 21:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904740-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541964",NA,"as N","Nitrogen","Dissolved","19.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904740-1215-4-C/results/911541964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:56","STORET",7,NA,2020-12-15 21:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904800-1215-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-15,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541986",NA,"as N","Nitrogen","Total","0.894","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904800-1215-4-C/results/911541986/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 18:35:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.894,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904800-1215-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-15,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911541990",NA,"as N","Nitrogen","Dissolved","0.926","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904800-1215-4-C/results/911541990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 18:35:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.926,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904870-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542012",NA,"as N","Nitrogen","Total","2.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904870-1215-4-C/results/911542012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904870-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542016",NA,"as N","Nitrogen","Dissolved","2.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904870-1215-4-C/results/911542016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904900-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542038",NA,"as N","Nitrogen","Total","2.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904900-1215-4-C/results/911542038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.96,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904900-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542042",NA,"as N","Nitrogen","Dissolved","3.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904900-1215-4-C/results/911542042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904920-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542064",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904920-1215-4-C/results/911542064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904920-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542068",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904920-1215-4-C/results/911542068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904940-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542090",NA,"as N","Nitrogen","Total","18.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904940-1215-4-C/results/911542090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904940-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542094",NA,"as N","Nitrogen","Dissolved","18.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904940-1215-4-C/results/911542094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:57","STORET",7,NA,2020-12-15 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904965-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542116",NA,"as N","Nitrogen","Total","2.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904965-1215-4-C/results/911542116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:58","STORET",7,NA,2020-12-15 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904965-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542120",NA,"as N","Nitrogen","Dissolved","3.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904965-1215-4-C/results/911542120/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:58","STORET",7,NA,2020-12-15 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904990-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542142",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904990-1215-4-C/results/911542142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:58","STORET",7,NA,2020-12-15 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4904990-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542146",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4904990-1215-4-C/results/911542146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:58","STORET",7,NA,2020-12-15 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905000-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542168",NA,"as N","Nitrogen","Total","0.912","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905000-1215-4-C/results/911542168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:58","STORET",7,NA,2020-12-15 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.912,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905000-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542172",NA,"as N","Nitrogen","Dissolved","0.982","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905000-1215-4-C/results/911542172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:58","STORET",7,NA,2020-12-15 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.982,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905040-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542194",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905040-1215-4-C/results/911542194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:58","STORET",7,NA,2020-12-15 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905040-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542198",NA,"as N","Nitrogen","Dissolved","0.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905040-1215-4-C/results/911542198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:59","STORET",7,NA,2020-12-15 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905050-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542220",NA,"as N","Nitrogen","Total","7.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905050-1215-4-C/results/911542220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:59","STORET",7,NA,2020-12-15 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905050-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542224",NA,"as N","Nitrogen","Dissolved","6.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905050-1215-4-C/results/911542224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:59","STORET",7,NA,2020-12-15 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905052-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542264",NA,"as N","Nitrogen","Total","2.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905052-1215-4-C/results/911542264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:59","STORET",7,NA,2020-12-15 17:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905052-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542268",NA,"as N","Nitrogen","Dissolved","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905052-1215-4-C/results/911542268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:34:59","STORET",7,NA,2020-12-15 17:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905070-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542308",NA,"as N","Nitrogen","Total","16.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905070-1215-4-C/results/911542308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:00","STORET",7,NA,2020-12-15 16:55:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905070-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542312",NA,"as N","Nitrogen","Dissolved","15.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905070-1215-4-C/results/911542312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:00","STORET",7,NA,2020-12-15 16:55:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905078-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542352",NA,"as N","Nitrogen","Total","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905078-1215-4-C/results/911542352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:00","STORET",7,NA,2020-12-15 17:10:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905078-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542356",NA,"as N","Nitrogen","Dissolved","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905078-1215-4-C/results/911542356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:00","STORET",7,NA,2020-12-15 17:10:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905200-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542395",NA,"as N","Nitrogen","Total","0.333","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905200-1215-4-C/results/911542395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:01","STORET",7,NA,2020-12-15 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.333,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905200-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542399",NA,"as N","Nitrogen","Dissolved","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905200-1215-4-C/results/911542399/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:01","STORET",7,NA,2020-12-15 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905301-1215-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-15,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542421",NA,"as N","Nitrogen","Total","0.344","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905301-1215-4-C/results/911542421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:01","STORET",7,NA,2020-12-15 16:35:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.344,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905301-1215-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-15,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542425",NA,"as N","Nitrogen","Dissolved","0.414","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905301-1215-4-C/results/911542425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:01","STORET",7,NA,2020-12-15 16:35:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.414,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905400-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542447",NA,"as N","Nitrogen","Total","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905400-1215-4-C/results/911542447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:01","STORET",7,NA,2020-12-15 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905400-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542451",NA,"as N","Nitrogen","Dissolved","0.488","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905400-1215-4-C/results/911542451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:01","STORET",7,NA,2020-12-15 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.488,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905440-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542473",NA,"as N","Nitrogen","Total","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905440-1215-4-C/results/911542473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:02","STORET",7,NA,2020-12-15 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905440-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542477",NA,"as N","Nitrogen","Dissolved","0.462","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905440-1215-4-C/results/911542477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:02","STORET",7,NA,2020-12-15 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.462,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905441-1215-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-15,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542499",NA,"as N","Nitrogen","Total","0.393","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905441-1215-4-C/results/911542499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:02","STORET",7,NA,2020-12-15 22:10:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.393,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905441-1215-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-15,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542503",NA,"as N","Nitrogen","Dissolved","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905441-1215-4-C/results/911542503/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:02","STORET",7,NA,2020-12-15 22:10:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905670-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542525",NA,"as N","Nitrogen","Total","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905670-1215-4-C/results/911542525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:02","STORET",7,NA,2020-12-15 22:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905670-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542529",NA,"as N","Nitrogen","Dissolved","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905670-1215-4-C/results/911542529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:02","STORET",7,NA,2020-12-15 22:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905700-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542551",NA,"as N","Nitrogen","Total","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905700-1215-4-C/results/911542551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:02","STORET",7,NA,2020-12-15 22:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905700-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542555",NA,"as N","Nitrogen","Dissolved","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905700-1215-4-C/results/911542555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:02","STORET",7,NA,2020-12-15 22:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905740-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542577",NA,"as N","Nitrogen","Total","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905740-1215-4-C/results/911542577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:02","STORET",7,NA,2020-12-15 23:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905740-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542581",NA,"as N","Nitrogen","Dissolved","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905740-1215-4-C/results/911542581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:03","STORET",7,NA,2020-12-15 23:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905750-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542603",NA,"as N","Nitrogen","Total","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905750-1215-4-C/results/911542603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:03","STORET",7,NA,2020-12-15 23:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905750-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542607",NA,"as N","Nitrogen","Dissolved","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905750-1215-4-C/results/911542607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:03","STORET",7,NA,2020-12-15 23:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905780-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542629",NA,"as N","Nitrogen","Total","0.307","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905780-1215-4-C/results/911542629/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:03","STORET",7,NA,2020-12-15 23:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.307,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4905780-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542633",NA,"as N","Nitrogen","Dissolved","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4905780-1215-4-C/results/911542633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:03","STORET",7,NA,2020-12-15 23:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4906400-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542707",NA,"as N","Nitrogen","Total","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4906400-1215-4-C/results/911542707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:04","STORET",7,NA,2020-12-15 21:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4906400-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542711",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4906400-1215-4-C/results/911542711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:04","STORET",7,NA,2020-12-15 21:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908130-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542733",NA,"as N","Nitrogen","Total","0.474","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908130-1214-4-C/results/911542733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:04","STORET",7,NA,2020-12-14 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.474,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908130-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542737",NA,"as N","Nitrogen","Dissolved","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908130-1214-4-C/results/911542737/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:04","STORET",7,NA,2020-12-14 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908160-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542759",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908160-1214-4-C/results/911542759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:05","STORET",7,NA,2020-12-14 20:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908160-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542763",NA,"as N","Nitrogen","Dissolved","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908160-1214-4-C/results/911542763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:05","STORET",7,NA,2020-12-14 20:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908165-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542785",NA,"as N","Nitrogen","Total","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908165-1214-4-C/results/911542785/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:05","STORET",7,NA,2020-12-14 20:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908165-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542789",NA,"as N","Nitrogen","Dissolved","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908165-1214-4-C/results/911542789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:05","STORET",7,NA,2020-12-14 20:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908168-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542811",NA,"as N","Nitrogen","Total","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908168-1214-4-C/results/911542811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:05","STORET",7,NA,2020-12-14 20:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908168-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542815",NA,"as N","Nitrogen","Dissolved","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908168-1214-4-C/results/911542815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:05","STORET",7,NA,2020-12-14 20:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908170-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542837",NA,"as N","Nitrogen","Total","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908170-1214-4-C/results/911542837/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:05","STORET",7,NA,2020-12-14 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908170-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542841",NA,"as N","Nitrogen","Dissolved","0.489","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908170-1214-4-C/results/911542841/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:05","STORET",7,NA,2020-12-14 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.489,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908350-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542863",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908350-1214-4-C/results/911542863/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:06","STORET",7,NA,2020-12-14 18:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908350-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542867",NA,"as N","Nitrogen","Dissolved","0.633","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908350-1214-4-C/results/911542867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:06","STORET",7,NA,2020-12-14 18:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.633,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908697-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542889",NA,"as N","Nitrogen","Total","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908697-1214-4-C/results/911542889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:06","STORET",7,NA,2020-12-14 18:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908697-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542893",NA,"as N","Nitrogen","Dissolved","0.507","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908697-1214-4-C/results/911542893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:06","STORET",7,NA,2020-12-14 18:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.507,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908744-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542915",NA,"as N","Nitrogen","Total","0.327","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908744-1215-4-C/results/911542915/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:06","STORET",7,NA,2020-12-15 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.327,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908744-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542919",NA,"as N","Nitrogen","Dissolved","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908744-1215-4-C/results/911542919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:06","STORET",7,NA,2020-12-15 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908745-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542941",NA,"as N","Nitrogen","Total","0.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908745-1214-4-C/results/911542941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:06","STORET",7,NA,2020-12-14 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-4908745-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542945",NA,"as N","Nitrogen","Dissolved","0.566","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-4908745-1214-4-C/results/911542945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:06","STORET",7,NA,2020-12-14 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.566,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-5906850-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542967",NA,"as N","Nitrogen","Total","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-5906850-1214-4-C/results/911542967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2020-12-14 17:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-5906850-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542971",NA,"as N","Nitrogen","Dissolved","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-5906850-1214-4-C/results/911542971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2020-12-14 17:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-5984855-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542994",NA,"as N","Nitrogen","Total","9.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-5984855-1215-4-C/results/911542994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2020-12-15 15:30:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI201214-5984855-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911542998",NA,"as N","Nitrogen","Dissolved","9.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI201214-5984855-1215-4-C/results/911542998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2020-12-15 15:30:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900470-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543020",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900470-0113-4-C/results/911543020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2021-01-13 19:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900470-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543024",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900470-0113-4-C/results/911543024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2021-01-13 19:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900510-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543029",NA,"as N","Nitrogen","Total","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900510-0113-4-C/results/911543029/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2021-01-13 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900510-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543033",NA,"as N","Nitrogen","Dissolved","0.784","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900510-0113-4-C/results/911543033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2021-01-13 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.784,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900511-0113-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-13,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543038",NA,"as N","Nitrogen","Total","0.636","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900511-0113-4-C/results/911543038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2021-01-13 19:40:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.636,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900511-0113-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-13,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543042",NA,"as N","Nitrogen","Dissolved","0.683","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900511-0113-4-C/results/911543042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2021-01-13 19:40:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.683,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0111-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-11,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543047","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0111-4-C/results/911543047/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2021-01-11 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0111-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-11,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543051","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0111-4-C/results/911543051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:07","STORET",7,NA,2021-01-11 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0112-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-12,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543090","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0112-4-C/results/911543090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:08","STORET",7,NA,2021-01-12 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0112-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-12,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543094",NA,"as N","Nitrogen","Dissolved","0.097","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0112-4-C/results/911543094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:08","STORET",7,NA,2021-01-12 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.097,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0113-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-13,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543099","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0113-4-C/results/911543099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:08","STORET",7,NA,2021-01-13 22:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900751-0113-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-13,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543103","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900751-0113-4-C/results/911543103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:08","STORET",7,NA,2021-01-13 22:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0111-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-11,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543108","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0111-4-C/results/911543108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:08","STORET",7,NA,2021-01-11 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0111-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-11,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543112","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0111-4-C/results/911543112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:08","STORET",7,NA,2021-01-11 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0112-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-12,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543117","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0112-4-C/results/911543117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:08","STORET",7,NA,2021-01-13 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0112-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-12,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543121","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0112-4-C/results/911543121/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:08","STORET",7,NA,2021-01-13 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0113-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543160","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0113-4-C/results/911543160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:09","STORET",7,NA,2021-01-13 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4900753-0113-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543164","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4900753-0113-4-C/results/911543164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:09","STORET",7,NA,2021-01-13 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901180-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543169",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901180-0111-4-C/results/911543169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:09","STORET",7,NA,2021-01-11 16:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901180-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543173",NA,"as N","Nitrogen","Dissolved","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901180-0111-4-C/results/911543173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:09","STORET",7,NA,2021-01-11 16:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901200-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543213",NA,"as N","Nitrogen","Total","2.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901200-0111-4-C/results/911543213/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:09","STORET",7,NA,2021-01-11 17:05:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901200-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543217",NA,"as N","Nitrogen","Dissolved","2.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901200-0111-4-C/results/911543217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:09","STORET",7,NA,2021-01-11 17:05:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901225-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543256",NA,"as N","Nitrogen","Total","2.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901225-0111-4-C/results/911543256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:10","STORET",7,NA,2021-01-11 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901225-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543260",NA,"as N","Nitrogen","Dissolved","2.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901225-0111-4-C/results/911543260/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:10","STORET",7,NA,2021-01-11 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901431-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543299",NA,"as N","Nitrogen","Total","4.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901431-0111-4-C/results/911543299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:10","STORET",7,NA,2021-01-11 19:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901431-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543303",NA,"as N","Nitrogen","Dissolved","3.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901431-0111-4-C/results/911543303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-11 19:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901432-0111-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-11,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543308",NA,"as N","Nitrogen","Total","4.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901432-0111-4-C/results/911543308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-11 19:15:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901432-0111-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-11,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543312",NA,"as N","Nitrogen","Dissolved","4.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901432-0111-4-C/results/911543312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-11 19:15:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901600-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543317",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901600-0111-4-C/results/911543317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-11 18:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901600-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543321",NA,"as N","Nitrogen","Dissolved","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901600-0111-4-C/results/911543321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-11 18:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901790-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543326",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901790-0112-4-C/results/911543326/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-12 16:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901790-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543330",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901790-0112-4-C/results/911543330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-12 16:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901975-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543335",NA,"as N","Nitrogen","Total","3.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901975-0112-4-C/results/911543335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-12 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901975-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543339",NA,"as N","Nitrogen","Dissolved","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901975-0112-4-C/results/911543339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-12 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901980-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543344",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901980-0112-4-C/results/911543344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-12 16:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4901980-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543348",NA,"as N","Nitrogen","Dissolved","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4901980-0112-4-C/results/911543348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-12 16:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902000-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543353",NA,"as N","Nitrogen","Total","1.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902000-0111-4-C/results/911543353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-11 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.96,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902000-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543357",NA,"as N","Nitrogen","Dissolved","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902000-0111-4-C/results/911543357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-11 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902040-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543363",NA,"as N","Nitrogen","Total","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902040-0111-4-C/results/911543363/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-11 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902040-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543367",NA,"as N","Nitrogen","Dissolved","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902040-0111-4-C/results/911543367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:11","STORET",7,NA,2021-01-11 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902050-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543372",NA,"as N","Nitrogen","Total","1.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902050-0111-4-C/results/911543372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.94,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902050-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543376",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902050-0111-4-C/results/911543376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902700-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543381",NA,"as N","Nitrogen","Total","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902700-0111-4-C/results/911543381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902700-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543385",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902700-0111-4-C/results/911543385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902710-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543391",NA,"as N","Nitrogen","Total","17.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902710-0111-4-C/results/911543391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 19:45:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902710-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543395",NA,"as N","Nitrogen","Dissolved","15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902710-0111-4-C/results/911543395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 19:45:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902720-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543401",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902720-0111-4-C/results/911543401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902720-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543405",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902720-0111-4-C/results/911543405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902900-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543410",NA,"as N","Nitrogen","Total","0.627","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902900-0111-4-C/results/911543410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 20:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.627,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902900-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543414",NA,"as N","Nitrogen","Dissolved","0.718","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902900-0111-4-C/results/911543414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 20:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.718,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902940-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543419",NA,"as N","Nitrogen","Total","0.526","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902940-0111-4-C/results/911543419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.526,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902940-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543423",NA,"as N","Nitrogen","Dissolved","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902940-0111-4-C/results/911543423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902941-0111-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-11,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543428",NA,"as N","Nitrogen","Total","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902941-0111-4-C/results/911543428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 21:40:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4902941-0111-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-11,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543432",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4902941-0111-4-C/results/911543432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-11 21:40:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903190-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543437",NA,"as N","Nitrogen","Total","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903190-0112-4-C/results/911543437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:12","STORET",7,NA,2021-01-12 19:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903190-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543441",NA,"as N","Nitrogen","Dissolved","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903190-0112-4-C/results/911543441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 19:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903191-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-12,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543446",NA,"as N","Nitrogen","Total","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903191-0112-4-C/results/911543446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 20:00:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903191-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-12,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543450",NA,"as N","Nitrogen","Dissolved","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903191-0112-4-C/results/911543450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 20:00:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903200-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543455",NA,"as N","Nitrogen","Total","1.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903200-0112-4-C/results/911543455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903200-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543459",NA,"as N","Nitrogen","Dissolved","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903200-0112-4-C/results/911543459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903400-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543464",NA,"as N","Nitrogen","Total","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903400-0112-4-C/results/911543464/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903400-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543468",NA,"as N","Nitrogen","Dissolved","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903400-0112-4-C/results/911543468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903504-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543473",NA,"as N","Nitrogen","Total","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903504-0112-4-C/results/911543473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903504-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543477",NA,"as N","Nitrogen","Dissolved","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903504-0112-4-C/results/911543477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903507-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543482",NA,"as N","Nitrogen","Total","0.506","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903507-0112-4-C/results/911543482/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.506,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903507-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543486",NA,"as N","Nitrogen","Dissolved","0.546","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903507-0112-4-C/results/911543486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.546,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903510-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543491",NA,"as N","Nitrogen","Total","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903510-0112-4-C/results/911543491/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903510-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543495",NA,"as N","Nitrogen","Dissolved","0.413","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903510-0112-4-C/results/911543495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-12 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.413,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903699-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543500",NA,"as N","Nitrogen","Total","2.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903699-0113-4-C/results/911543500/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-13 17:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903699-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543504",NA,"as N","Nitrogen","Dissolved","2.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903699-0113-4-C/results/911543504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-13 17:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903723-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543510",NA,"as N","Nitrogen","Total","14.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903723-0113-4-C/results/911543510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-13 17:35:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903723-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543514",NA,"as N","Nitrogen","Dissolved","14.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903723-0113-4-C/results/911543514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-13 17:35:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903820-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543528",NA,"as N","Nitrogen","Total","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903820-0113-4-C/results/911543528/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-13 16:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903820-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543532",NA,"as N","Nitrogen","Dissolved","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903820-0113-4-C/results/911543532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:13","STORET",7,NA,2021-01-13 16:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903950-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543537",NA,"as N","Nitrogen","Total","9.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903950-0112-4-C/results/911543537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-12 19:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4903950-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543541",NA,"as N","Nitrogen","Dissolved","10.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4903950-0112-4-C/results/911543541/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-12 19:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904240-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543547",NA,"as N","Nitrogen","Total","2.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904240-0113-4-C/results/911543547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904240-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543551",NA,"as N","Nitrogen","Dissolved","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904240-0113-4-C/results/911543551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904241-0113-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-13,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543556",NA,"as N","Nitrogen","Total","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904241-0113-4-C/results/911543556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 17:40:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904241-0113-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-13,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543560",NA,"as N","Nitrogen","Dissolved","2.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904241-0113-4-C/results/911543560/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 17:40:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904250-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543565",NA,"as N","Nitrogen","Total","2.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904250-0113-4-C/results/911543565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 17:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904250-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543569",NA,"as N","Nitrogen","Dissolved","2.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904250-0113-4-C/results/911543569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 17:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904340-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543574",NA,"as N","Nitrogen","Total","3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904340-0113-4-C/results/911543574/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904340-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543578",NA,"as N","Nitrogen","Dissolved","2.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904340-0113-4-C/results/911543578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904740-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543583",NA,"as N","Nitrogen","Total","19.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904740-0112-4-C/results/911543583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-12 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904740-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543587",NA,"as N","Nitrogen","Dissolved","21.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904740-0112-4-C/results/911543587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-12 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904770-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543592",NA,"as N","Nitrogen","Total","36.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904770-0113-4-C/results/911543592/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",36.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904770-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543596",NA,"as N","Nitrogen","Dissolved","37.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904770-0113-4-C/results/911543596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",37.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904800-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-12,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543601",NA,"as N","Nitrogen","Total","0.909","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904800-0112-4-C/results/911543601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-12 18:10:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.909,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904800-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-12,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543605",NA,"as N","Nitrogen","Dissolved","0.859","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904800-0112-4-C/results/911543605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-12 18:10:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.859,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904810-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543611",NA,"as N","Nitrogen","Total","10.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904810-0113-4-C/results/911543611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 16:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904810-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543615",NA,"as N","Nitrogen","Dissolved","10.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904810-0113-4-C/results/911543615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:14","STORET",7,NA,2021-01-13 16:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904900-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543620",NA,"as N","Nitrogen","Total","3.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904900-0112-4-C/results/911543620/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904900-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543624",NA,"as N","Nitrogen","Dissolved","3.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904900-0112-4-C/results/911543624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904920-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543629",NA,"as N","Nitrogen","Total","2.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904920-0112-4-C/results/911543629/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.79,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904920-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543633",NA,"as N","Nitrogen","Dissolved","2.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904920-0112-4-C/results/911543633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904940-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543638",NA,"as N","Nitrogen","Total","21.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904940-0112-4-C/results/911543638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904940-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543642",NA,"as N","Nitrogen","Dissolved","22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904940-0112-4-C/results/911543642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904943-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543647",NA,"as N","Nitrogen","Total","7.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904943-0113-4-C/results/911543647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-13 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904943-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543651",NA,"as N","Nitrogen","Dissolved","7.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904943-0113-4-C/results/911543651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-13 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904965-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543656",NA,"as N","Nitrogen","Total","3.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904965-0112-4-C/results/911543656/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904965-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543660",NA,"as N","Nitrogen","Dissolved","3.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904965-0112-4-C/results/911543660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904990-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543665",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904990-0112-4-C/results/911543665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4904990-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543669",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4904990-0112-4-C/results/911543669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905000-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543674",NA,"as N","Nitrogen","Total","0.979","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905000-0112-4-C/results/911543674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.979,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905000-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543678",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905000-0112-4-C/results/911543678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905040-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543683",NA,"as N","Nitrogen","Total","0.405","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905040-0112-4-C/results/911543683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.405,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905040-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543687",NA,"as N","Nitrogen","Dissolved","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905040-0112-4-C/results/911543687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905050-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543692",NA,"as N","Nitrogen","Total","12.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905050-0112-4-C/results/911543692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905050-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543696",NA,"as N","Nitrogen","Dissolved","12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905050-0112-4-C/results/911543696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:15","STORET",7,NA,2021-01-12 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905052-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543736",NA,"as N","Nitrogen","Total","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905052-0112-4-C/results/911543736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:16","STORET",7,NA,2021-01-12 16:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905052-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543740",NA,"as N","Nitrogen","Dissolved","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905052-0112-4-C/results/911543740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:16","STORET",7,NA,2021-01-12 16:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905070-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543780",NA,"as N","Nitrogen","Total","21.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905070-0112-4-C/results/911543780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:16","STORET",7,NA,2021-01-12 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905070-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543784",NA,"as N","Nitrogen","Dissolved","19.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905070-0112-4-C/results/911543784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:16","STORET",7,NA,2021-01-12 16:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905090-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543824",NA,"as N","Nitrogen","Total","16.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905090-0112-4-C/results/911543824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 17:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905090-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543828",NA,"as N","Nitrogen","Dissolved","16.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905090-0112-4-C/results/911543828/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 17:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905200-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543867",NA,"as N","Nitrogen","Total","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905200-0112-4-C/results/911543867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905200-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543871",NA,"as N","Nitrogen","Dissolved","0.639","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905200-0112-4-C/results/911543871/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.639,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905301-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-12,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543876",NA,"as N","Nitrogen","Total","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905301-0112-4-C/results/911543876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 16:10:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905301-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-12,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543880",NA,"as N","Nitrogen","Dissolved","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905301-0112-4-C/results/911543880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 16:10:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905400-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543885",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905400-0112-4-C/results/911543885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905400-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543889",NA,"as N","Nitrogen","Dissolved","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905400-0112-4-C/results/911543889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905440-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543894",NA,"as N","Nitrogen","Total","0.398","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905440-0112-4-C/results/911543894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.398,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905440-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543898",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905440-0112-4-C/results/911543898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905441-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-12,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543903",NA,"as N","Nitrogen","Total","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905441-0112-4-C/results/911543903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 20:30:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905441-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-12,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543907",NA,"as N","Nitrogen","Dissolved","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905441-0112-4-C/results/911543907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-12 20:30:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.331,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905520-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543913",NA,"as N","Nitrogen","Total","8.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905520-0113-4-C/results/911543913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-13 16:55:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905520-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543917",NA,"as N","Nitrogen","Dissolved","7.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905520-0113-4-C/results/911543917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-13 16:55:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905540-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543923",NA,"as N","Nitrogen","Total","39.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905540-0113-4-C/results/911543923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:17","STORET",7,NA,2021-01-13 16:20:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",39.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905540-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543927",NA,"as N","Nitrogen","Dissolved","41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905540-0113-4-C/results/911543927/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 16:20:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",41,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905580-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543933",NA,"as N","Nitrogen","Total","0.693","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905580-0113-4-C/results/911543933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.693,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905580-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543937",NA,"as N","Nitrogen","Dissolved","0.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905580-0113-4-C/results/911543937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905590-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543942",NA,"as N","Nitrogen","Total","0.674","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905590-0113-4-C/results/911543942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.674,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905590-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543946",NA,"as N","Nitrogen","Dissolved","0.779","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905590-0113-4-C/results/911543946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.779,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905625-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905625","Little Bear River at 4700 S xing below RR bridge",NA,NA,NA,NA,"41.6468700000","-111.9224400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543951",NA,"as N","Nitrogen","Total","0.482","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905625-0113-4-C/results/911543951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.482,"MG/L","Numeric","Not Reviewed","Uncensored",41.64687,-111.92244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905625-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905625","Little Bear River at 4700 S xing below RR bridge",NA,NA,NA,NA,"41.6468700000","-111.9224400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543955",NA,"as N","Nitrogen","Dissolved","0.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905625-0113-4-C/results/911543955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6468700000","-111.9224400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.64687,-111.92244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905630-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543960",NA,"as N","Nitrogen","Total","0.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905630-0113-4-C/results/911543960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905630-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543964",NA,"as N","Nitrogen","Dissolved","0.514","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905630-0113-4-C/results/911543964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.514,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905631-0113-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543969",NA,"as N","Nitrogen","Total","0.457","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905631-0113-4-C/results/911543969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 17:50:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.457,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905631-0113-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543973",NA,"as N","Nitrogen","Dissolved","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905631-0113-4-C/results/911543973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 17:50:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905650-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543978",NA,"as N","Nitrogen","Total","0.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905650-0113-4-C/results/911543978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905650-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543982",NA,"as N","Nitrogen","Dissolved","0.543","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905650-0113-4-C/results/911543982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-13 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.543,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905670-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543987",NA,"as N","Nitrogen","Total","0.713","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905670-0112-4-C/results/911543987/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-12 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.713,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905670-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543991",NA,"as N","Nitrogen","Dissolved","0.665","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905670-0112-4-C/results/911543991/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-12 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.665,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905700-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911543996",NA,"as N","Nitrogen","Total","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905700-0112-4-C/results/911543996/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-12 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905700-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544000",NA,"as N","Nitrogen","Dissolved","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905700-0112-4-C/results/911544000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-12 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905740-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544005",NA,"as N","Nitrogen","Total","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905740-0112-4-C/results/911544005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-12 21:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905740-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544009",NA,"as N","Nitrogen","Dissolved","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905740-0112-4-C/results/911544009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-12 21:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905750-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544014",NA,"as N","Nitrogen","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905750-0112-4-C/results/911544014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-12 21:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905750-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544018",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905750-0112-4-C/results/911544018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:18","STORET",7,NA,2021-01-12 21:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905780-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544023",NA,"as N","Nitrogen","Total","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905780-0112-4-C/results/911544023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-12 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905780-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544027",NA,"as N","Nitrogen","Dissolved","0.262","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905780-0112-4-C/results/911544027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-12 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.262,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905940-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544032",NA,"as N","Nitrogen","Total","4.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905940-0113-4-C/results/911544032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-13 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4905940-0113-4-C","Sample-Routine","Water",NA,2021-01-13,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544036",NA,"as N","Nitrogen","Dissolved","4.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4905940-0113-4-C/results/911544036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-13 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4906400-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544059",NA,"as N","Nitrogen","Total","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4906400-0112-4-C/results/911544059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-12 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4906400-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544063",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4906400-0112-4-C/results/911544063/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-12 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908130-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544068",NA,"as N","Nitrogen","Total","0.375","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908130-0111-4-C/results/911544068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.375,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908130-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544072",NA,"as N","Nitrogen","Dissolved","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908130-0111-4-C/results/911544072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908160-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544077",NA,"as N","Nitrogen","Total","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908160-0111-4-C/results/911544077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908160-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544081",NA,"as N","Nitrogen","Dissolved","0.307","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908160-0111-4-C/results/911544081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.307,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908165-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544086",NA,"as N","Nitrogen","Total","0.307","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908165-0111-4-C/results/911544086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.307,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908165-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544090",NA,"as N","Nitrogen","Dissolved","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908165-0111-4-C/results/911544090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908168-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544095",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908168-0111-4-C/results/911544095/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908168-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544099",NA,"as N","Nitrogen","Dissolved","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908168-0111-4-C/results/911544099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.331,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908170-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544104",NA,"as N","Nitrogen","Total","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908170-0111-4-C/results/911544104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908170-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544108",NA,"as N","Nitrogen","Dissolved","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908170-0111-4-C/results/911544108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908350-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544113",NA,"as N","Nitrogen","Total","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908350-0111-4-C/results/911544113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:19","STORET",7,NA,2021-01-11 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908350-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544117",NA,"as N","Nitrogen","Dissolved","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908350-0111-4-C/results/911544117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-01-11 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908744-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544122",NA,"as N","Nitrogen","Total","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908744-0112-4-C/results/911544122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-01-12 15:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908744-0112-4-C","Sample-Routine","Water",NA,2021-01-12,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544126",NA,"as N","Nitrogen","Dissolved","0.422","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908744-0112-4-C/results/911544126/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-01-12 15:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.422,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908745-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544131",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908745-0111-4-C/results/911544131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-01-11 21:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-4908745-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544135",NA,"as N","Nitrogen","Dissolved","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-4908745-0111-4-C/results/911544135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-01-11 21:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-5906850-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544140",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-5906850-0111-4-C/results/911544140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-01-11 16:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-5906850-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544144",NA,"as N","Nitrogen","Dissolved","0.438","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-5906850-0111-4-C/results/911544144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-01-11 16:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.438,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-5984855-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544150",NA,"as N","Nitrogen","Total","8.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-5984855-0111-4-C/results/911544150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-01-11 16:15:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210111-5984855-0111-4-C","Sample-Routine","Water",NA,2021-01-11,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544154",NA,"as N","Nitrogen","Dissolved","7.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210111-5984855-0111-4-C/results/911544154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-01-11 16:15:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0216-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-16,"17:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544159","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0216-4-C/results/911544159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-02-17 00:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0216-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-16,"17:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544163","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0216-4-C/results/911544163/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-02-17 00:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0222-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-22,"17:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544202","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0222-4-C/results/911544202/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-02-23 00:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0222-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-22,"17:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544206","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0222-4-C/results/911544206/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:20","STORET",7,NA,2021-02-23 00:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0223-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-23,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544228","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0223-4-C/results/911544228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:21","STORET",7,NA,2021-02-23 20:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4900751-0223-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-23,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544232","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4900751-0223-4-C/results/911544232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:21","STORET",7,NA,2021-02-23 20:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901050-0216-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-16,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544254",NA,"as N","Nitrogen","Total","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901050-0216-4-C/results/911544254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:21","STORET",7,NA,2021-02-16 18:40:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901050-0216-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-16,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544258",NA,"as N","Nitrogen","Dissolved","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901050-0216-4-C/results/911544258/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:21","STORET",7,NA,2021-02-16 18:40:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901100-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544280",NA,"as N","Nitrogen","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901100-0216-4-C/results/911544280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:21","STORET",7,NA,2021-02-16 18:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901100-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544284",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901100-0216-4-C/results/911544284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:21","STORET",7,NA,2021-02-16 18:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901180-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544306",NA,"as N","Nitrogen","Total","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901180-0216-4-C/results/911544306/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:21","STORET",7,NA,2021-02-16 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901180-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544310",NA,"as N","Nitrogen","Dissolved","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901180-0216-4-C/results/911544310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:21","STORET",7,NA,2021-02-16 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901190-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544350",NA,"as N","Nitrogen","Total","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901190-0216-4-C/results/911544350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:22","STORET",7,NA,2021-02-16 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901190-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544354",NA,"as N","Nitrogen","Dissolved","0.475","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901190-0216-4-C/results/911544354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:22","STORET",7,NA,2021-02-16 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.475,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901200-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544394",NA,"as N","Nitrogen","Total","2.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901200-0216-4-C/results/911544394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:22","STORET",7,NA,2021-02-16 18:10:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901200-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544398",NA,"as N","Nitrogen","Dissolved","1.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901200-0216-4-C/results/911544398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:22","STORET",7,NA,2021-02-16 18:10:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.97,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901225-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544437",NA,"as N","Nitrogen","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901225-0216-4-C/results/911544437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:23","STORET",7,NA,2021-02-16 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901225-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544441",NA,"as N","Nitrogen","Dissolved","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901225-0216-4-C/results/911544441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:23","STORET",7,NA,2021-02-16 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901431-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544480",NA,"as N","Nitrogen","Total","6.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901431-0216-4-C/results/911544480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:23","STORET",7,NA,2021-02-16 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901431-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544484",NA,"as N","Nitrogen","Dissolved","5.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901431-0216-4-C/results/911544484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:23","STORET",7,NA,2021-02-16 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901432-0216-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-16,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544506",NA,"as N","Nitrogen","Total","7.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901432-0216-4-C/results/911544506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:23","STORET",7,NA,2021-02-16 20:10:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",7.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901432-0216-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-16,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544510",NA,"as N","Nitrogen","Dissolved","7.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901432-0216-4-C/results/911544510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:23","STORET",7,NA,2021-02-16 20:10:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",7.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901600-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544532",NA,"as N","Nitrogen","Total","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901600-0216-4-C/results/911544532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:23","STORET",7,NA,2021-02-16 19:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901600-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544536",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901600-0216-4-C/results/911544536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:23","STORET",7,NA,2021-02-16 19:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901700-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544558",NA,"as N","Nitrogen","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901700-0216-4-C/results/911544558/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:24","STORET",7,NA,2021-02-16 20:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901700-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544562",NA,"as N","Nitrogen","Dissolved","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901700-0216-4-C/results/911544562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:24","STORET",7,NA,2021-02-16 20:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901730-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544584",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901730-0216-4-C/results/911544584/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:24","STORET",7,NA,2021-02-16 21:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901730-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544588",NA,"as N","Nitrogen","Dissolved","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901730-0216-4-C/results/911544588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:24","STORET",7,NA,2021-02-16 21:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901790-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544610",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901790-0222-4-C/results/911544610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:24","STORET",7,NA,2021-02-22 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901790-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544614",NA,"as N","Nitrogen","Dissolved","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901790-0222-4-C/results/911544614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:24","STORET",7,NA,2021-02-22 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901975-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544636",NA,"as N","Nitrogen","Total","3.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901975-0222-4-C/results/911544636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:24","STORET",7,NA,2021-02-22 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901975-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544640",NA,"as N","Nitrogen","Dissolved","2.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901975-0222-4-C/results/911544640/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:24","STORET",7,NA,2021-02-22 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901980-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544662",NA,"as N","Nitrogen","Total","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901980-0222-4-C/results/911544662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-22 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4901980-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544666",NA,"as N","Nitrogen","Dissolved","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4901980-0222-4-C/results/911544666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-22 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902000-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544688",NA,"as N","Nitrogen","Total","1.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902000-0216-4-C/results/911544688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-16 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902000-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544692",NA,"as N","Nitrogen","Dissolved","1.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902000-0216-4-C/results/911544692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-16 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.79,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902040-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544715",NA,"as N","Nitrogen","Total","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902040-0216-4-C/results/911544715/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-16 19:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902040-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544719",NA,"as N","Nitrogen","Dissolved","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902040-0216-4-C/results/911544719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-16 19:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902050-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544741",NA,"as N","Nitrogen","Total","1.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902050-0216-4-C/results/911544741/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-16 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.81,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902050-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544745",NA,"as N","Nitrogen","Dissolved","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902050-0216-4-C/results/911544745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-16 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902700-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544767",NA,"as N","Nitrogen","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902700-0216-4-C/results/911544767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-16 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902700-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544771",NA,"as N","Nitrogen","Dissolved","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902700-0216-4-C/results/911544771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:25","STORET",7,NA,2021-02-16 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902710-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544794",NA,"as N","Nitrogen","Total","17.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902710-0216-4-C/results/911544794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:26","STORET",7,NA,2021-02-16 21:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902710-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544798",NA,"as N","Nitrogen","Dissolved","15.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902710-0216-4-C/results/911544798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:26","STORET",7,NA,2021-02-16 21:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902720-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544821",NA,"as N","Nitrogen","Total","0.851","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902720-0216-4-C/results/911544821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:26","STORET",7,NA,2021-02-16 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.851,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902720-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544825",NA,"as N","Nitrogen","Dissolved","0.828","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902720-0216-4-C/results/911544825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:26","STORET",7,NA,2021-02-16 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.828,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902900-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544847",NA,"as N","Nitrogen","Total","0.608","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902900-0216-4-C/results/911544847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:26","STORET",7,NA,2021-02-16 22:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.608,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902900-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544851",NA,"as N","Nitrogen","Dissolved","0.551","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902900-0216-4-C/results/911544851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:26","STORET",7,NA,2021-02-16 22:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.551,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902940-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544873",NA,"as N","Nitrogen","Total","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902940-0216-4-C/results/911544873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:26","STORET",7,NA,2021-02-16 22:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902940-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544877",NA,"as N","Nitrogen","Dissolved","0.516","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902940-0216-4-C/results/911544877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:27","STORET",7,NA,2021-02-16 22:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.516,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902941-0216-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-16,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544899",NA,"as N","Nitrogen","Total","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902941-0216-4-C/results/911544899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:27","STORET",7,NA,2021-02-16 22:45:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4902941-0216-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-16,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544903",NA,"as N","Nitrogen","Dissolved","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4902941-0216-4-C/results/911544903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:27","STORET",7,NA,2021-02-16 22:45:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903060-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544925",NA,"as N","Nitrogen","Total","4.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903060-0222-4-C/results/911544925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:27","STORET",7,NA,2021-02-22 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903060-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544929",NA,"as N","Nitrogen","Dissolved","5.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903060-0222-4-C/results/911544929/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:27","STORET",7,NA,2021-02-22 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903080-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544951",NA,"as N","Nitrogen","Total","3.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903080-0222-4-C/results/911544951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:27","STORET",7,NA,2021-02-22 21:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903080-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544955",NA,"as N","Nitrogen","Dissolved","3.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903080-0222-4-C/results/911544955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:27","STORET",7,NA,2021-02-22 21:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903190-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544977",NA,"as N","Nitrogen","Total","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903190-0222-4-C/results/911544977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:28","STORET",7,NA,2021-02-22 22:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903190-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911544981",NA,"as N","Nitrogen","Dissolved","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903190-0222-4-C/results/911544981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:28","STORET",7,NA,2021-02-22 22:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903191-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-22,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545003",NA,"as N","Nitrogen","Total","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903191-0222-4-C/results/911545003/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:28","STORET",7,NA,2021-02-22 22:10:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903191-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-22,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545007",NA,"as N","Nitrogen","Dissolved","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903191-0222-4-C/results/911545007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:28","STORET",7,NA,2021-02-22 22:10:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903200-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545029",NA,"as N","Nitrogen","Total","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903200-0222-4-C/results/911545029/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:28","STORET",7,NA,2021-02-22 22:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903200-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545033",NA,"as N","Nitrogen","Dissolved","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903200-0222-4-C/results/911545033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:28","STORET",7,NA,2021-02-22 22:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903260-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545055",NA,"as N","Nitrogen","Total","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903260-0222-4-C/results/911545055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:28","STORET",7,NA,2021-02-22 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903260-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545059",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903260-0222-4-C/results/911545059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:28","STORET",7,NA,2021-02-22 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903400-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545081",NA,"as N","Nitrogen","Total","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903400-0222-4-C/results/911545081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:29","STORET",7,NA,2021-02-22 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903400-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545085",NA,"as N","Nitrogen","Dissolved","1.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903400-0222-4-C/results/911545085/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:29","STORET",7,NA,2021-02-22 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903500-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545107",NA,"as N","Nitrogen","Total","2.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903500-0222-4-C/results/911545107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:29","STORET",7,NA,2021-02-22 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903500-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545111",NA,"as N","Nitrogen","Dissolved","2.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903500-0222-4-C/results/911545111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:29","STORET",7,NA,2021-02-22 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903501-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-22,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545133",NA,"as N","Nitrogen","Total","2.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903501-0222-4-C/results/911545133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:29","STORET",7,NA,2021-02-22 20:30:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903501-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-22,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545137",NA,"as N","Nitrogen","Dissolved","2.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903501-0222-4-C/results/911545137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:29","STORET",7,NA,2021-02-22 20:30:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903504-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545159",NA,"as N","Nitrogen","Total","0.318","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903504-0222-4-C/results/911545159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:29","STORET",7,NA,2021-02-22 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.318,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903504-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545163",NA,"as N","Nitrogen","Dissolved","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903504-0222-4-C/results/911545163/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:29","STORET",7,NA,2021-02-22 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903507-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545185",NA,"as N","Nitrogen","Total","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903507-0222-4-C/results/911545185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:30","STORET",7,NA,2021-02-22 19:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903507-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545189",NA,"as N","Nitrogen","Dissolved","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903507-0222-4-C/results/911545189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:30","STORET",7,NA,2021-02-22 19:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903510-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545211",NA,"as N","Nitrogen","Total","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903510-0222-4-C/results/911545211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:30","STORET",7,NA,2021-02-22 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903510-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545215",NA,"as N","Nitrogen","Dissolved","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903510-0222-4-C/results/911545215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:30","STORET",7,NA,2021-02-22 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903699-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545237",NA,"as N","Nitrogen","Total","1.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903699-0223-4-C/results/911545237/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:30","STORET",7,NA,2021-02-23 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.98,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903699-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545241",NA,"as N","Nitrogen","Dissolved","1.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903699-0223-4-C/results/911545241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:30","STORET",7,NA,2021-02-23 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903723-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545264",NA,"as N","Nitrogen","Total","21.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903723-0223-4-C/results/911545264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:30","STORET",7,NA,2021-02-23 17:15:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903723-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545268",NA,"as N","Nitrogen","Dissolved","21.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903723-0223-4-C/results/911545268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:31","STORET",7,NA,2021-02-23 17:15:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903770-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545291",NA,"as N","Nitrogen","Total","2.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903770-0223-4-C/results/911545291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:31","STORET",7,NA,2021-02-23 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903770-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545295",NA,"as N","Nitrogen","Dissolved","2.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903770-0223-4-C/results/911545295/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:31","STORET",7,NA,2021-02-23 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903820-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545343",NA,"as N","Nitrogen","Total","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903820-0223-4-C/results/911545343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:31","STORET",7,NA,2021-02-23 16:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4903820-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545347",NA,"as N","Nitrogen","Dissolved","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4903820-0223-4-C/results/911545347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:31","STORET",7,NA,2021-02-23 16:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904240-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545370",NA,"as N","Nitrogen","Total","1.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904240-0223-4-C/results/911545370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:32","STORET",7,NA,2021-02-23 17:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904240-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545374",NA,"as N","Nitrogen","Dissolved","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904240-0223-4-C/results/911545374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:32","STORET",7,NA,2021-02-23 17:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904241-0223-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-23,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545396",NA,"as N","Nitrogen","Total","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904241-0223-4-C/results/911545396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:32","STORET",7,NA,2021-02-23 18:00:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904241-0223-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-23,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545400",NA,"as N","Nitrogen","Dissolved","1.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904241-0223-4-C/results/911545400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:32","STORET",7,NA,2021-02-23 18:00:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904250-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545422",NA,"as N","Nitrogen","Total","1.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904250-0223-4-C/results/911545422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:32","STORET",7,NA,2021-02-23 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904250-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545426",NA,"as N","Nitrogen","Dissolved","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904250-0223-4-C/results/911545426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:32","STORET",7,NA,2021-02-23 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904310-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545448",NA,"as N","Nitrogen","Total","0.902","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904310-0223-4-C/results/911545448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:32","STORET",7,NA,2021-02-23 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.902,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904310-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545452",NA,"as N","Nitrogen","Dissolved","0.987","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904310-0223-4-C/results/911545452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:32","STORET",7,NA,2021-02-23 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.987,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904340-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545474",NA,"as N","Nitrogen","Total","2.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904340-0223-4-C/results/911545474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:33","STORET",7,NA,2021-02-23 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904340-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545478",NA,"as N","Nitrogen","Dissolved","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904340-0223-4-C/results/911545478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:33","STORET",7,NA,2021-02-23 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904490-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545500",NA,"as N","Nitrogen","Total","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904490-0222-4-C/results/911545500/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:33","STORET",7,NA,2021-02-22 18:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904490-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545504",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904490-0222-4-C/results/911545504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:33","STORET",7,NA,2021-02-22 18:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904510-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545526",NA,"as N","Nitrogen","Total","3.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904510-0222-4-C/results/911545526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:33","STORET",7,NA,2021-02-22 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904510-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545530",NA,"as N","Nitrogen","Dissolved","3.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904510-0222-4-C/results/911545530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:33","STORET",7,NA,2021-02-22 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904720-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545552",NA,"as N","Nitrogen","Total","4.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904720-0222-4-C/results/911545552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:34","STORET",7,NA,2021-02-22 21:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4904720-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545556",NA,"as N","Nitrogen","Dissolved","3.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4904720-0222-4-C/results/911545556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:34","STORET",7,NA,2021-02-22 21:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908745-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545630",NA,"as N","Nitrogen","Total","0.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908745-0216-4-C/results/911545630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:34","STORET",7,NA,2021-02-16 22:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-4908745-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545634",NA,"as N","Nitrogen","Dissolved","0.581","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-4908745-0216-4-C/results/911545634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:34","STORET",7,NA,2021-02-16 22:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.581,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-5984855-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545657",NA,"as N","Nitrogen","Total","4.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-5984855-0216-4-C/results/911545657/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:34","STORET",7,NA,2021-02-16 17:00:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210208-5984855-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545661",NA,"as N","Nitrogen","Dissolved","3.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210208-5984855-0216-4-C/results/911545661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-02-16 17:00:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900470-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545683",NA,"as N","Nitrogen","Total","0.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900470-0310-4-C/results/911545683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-10 21:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900470-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545687",NA,"as N","Nitrogen","Dissolved","0.879","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900470-0310-4-C/results/911545687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-10 21:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.879,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900510-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545692",NA,"as N","Nitrogen","Total","0.535","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900510-0310-4-C/results/911545692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-10 22:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.535,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900510-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545696",NA,"as N","Nitrogen","Dissolved","0.524","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900510-0310-4-C/results/911545696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-10 22:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.524,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900511-0310-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-10,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545701",NA,"as N","Nitrogen","Total","0.526","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900511-0310-4-C/results/911545701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-10 22:05:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.526,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900511-0310-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-10,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545705",NA,"as N","Nitrogen","Dissolved","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900511-0310-4-C/results/911545705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-10 22:05:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0308-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-08,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545710","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0308-4-C/results/911545710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-08 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0308-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-08,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545714","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0308-4-C/results/911545714/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-08 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0309-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545753","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0309-4-C/results/911545753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-09 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0309-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545757","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0309-4-C/results/911545757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:35","STORET",7,NA,2021-03-09 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0310-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545762","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0310-4-C/results/911545762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-10 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900751-0310-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545766","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900751-0310-4-C/results/911545766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-10 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0308-4/1-C","Quality Control Sample-Field Blank","Water",NA,2021-03-08,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545771","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0308-4%2F1-C/results/911545771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-08 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0308-4/1-C","Quality Control Sample-Field Blank","Water",NA,2021-03-08,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545775","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0308-4%2F1-C/results/911545775/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-08 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0308-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-10,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545780","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0308-4-C/results/911545780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-10 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0308-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-10,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545784","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0308-4-C/results/911545784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-10 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0310-4/1-C","Quality Control Sample-Field Blank","Water",NA,2021-03-10,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545823","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0310-4%2F1-C/results/911545823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-10 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4900753-0310-4/1-C","Quality Control Sample-Field Blank","Water",NA,2021-03-10,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545827","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4900753-0310-4%2F1-C/results/911545827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-10 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901050-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545832",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901050-0308-4-C/results/911545832/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-08 17:20:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901050-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545836",NA,"as N","Nitrogen","Dissolved","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901050-0308-4-C/results/911545836/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-08 17:20:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901100-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545841",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901100-0308-4-C/results/911545841/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:36","STORET",7,NA,2021-03-08 17:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901100-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545845",NA,"as N","Nitrogen","Dissolved","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901100-0308-4-C/results/911545845/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:37","STORET",7,NA,2021-03-08 17:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901180-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545850",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901180-0308-4-C/results/911545850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:37","STORET",7,NA,2021-03-08 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901180-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545854",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901180-0308-4-C/results/911545854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:37","STORET",7,NA,2021-03-08 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901190-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545894",NA,"as N","Nitrogen","Total","0.464","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901190-0308-4-C/results/911545894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:37","STORET",7,NA,2021-03-08 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.464,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901190-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545898",NA,"as N","Nitrogen","Dissolved","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901190-0308-4-C/results/911545898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:37","STORET",7,NA,2021-03-08 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901200-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545938",NA,"as N","Nitrogen","Total","1.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901200-0308-4-C/results/911545938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:37","STORET",7,NA,2021-03-08 16:45:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.94,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901200-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545942",NA,"as N","Nitrogen","Dissolved","2.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901200-0308-4-C/results/911545942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:37","STORET",7,NA,2021-03-08 16:45:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901225-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545981",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901225-0308-4-C/results/911545981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:38","STORET",7,NA,2021-03-08 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901225-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911545985",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901225-0308-4-C/results/911545985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:38","STORET",7,NA,2021-03-08 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901431-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546024",NA,"as N","Nitrogen","Total","6.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901431-0308-4-C/results/911546024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:38","STORET",7,NA,2021-03-08 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.81,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901431-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546028",NA,"as N","Nitrogen","Dissolved","5.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901431-0308-4-C/results/911546028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:38","STORET",7,NA,2021-03-08 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901432-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546033",NA,"as N","Nitrogen","Total","6.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901432-0308-4-C/results/911546033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:38","STORET",7,NA,2021-03-08 19:10:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",6.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901432-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546037",NA,"as N","Nitrogen","Dissolved","7.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901432-0308-4-C/results/911546037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:38","STORET",7,NA,2021-03-08 19:10:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",7.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901600-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546042",NA,"as N","Nitrogen","Total","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901600-0308-4-C/results/911546042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:38","STORET",7,NA,2021-03-08 18:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901600-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546046",NA,"as N","Nitrogen","Dissolved","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901600-0308-4-C/results/911546046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:38","STORET",7,NA,2021-03-08 18:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901700-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546051",NA,"as N","Nitrogen","Total","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901700-0308-4-C/results/911546051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:38","STORET",7,NA,2021-03-08 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901700-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546055",NA,"as N","Nitrogen","Dissolved","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901700-0308-4-C/results/911546055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-08 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901730-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546060",NA,"as N","Nitrogen","Total","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901730-0308-4-C/results/911546060/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-08 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901730-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546064",NA,"as N","Nitrogen","Dissolved","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901730-0308-4-C/results/911546064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-08 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901790-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546069",NA,"as N","Nitrogen","Total","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901790-0309-4-C/results/911546069/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-09 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901790-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546073",NA,"as N","Nitrogen","Dissolved","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901790-0309-4-C/results/911546073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-09 17:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901975-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546078",NA,"as N","Nitrogen","Total","2.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901975-0309-4-C/results/911546078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-09 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901975-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546082",NA,"as N","Nitrogen","Dissolved","2.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901975-0309-4-C/results/911546082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-09 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901980-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546087",NA,"as N","Nitrogen","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901980-0309-4-C/results/911546087/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-09 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4901980-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546091",NA,"as N","Nitrogen","Dissolved","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4901980-0309-4-C/results/911546091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-09 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902000-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546096",NA,"as N","Nitrogen","Total","2.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902000-0308-4-C/results/911546096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-08 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902000-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546100",NA,"as N","Nitrogen","Dissolved","2.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902000-0308-4-C/results/911546100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-08 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902040-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546106",NA,"as N","Nitrogen","Total","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902040-0308-4-C/results/911546106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-08 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902040-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546110",NA,"as N","Nitrogen","Dissolved","2.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902040-0308-4-C/results/911546110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-08 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902050-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546115",NA,"as N","Nitrogen","Total","1.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902050-0308-4-C/results/911546115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:39","STORET",7,NA,2021-03-08 18:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902050-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546119",NA,"as N","Nitrogen","Dissolved","1.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902050-0308-4-C/results/911546119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 18:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902700-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546124",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902700-0308-4-C/results/911546124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 19:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902700-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546128",NA,"as N","Nitrogen","Dissolved","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902700-0308-4-C/results/911546128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 19:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902710-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546134",NA,"as N","Nitrogen","Total","13.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902710-0308-4-C/results/911546134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 20:00:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902710-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546138",NA,"as N","Nitrogen","Dissolved","13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902710-0308-4-C/results/911546138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 20:00:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902720-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546144",NA,"as N","Nitrogen","Total","0.979","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902720-0308-4-C/results/911546144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.979,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902720-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546148",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902720-0308-4-C/results/911546148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902900-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546153",NA,"as N","Nitrogen","Total","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902900-0308-4-C/results/911546153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902900-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546157",NA,"as N","Nitrogen","Dissolved","0.781","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902900-0308-4-C/results/911546157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.781,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902940-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546162",NA,"as N","Nitrogen","Total","0.801","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902940-0308-4-C/results/911546162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 21:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.801,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902940-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546166",NA,"as N","Nitrogen","Dissolved","0.779","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902940-0308-4-C/results/911546166/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 21:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.779,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902941-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546171",NA,"as N","Nitrogen","Total","0.699","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902941-0308-4-C/results/911546171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 22:00:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.699,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4902941-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546175",NA,"as N","Nitrogen","Dissolved","0.604","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4902941-0308-4-C/results/911546175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-08 22:00:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.604,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903030-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546180",NA,"as N","Nitrogen","Total","3.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903030-0309-4-C/results/911546180/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:40","STORET",7,NA,2021-03-09 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903030-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546184",NA,"as N","Nitrogen","Dissolved","3.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903030-0309-4-C/results/911546184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903060-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546189",NA,"as N","Nitrogen","Total","4.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903060-0309-4-C/results/911546189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903060-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546193",NA,"as N","Nitrogen","Dissolved","4.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903060-0309-4-C/results/911546193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903080-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546198",NA,"as N","Nitrogen","Total","4.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903080-0309-4-C/results/911546198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903080-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546202",NA,"as N","Nitrogen","Dissolved","4.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903080-0309-4-C/results/911546202/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903190-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546207",NA,"as N","Nitrogen","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903190-0309-4-C/results/911546207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 21:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903190-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546211",NA,"as N","Nitrogen","Dissolved","1.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903190-0309-4-C/results/911546211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 21:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903191-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546216",NA,"as N","Nitrogen","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903191-0309-4-C/results/911546216/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 21:20:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903191-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546220",NA,"as N","Nitrogen","Dissolved","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903191-0309-4-C/results/911546220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 21:20:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903200-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546225",NA,"as N","Nitrogen","Total","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903200-0309-4-C/results/911546225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903200-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546229",NA,"as N","Nitrogen","Dissolved","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903200-0309-4-C/results/911546229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903260-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546234",NA,"as N","Nitrogen","Total","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903260-0309-4-C/results/911546234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 17:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903260-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546238",NA,"as N","Nitrogen","Dissolved","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903260-0309-4-C/results/911546238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 17:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903400-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546243",NA,"as N","Nitrogen","Total","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903400-0309-4-C/results/911546243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903400-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546247",NA,"as N","Nitrogen","Dissolved","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903400-0309-4-C/results/911546247/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903500-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546252",NA,"as N","Nitrogen","Total","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903500-0309-4-C/results/911546252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903500-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546256",NA,"as N","Nitrogen","Dissolved","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903500-0309-4-C/results/911546256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903501-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546261",NA,"as N","Nitrogen","Total","1.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903501-0309-4-C/results/911546261/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:35:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903501-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546265",NA,"as N","Nitrogen","Dissolved","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903501-0309-4-C/results/911546265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:35:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903504-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546270",NA,"as N","Nitrogen","Total","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903504-0309-4-C/results/911546270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903504-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546274",NA,"as N","Nitrogen","Dissolved","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903504-0309-4-C/results/911546274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903507-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546279",NA,"as N","Nitrogen","Total","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903507-0309-4-C/results/911546279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903507-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546283",NA,"as N","Nitrogen","Dissolved","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903507-0309-4-C/results/911546283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:41","STORET",7,NA,2021-03-09 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903510-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546288",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903510-0309-4-C/results/911546288/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-09 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903510-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546292",NA,"as N","Nitrogen","Dissolved","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903510-0309-4-C/results/911546292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-09 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903699-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546297",NA,"as N","Nitrogen","Total","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903699-0310-4-C/results/911546297/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903699-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546301",NA,"as N","Nitrogen","Dissolved","2.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903699-0310-4-C/results/911546301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903723-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546307",NA,"as N","Nitrogen","Total","25.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903723-0310-4-C/results/911546307/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 17:30:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",25.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903723-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903723","Richmond WWTP outfall 002",NA,NA,NA,NA,"41.9248800000","-111.8340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546311",NA,"as N","Nitrogen","Dissolved","24.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903723-0310-4-C/results/911546311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 17:30:00,NA,"Facility Other",NA,"16010202",NA,NA,NA,NA,"41.9248800000","-111.8340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",24.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.92488,-111.83409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903770-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546317",NA,"as N","Nitrogen","Total","2.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903770-0310-4-C/results/911546317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903770-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546321",NA,"as N","Nitrogen","Dissolved","2.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903770-0310-4-C/results/911546321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903820-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546335",NA,"as N","Nitrogen","Total","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903820-0310-4-C/results/911546335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 16:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903820-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546339",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903820-0310-4-C/results/911546339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 16:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903950-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546344",NA,"as N","Nitrogen","Total","9.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903950-0309-4-C/results/911546344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-09 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4903950-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546348",NA,"as N","Nitrogen","Dissolved","9.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4903950-0309-4-C/results/911546348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-09 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904110-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546353",NA,"as N","Nitrogen","Total","2.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904110-0310-4-C/results/911546353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904110-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546357",NA,"as N","Nitrogen","Dissolved","2.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904110-0310-4-C/results/911546357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904240-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546363",NA,"as N","Nitrogen","Total","2.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904240-0310-4-C/results/911546363/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:42","STORET",7,NA,2021-03-10 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904240-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546367",NA,"as N","Nitrogen","Dissolved","2.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904240-0310-4-C/results/911546367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904241-0310-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546372",NA,"as N","Nitrogen","Total","2.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904241-0310-4-C/results/911546372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 18:20:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904241-0310-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546376",NA,"as N","Nitrogen","Dissolved","2.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904241-0310-4-C/results/911546376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 18:20:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904250-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546381",NA,"as N","Nitrogen","Total","2.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904250-0310-4-C/results/911546381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 17:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904250-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546385",NA,"as N","Nitrogen","Dissolved","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904250-0310-4-C/results/911546385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 17:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904300-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904300","HIGH CK @ U91 XING",NA,NA,NA,NA,"41.9568700000","-111.8130100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546390",NA,"as N","Nitrogen","Total","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904300-0310-4-C/results/911546390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 18:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",41.95687,-111.81301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904300-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904300","HIGH CK @ U91 XING",NA,NA,NA,NA,"41.9568700000","-111.8130100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546394",NA,"as N","Nitrogen","Dissolved","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904300-0310-4-C/results/911546394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 18:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",41.95687,-111.81301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904310-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546399",NA,"as N","Nitrogen","Total","6.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904310-0310-4-C/results/911546399/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904310-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546403",NA,"as N","Nitrogen","Dissolved","6.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904310-0310-4-C/results/911546403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904320-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904320","CHERRY CK @ U91 XING",NA,NA,NA,NA,"41.9376100000","-111.8138100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546408",NA,"as N","Nitrogen","Total","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904320-0310-4-C/results/911546408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 17:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9376100000","-111.8138100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",41.93761,-111.81381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904320-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904320","CHERRY CK @ U91 XING",NA,NA,NA,NA,"41.9376100000","-111.8138100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546412",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904320-0310-4-C/results/911546412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 17:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9376100000","-111.8138100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.93761,-111.81381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904340-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546417",NA,"as N","Nitrogen","Total","2.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904340-0310-4-C/results/911546417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904340-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546421",NA,"as N","Nitrogen","Dissolved","2.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904340-0310-4-C/results/911546421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-10 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904490-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546426",NA,"as N","Nitrogen","Total","1.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904490-0309-4-C/results/911546426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-09 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904490-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546430",NA,"as N","Nitrogen","Dissolved","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904490-0309-4-C/results/911546430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-09 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904510-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546435",NA,"as N","Nitrogen","Total","2.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904510-0309-4-C/results/911546435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-09 18:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904510-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546439",NA,"as N","Nitrogen","Dissolved","2.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904510-0309-4-C/results/911546439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-09 18:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904720-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546444",NA,"as N","Nitrogen","Total","2.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904720-0309-4-C/results/911546444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-09 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904720-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546448",NA,"as N","Nitrogen","Dissolved","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904720-0309-4-C/results/911546448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:43","STORET",7,NA,2021-03-09 20:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904724-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546453",NA,"as N","Nitrogen","Total","2.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904724-0309-4-C/results/911546453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904724-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546457",NA,"as N","Nitrogen","Dissolved","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904724-0309-4-C/results/911546457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904726-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546462",NA,"as N","Nitrogen","Total","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904726-0309-4-C/results/911546462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904726-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546466",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904726-0309-4-C/results/911546466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904740-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546471",NA,"as N","Nitrogen","Total","16.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904740-0309-4-C/results/911546471/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 21:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904740-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546475",NA,"as N","Nitrogen","Dissolved","13.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904740-0309-4-C/results/911546475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 21:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904770-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546480",NA,"as N","Nitrogen","Total","27.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904770-0310-4-C/results/911546480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-10 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",27.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904770-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546484",NA,"as N","Nitrogen","Dissolved","28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904770-0310-4-C/results/911546484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-10 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",28,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904800-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546489",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904800-0309-4-C/results/911546489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 19:05:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904800-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546493",NA,"as N","Nitrogen","Dissolved","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904800-0309-4-C/results/911546493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 19:05:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904810-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546499",NA,"as N","Nitrogen","Total","8.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904810-0310-4-C/results/911546499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-10 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904810-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546503",NA,"as N","Nitrogen","Dissolved","6.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904810-0310-4-C/results/911546503/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-10 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904840-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904840","DITCH AB EA MILLER SC-12",NA,NA,NA,NA,"41.6555700000","-111.8690300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546509",NA,"as N","Nitrogen","Total","2.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904840-0310-4-C/results/911546509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-10 17:20:00,NA,"Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.65557,-111.86903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904840-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904840","DITCH AB EA MILLER SC-12",NA,NA,NA,NA,"41.6555700000","-111.8690300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546513",NA,"as N","Nitrogen","Dissolved","2.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904840-0310-4-C/results/911546513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-10 17:20:00,NA,"Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.65557,-111.86903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904870-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546518",NA,"as N","Nitrogen","Total","1.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904870-0309-4-C/results/911546518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 22:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904870-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546522",NA,"as N","Nitrogen","Dissolved","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904870-0309-4-C/results/911546522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 22:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904900-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546527",NA,"as N","Nitrogen","Total","3.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904900-0309-4-C/results/911546527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904900-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546531",NA,"as N","Nitrogen","Dissolved","3.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904900-0309-4-C/results/911546531/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904920-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546536",NA,"as N","Nitrogen","Total","2.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904920-0309-4-C/results/911546536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 20:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904920-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546540",NA,"as N","Nitrogen","Dissolved","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904920-0309-4-C/results/911546540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 20:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904940-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546545",NA,"as N","Nitrogen","Total","15.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904940-0309-4-C/results/911546545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904940-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546549",NA,"as N","Nitrogen","Dissolved","15.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904940-0309-4-C/results/911546549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:44","STORET",7,NA,2021-03-09 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904943-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546554",NA,"as N","Nitrogen","Total","7.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904943-0310-4-C/results/911546554/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-10 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904943-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546558",NA,"as N","Nitrogen","Dissolved","7.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904943-0310-4-C/results/911546558/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-10 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904965-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546563",NA,"as N","Nitrogen","Total","3.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904965-0309-4-C/results/911546563/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 20:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904965-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546567",NA,"as N","Nitrogen","Dissolved","3.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904965-0309-4-C/results/911546567/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 20:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904990-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546572",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904990-0309-4-C/results/911546572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4904990-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546576",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4904990-0309-4-C/results/911546576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905000-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546581",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905000-0309-4-C/results/911546581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905000-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546585",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905000-0309-4-C/results/911546585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905040-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546590",NA,"as N","Nitrogen","Total","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905040-0309-4-C/results/911546590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905040-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546594",NA,"as N","Nitrogen","Dissolved","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905040-0309-4-C/results/911546594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905050-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546599",NA,"as N","Nitrogen","Total","12.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905050-0309-4-C/results/911546599/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905050-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546603",NA,"as N","Nitrogen","Dissolved","12.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905050-0309-4-C/results/911546603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:45","STORET",7,NA,2021-03-09 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905052-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546644",NA,"as N","Nitrogen","Total","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905052-0309-4-C/results/911546644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:46","STORET",7,NA,2021-03-09 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905052-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546648",NA,"as N","Nitrogen","Dissolved","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905052-0309-4-C/results/911546648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:46","STORET",7,NA,2021-03-09 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905070-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546688",NA,"as N","Nitrogen","Total","27.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905070-0309-4-C/results/911546688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:46","STORET",7,NA,2021-03-09 17:00:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",27.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905070-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546692",NA,"as N","Nitrogen","Dissolved","24.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905070-0309-4-C/results/911546692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:46","STORET",7,NA,2021-03-09 17:00:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",24.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905090-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546732",NA,"as N","Nitrogen","Total","19.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905090-0309-4-C/results/911546732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:46","STORET",7,NA,2021-03-09 17:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905090-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546736",NA,"as N","Nitrogen","Dissolved","18.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905090-0309-4-C/results/911546736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:46","STORET",7,NA,2021-03-09 17:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905200-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546775",NA,"as N","Nitrogen","Total","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905200-0309-4-C/results/911546775/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905200-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546779",NA,"as N","Nitrogen","Dissolved","0.161","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905200-0309-4-C/results/911546779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.161,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905301-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546784",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905301-0309-4-C/results/911546784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 16:35:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905301-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546788",NA,"as N","Nitrogen","Dissolved","0.155","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905301-0309-4-C/results/911546788/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 16:35:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.155,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905400-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546793",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905400-0309-4-C/results/911546793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905400-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546797",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905400-0309-4-C/results/911546797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905440-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546802",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905440-0309-4-C/results/911546802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 22:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905440-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546806",NA,"as N","Nitrogen","Dissolved","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905440-0309-4-C/results/911546806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 22:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905441-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546811",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905441-0309-4-C/results/911546811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 23:00:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905441-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546815",NA,"as N","Nitrogen","Dissolved","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905441-0309-4-C/results/911546815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-09 23:00:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905520-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546821",NA,"as N","Nitrogen","Total","18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905520-0310-4-C/results/911546821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-10 18:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905520-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546825",NA,"as N","Nitrogen","Dissolved","17.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905520-0310-4-C/results/911546825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-10 18:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905540-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546831",NA,"as N","Nitrogen","Total","40.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905540-0310-4-C/results/911546831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-10 17:05:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",40.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905540-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546835",NA,"as N","Nitrogen","Dissolved","40.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905540-0310-4-C/results/911546835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:47","STORET",7,NA,2021-03-10 17:05:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",40.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905580-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546841",NA,"as N","Nitrogen","Total","0.965","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905580-0310-4-C/results/911546841/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.965,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905580-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546845",NA,"as N","Nitrogen","Dissolved","0.967","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905580-0310-4-C/results/911546845/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.967,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905590-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546850",NA,"as N","Nitrogen","Total","0.952","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905590-0310-4-C/results/911546850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 20:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.952,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905590-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546854",NA,"as N","Nitrogen","Dissolved","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905590-0310-4-C/results/911546854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 20:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905630-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546859",NA,"as N","Nitrogen","Total","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905630-0310-4-C/results/911546859/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905630-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546863",NA,"as N","Nitrogen","Dissolved","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905630-0310-4-C/results/911546863/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905631-0310-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-10,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546868",NA,"as N","Nitrogen","Total","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905631-0310-4-C/results/911546868/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 19:05:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905631-0310-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-10,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546872",NA,"as N","Nitrogen","Dissolved","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905631-0310-4-C/results/911546872/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 19:05:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905640-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546877",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905640-0310-4-C/results/911546877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 19:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905640-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546881",NA,"as N","Nitrogen","Dissolved","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905640-0310-4-C/results/911546881/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 19:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905650-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546886",NA,"as N","Nitrogen","Total","0.508","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905650-0310-4-C/results/911546886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.508,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905650-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546890",NA,"as N","Nitrogen","Dissolved","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905650-0310-4-C/results/911546890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905670-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546895",NA,"as N","Nitrogen","Total","0.493","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905670-0309-4-C/results/911546895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-09 23:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.493,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905670-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546899",NA,"as N","Nitrogen","Dissolved","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905670-0309-4-C/results/911546899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-09 23:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905700-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546904",NA,"as N","Nitrogen","Total","0.188","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905700-0309-4-C/results/911546904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-09 23:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.188,"MG/L","Numeric","Pass","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905700-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546908",NA,"as N","Nitrogen","Dissolved","0.177","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905700-0309-4-C/results/911546908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-09 23:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.177,"MG/L","Numeric","Pass","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905740-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"17:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546913",NA,"as N","Nitrogen","Total","0.129","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905740-0309-4-C/results/911546913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 00:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.129,"MG/L","Numeric","Pass","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905740-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"17:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546917",NA,"as N","Nitrogen","Dissolved","0.117","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905740-0309-4-C/results/911546917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:48","STORET",7,NA,2021-03-10 00:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.117,"MG/L","Numeric","Pass","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905750-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546922",NA,"as N","Nitrogen","Total","0.193","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905750-0309-4-C/results/911546922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-10 00:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.193,"MG/L","Numeric","Pass","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905750-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546926",NA,"as N","Nitrogen","Dissolved","0.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905750-0309-4-C/results/911546926/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-10 00:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905780-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546931",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905780-0309-4-C/results/911546931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-10 00:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905780-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546935",NA,"as N","Nitrogen","Dissolved","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905780-0309-4-C/results/911546935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-10 00:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905940-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546940",NA,"as N","Nitrogen","Total","3.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905940-0310-4-C/results/911546940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-10 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4905940-0310-4-C","Sample-Routine","Water",NA,2021-03-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546944",NA,"as N","Nitrogen","Dissolved","3.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4905940-0310-4-C/results/911546944/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-10 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4906400-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546967",NA,"as N","Nitrogen","Total","0.152","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4906400-0309-4-C/results/911546967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-09 22:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.152,"MG/L","Numeric","Pass","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4906400-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546971",NA,"as N","Nitrogen","Dissolved","0.148","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4906400-0309-4-C/results/911546971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-09 22:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.148,"MG/L","Numeric","Pass","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908165-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546976",NA,"as N","Nitrogen","Total","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908165-0308-4-C/results/911546976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-08 19:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908165-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546980",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908165-0308-4-C/results/911546980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-08 19:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908170-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546985",NA,"as N","Nitrogen","Total","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908170-0308-4-C/results/911546985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-08 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908170-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546989",NA,"as N","Nitrogen","Dissolved","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908170-0308-4-C/results/911546989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-08 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908200-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908200","GENES CK @ U-16 XING",NA,NA,NA,NA,"41.5238300000","-111.1560300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546994",NA,"as N","Nitrogen","Total","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908200-0308-4-C/results/911546994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-08 16:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",41.52383,-111.15603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908200-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908200","GENES CK @ U-16 XING",NA,NA,NA,NA,"41.5238300000","-111.1560300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911546998",NA,"as N","Nitrogen","Dissolved","0.159","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908200-0308-4-C/results/911546998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-08 16:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.159,"MG/L","Numeric","Pass","Uncensored",41.52383,-111.15603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908280-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547003",NA,"as N","Nitrogen","Total","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908280-0308-4-C/results/911547003/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-08 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908280-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547007",NA,"as N","Nitrogen","Dissolved","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908280-0308-4-C/results/911547007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:49","STORET",7,NA,2021-03-08 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908281-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547012",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908281-0308-4-C/results/911547012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 19:20:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908281-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547016",NA,"as N","Nitrogen","Dissolved","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908281-0308-4-C/results/911547016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 19:20:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908350-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547021",NA,"as N","Nitrogen","Total","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908350-0308-4-C/results/911547021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 18:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908350-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547025",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908350-0308-4-C/results/911547025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 18:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908500-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547030",NA,"as N","Nitrogen","Total","0.735","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908500-0308-4-C/results/911547030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 16:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.735,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908500-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547034",NA,"as N","Nitrogen","Dissolved","0.508","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908500-0308-4-C/results/911547034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 16:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.508,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908744-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547039",NA,"as N","Nitrogen","Total","0.138","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908744-0309-4-C/results/911547039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-09 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.138,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908744-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547043",NA,"as N","Nitrogen","Dissolved","0.152","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908744-0309-4-C/results/911547043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-09 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.152,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908745-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547048",NA,"as N","Nitrogen","Total","0.611","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908745-0308-4-C/results/911547048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.611,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-4908745-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547052",NA,"as N","Nitrogen","Dissolved","0.834","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-4908745-0308-4-C/results/911547052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.834,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-5984855-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"08:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547058",NA,"as N","Nitrogen","Total","5.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-5984855-0308-4-C/results/911547058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 15:20:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210308-5984855-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"08:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547062",NA,"as N","Nitrogen","Dissolved","4.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210308-5984855-0308-4-C/results/911547062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2021-03-08 15:20:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990360-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547070",NA,"as N","Nitrogen","Total","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990360-1027-4-C/results/911547070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990360-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547074",NA,"as N","Nitrogen","Dissolved","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990360-1027-4-C/results/911547074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2020-10-27 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990373-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547098",NA,"as N","Nitrogen","Total","0.945","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990373-1027-4-C/results/911547098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2020-10-27 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.945,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990373-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547102",NA,"as N","Nitrogen","Dissolved","0.978","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990373-1027-4-C/results/911547102/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:50","STORET",7,NA,2020-10-27 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.978,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990376-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547126",NA,"as N","Nitrogen","Total","0.139","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990376-1027-4-C/results/911547126/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:51","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.139,"MG/L","Numeric","Pass","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990376-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547130",NA,"as N","Nitrogen","Dissolved","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990376-1027-4-C/results/911547130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:51","STORET",7,NA,2020-10-27 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990555-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547154","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990555-1027-4-C/results/911547154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:51","STORET",7,NA,2020-10-27 20:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990555-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-27,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547158","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990555-1027-4-C/results/911547158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:51","STORET",7,NA,2020-10-27 20:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990620-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547182",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990620-1027-4-C/results/911547182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:51","STORET",7,NA,2020-10-27 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990620-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547186",NA,"as N","Nitrogen","Dissolved","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990620-1027-4-C/results/911547186/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:51","STORET",7,NA,2020-10-27 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990640-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547210",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990640-1027-4-C/results/911547210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:51","STORET",7,NA,2020-10-27 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990640-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547214",NA,"as N","Nitrogen","Dissolved","0.913","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990640-1027-4-C/results/911547214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:51","STORET",7,NA,2020-10-27 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.913,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990650-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547238",NA,"as N","Nitrogen","Total","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990650-1027-4-C/results/911547238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:52","STORET",7,NA,2020-10-27 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990650-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547242",NA,"as N","Nitrogen","Dissolved","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990650-1027-4-C/results/911547242/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:52","STORET",7,NA,2020-10-27 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990680-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547266",NA,"as N","Nitrogen","Total","1.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990680-1027-4-C/results/911547266/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:52","STORET",7,NA,2020-10-27 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990680-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547270",NA,"as N","Nitrogen","Dissolved","2.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990680-1027-4-C/results/911547270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:52","STORET",7,NA,2020-10-27 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547294",NA,"as N","Nitrogen","Total","0.136","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990700-1027-4-C/results/911547294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:52","STORET",7,NA,2020-10-27 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.136,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990700-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547298",NA,"as N","Nitrogen","Dissolved","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990700-1027-4-C/results/911547298/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:52","STORET",7,NA,2020-10-27 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990987-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547322",NA,"as N","Nitrogen","Total","2.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990987-1027-4-C/results/911547322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:52","STORET",7,NA,2020-10-27 17:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990987-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547326",NA,"as N","Nitrogen","Dissolved","2.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990987-1027-4-C/results/911547326/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:52","STORET",7,NA,2020-10-27 17:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990996-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547350",NA,"as N","Nitrogen","Total","0.186","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990996-1027-4-C/results/911547350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:52","STORET",7,NA,2020-10-27 17:55:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990996-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547354",NA,"as N","Nitrogen","Dissolved","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990996-1027-4-C/results/911547354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-10-27 17:55:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990997-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547378",NA,"as N","Nitrogen","Total","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990997-1027-4-C/results/911547378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-10-27 18:00:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201027-4990997-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-27,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County;Division of Water Quality","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547382",NA,"as N","Nitrogen","Dissolved","0.537","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201027-4990997-1027-4-C/results/911547382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-10-27 18:00:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.537,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990360-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547406",NA,"as N","Nitrogen","Total","0.298","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990360-1117-4-C/results/911547406/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-11-17 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.298,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990360-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547410",NA,"as N","Nitrogen","Dissolved","0.164","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990360-1117-4-C/results/911547410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-11-17 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.164,"MG/L","Numeric","Pass","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990373-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547419",NA,"as N","Nitrogen","Total","0.831","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990373-1117-4-C/results/911547419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-11-17 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.831,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990376-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547423",NA,"as N","Nitrogen","Total","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990376-1117-4-C/results/911547423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-11-17 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990376-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547427",NA,"as N","Nitrogen","Dissolved","0.082","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990376-1117-4-C/results/911547427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-11-17 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.082,"MG/L","Numeric","Pass","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990555-1117-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-17,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547436","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990555-1117-4-C/results/911547436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-11-17 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990555-1117-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-17,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547440","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990555-1117-4-C/results/911547440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-11-17 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990620-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547449",NA,"as N","Nitrogen","Total","0.218","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990620-1117-4-C/results/911547449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-11-17 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.218,"MG/L","Numeric","Not Reviewed","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990620-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547453","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990620-1117-4-C/results/911547453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:53","STORET",7,NA,2020-11-17 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990640-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547462",NA,"as N","Nitrogen","Total","0.727","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990640-1117-4-C/results/911547462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.727,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990640-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547466",NA,"as N","Nitrogen","Dissolved","0.769","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990640-1117-4-C/results/911547466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.769,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990650-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547475",NA,"as N","Nitrogen","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990650-1117-4-C/results/911547475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990650-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547479",NA,"as N","Nitrogen","Dissolved","0.119","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990650-1117-4-C/results/911547479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.119,"MG/L","Numeric","Pass","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990680-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547488",NA,"as N","Nitrogen","Total","0.643","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990680-1117-4-C/results/911547488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.643,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990680-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547492",NA,"as N","Nitrogen","Dissolved","0.574","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990680-1117-4-C/results/911547492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.574,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990700-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547501",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990700-1117-4-C/results/911547501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990700-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547505",NA,"as N","Nitrogen","Dissolved","0.084","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990700-1117-4-C/results/911547505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.084,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990987-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547514",NA,"as N","Nitrogen","Total","2.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990987-1117-4-C/results/911547514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 16:50:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990987-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547518",NA,"as N","Nitrogen","Dissolved","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990987-1117-4-C/results/911547518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 16:50:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990996-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547527","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990996-1117-4-C/results/911547527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 17:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990996-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547531","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990996-1117-4-C/results/911547531/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 17:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990997-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547540","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990997-1117-4-C/results/911547540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 17:05:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201117-4990997-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547544",NA,"as N","Nitrogen","Dissolved","0.088","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201117-4990997-1117-4-C/results/911547544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-11-17 17:05:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.088,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990360-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547553",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990360-1215-4-C/results/911547553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-12-15 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990360-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547557",NA,"as N","Nitrogen","Dissolved","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990360-1215-4-C/results/911547557/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:54","STORET",7,NA,2020-12-15 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990373-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547581",NA,"as N","Nitrogen","Total","0.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990373-1215-4-C/results/911547581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:55","STORET",7,NA,2020-12-15 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990373-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547585",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990373-1215-4-C/results/911547585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:55","STORET",7,NA,2020-12-15 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990376-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547609",NA,"as N","Nitrogen","Total","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990376-1215-4-C/results/911547609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:55","STORET",7,NA,2020-12-15 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990376-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547613",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990376-1215-4-C/results/911547613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:55","STORET",7,NA,2020-12-15 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990555-1215-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-15,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547637","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990555-1215-4-C/results/911547637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:55","STORET",7,NA,2020-12-15 16:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990555-1215-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-15,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547641","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990555-1215-4-C/results/911547641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:55","STORET",7,NA,2020-12-15 16:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990620-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547665",NA,"as N","Nitrogen","Total","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990620-1215-4-C/results/911547665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:55","STORET",7,NA,2020-12-15 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990620-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547669",NA,"as N","Nitrogen","Dissolved","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990620-1215-4-C/results/911547669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:55","STORET",7,NA,2020-12-15 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990640-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547693",NA,"as N","Nitrogen","Total","0.681","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990640-1215-4-C/results/911547693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:56","STORET",7,NA,2020-12-15 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.681,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990640-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547697",NA,"as N","Nitrogen","Dissolved","0.683","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990640-1215-4-C/results/911547697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:56","STORET",7,NA,2020-12-15 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.683,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990650-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547721",NA,"as N","Nitrogen","Total","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990650-1215-4-C/results/911547721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:56","STORET",7,NA,2020-12-15 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990650-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547725",NA,"as N","Nitrogen","Dissolved","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990650-1215-4-C/results/911547725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:56","STORET",7,NA,2020-12-15 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990680-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547751",NA,"as N","Nitrogen","Total","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990680-1215-4-C/results/911547751/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:56","STORET",7,NA,2020-12-15 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990680-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547755",NA,"as N","Nitrogen","Dissolved","2.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990680-1215-4-C/results/911547755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:56","STORET",7,NA,2020-12-15 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990700-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547779",NA,"as N","Nitrogen","Total","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990700-1215-4-C/results/911547779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:56","STORET",7,NA,2020-12-15 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990700-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547783",NA,"as N","Nitrogen","Dissolved","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990700-1215-4-C/results/911547783/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2020-12-15 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990987-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547807",NA,"as N","Nitrogen","Total","2.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990987-1215-4-C/results/911547807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2020-12-15 18:10:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC201215-4990987-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547811",NA,"as N","Nitrogen","Dissolved","2.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC201215-4990987-1215-4-C/results/911547811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2020-12-15 18:10:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990360-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547835",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990360-0120-4-C/results/911547835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2021-01-20 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990360-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547839",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990360-0120-4-C/results/911547839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2021-01-20 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990373-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547848",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990373-0120-4-C/results/911547848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2021-01-20 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990373-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547852",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990373-0120-4-C/results/911547852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2021-01-20 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990376-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547861",NA,"as N","Nitrogen","Total","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990376-0120-4-C/results/911547861/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2021-01-20 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990376-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547865",NA,"as N","Nitrogen","Dissolved","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990376-0120-4-C/results/911547865/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2021-01-20 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990555-0120-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-20,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547874","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990555-0120-4-C/results/911547874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2021-01-20 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990555-0120-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-20,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547878","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990555-0120-4-C/results/911547878/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:57","STORET",7,NA,2021-01-20 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990620-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547887","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990620-0120-4-C/results/911547887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990620-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547891",NA,"as N","Nitrogen","Dissolved","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990620-0120-4-C/results/911547891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990640-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547900",NA,"as N","Nitrogen","Total","0.894","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990640-0120-4-C/results/911547900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.894,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990640-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547904",NA,"as N","Nitrogen","Dissolved","0.798","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990640-0120-4-C/results/911547904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.798,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990650-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547913",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990650-0120-4-C/results/911547913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990650-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547917",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990650-0120-4-C/results/911547917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990680-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547926",NA,"as N","Nitrogen","Total","0.843","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990680-0120-4-C/results/911547926/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.843,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990680-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547930",NA,"as N","Nitrogen","Dissolved","0.835","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990680-0120-4-C/results/911547930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.835,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990700-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547939",NA,"as N","Nitrogen","Total","0.204","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990700-0120-4-C/results/911547939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.204,"MG/L","Numeric","Not Reviewed","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990700-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547943",NA,"as N","Nitrogen","Dissolved","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990700-0120-4-C/results/911547943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990987-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547952",NA,"as N","Nitrogen","Total","3.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990987-0120-4-C/results/911547952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 18:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210120-4990987-0120-4-C","Sample-Routine","Water",NA,2021-01-20,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547956",NA,"as N","Nitrogen","Dissolved","3.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210120-4990987-0120-4-C/results/911547956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-01-20 18:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990360-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547965",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990360-0223-4-C/results/911547965/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-02-23 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990360-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547983",NA,"as N","Nitrogen","Dissolved","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990360-0223-4-C/results/911547983/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-02-23 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990373-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911547993",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990373-0223-4-C/results/911547993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:58","STORET",7,NA,2021-02-23 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990373-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548011",NA,"as N","Nitrogen","Dissolved","0.909","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990373-0223-4-C/results/911548011/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:59","STORET",7,NA,2021-02-23 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.909,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990376-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548021",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990376-0223-4-C/results/911548021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:59","STORET",7,NA,2021-02-23 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990376-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548039",NA,"as N","Nitrogen","Dissolved","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990376-0223-4-C/results/911548039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:59","STORET",7,NA,2021-02-23 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990555-0223-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-23,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548049","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990555-0223-4-C/results/911548049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:59","STORET",7,NA,2021-02-23 15:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990555-0223-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-23,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548067","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990555-0223-4-C/results/911548067/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:59","STORET",7,NA,2021-02-23 15:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990620-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548077","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990620-0223-4-C/results/911548077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:59","STORET",7,NA,2021-02-23 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990620-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548095",NA,"as N","Nitrogen","Dissolved","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990620-0223-4-C/results/911548095/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:59","STORET",7,NA,2021-02-23 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990640-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548105",NA,"as N","Nitrogen","Total","0.542","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990640-0223-4-C/results/911548105/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:35:59","STORET",7,NA,2021-02-23 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.542,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990640-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548123",NA,"as N","Nitrogen","Dissolved","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990640-0223-4-C/results/911548123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:00","STORET",7,NA,2021-02-23 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990650-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548133",NA,"as N","Nitrogen","Total","0.186","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990650-0223-4-C/results/911548133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:00","STORET",7,NA,2021-02-23 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Pass","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990650-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548151",NA,"as N","Nitrogen","Dissolved","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990650-0223-4-C/results/911548151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:00","STORET",7,NA,2021-02-23 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990680-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548161",NA,"as N","Nitrogen","Total","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990680-0223-4-C/results/911548161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:00","STORET",7,NA,2021-02-23 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990680-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548179",NA,"as N","Nitrogen","Dissolved","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990680-0223-4-C/results/911548179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:00","STORET",7,NA,2021-02-23 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990700-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548189","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990700-0223-4-C/results/911548189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:00","STORET",7,NA,2021-02-23 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990700-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548207","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990700-0223-4-C/results/911548207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:00","STORET",7,NA,2021-02-23 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990987-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548217",NA,"as N","Nitrogen","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990987-0223-4-C/results/911548217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:00","STORET",7,NA,2021-02-23 17:10:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990987-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548235",NA,"as N","Nitrogen","Dissolved","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990987-0223-4-C/results/911548235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-02-23 17:10:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990996-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548245",NA,"as N","Nitrogen","Total","0.146","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990996-0223-4-C/results/911548245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-02-23 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.146,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990996-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548263",NA,"as N","Nitrogen","Dissolved","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990996-0223-4-C/results/911548263/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-02-23 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990997-0223-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-23,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548273",NA,"as N","Nitrogen","Total","0.148","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990997-0223-4-C/results/911548273/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-02-23 17:45:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.148,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210223-4990997-0223-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-23,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548291",NA,"as N","Nitrogen","Dissolved","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210223-4990997-0223-4-C/results/911548291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-02-23 17:45:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990360-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548301",NA,"as N","Nitrogen","Total","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990360-0316-4-C/results/911548301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-03-16 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990360-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548305",NA,"as N","Nitrogen","Dissolved","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990360-0316-4-C/results/911548305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-03-16 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990373-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548314",NA,"as N","Nitrogen","Total","0.636","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990373-0316-4-C/results/911548314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-03-16 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.636,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990373-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548318",NA,"as N","Nitrogen","Dissolved","0.533","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990373-0316-4-C/results/911548318/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-03-16 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.533,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990376-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548327",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990376-0316-4-C/results/911548327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:01","STORET",7,NA,2021-03-16 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990376-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548331",NA,"as N","Nitrogen","Dissolved","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990376-0316-4-C/results/911548331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990555-0316-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-16,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548340","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990555-0316-4-C/results/911548340/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 15:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990555-0316-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-16,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548344",NA,"as N","Nitrogen","Dissolved","0.086","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990555-0316-4-C/results/911548344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 15:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.086,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990620-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548353",NA,"as N","Nitrogen","Total","0.107","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990620-0316-4-C/results/911548353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.107,"MG/L","Numeric","Pass","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990620-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548357",NA,"as N","Nitrogen","Dissolved","0.133","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990620-0316-4-C/results/911548357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.133,"MG/L","Numeric","Pass","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990640-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548366",NA,"as N","Nitrogen","Total","0.774","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990640-0316-4-C/results/911548366/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.774,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990640-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548370",NA,"as N","Nitrogen","Dissolved","0.734","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990640-0316-4-C/results/911548370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.734,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990650-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548379",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990650-0316-4-C/results/911548379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990650-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548383",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990650-0316-4-C/results/911548383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990680-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548392",NA,"as N","Nitrogen","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990680-0316-4-C/results/911548392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990680-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548396",NA,"as N","Nitrogen","Dissolved","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990680-0316-4-C/results/911548396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990700-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548405",NA,"as N","Nitrogen","Total","0.163","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990700-0316-4-C/results/911548405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.163,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990700-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548409",NA,"as N","Nitrogen","Dissolved","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990700-0316-4-C/results/911548409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990987-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548418",NA,"as N","Nitrogen","Total","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990987-0316-4-C/results/911548418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990987-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548422",NA,"as N","Nitrogen","Dissolved","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990987-0316-4-C/results/911548422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990996-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548431",NA,"as N","Nitrogen","Total","0.179","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990996-0316-4-C/results/911548431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:02","STORET",7,NA,2021-03-16 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.179,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990996-0316-4-C","Sample-Routine","Water",NA,2021-03-16,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548435",NA,"as N","Nitrogen","Dissolved","0.139","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990996-0316-4-C/results/911548435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:03","STORET",7,NA,2021-03-16 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.139,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990997-0316-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-16,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548444",NA,"as N","Nitrogen","Total","0.129","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990997-0316-4-C/results/911548444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:03","STORET",7,NA,2021-03-16 17:55:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.129,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210316-4990997-0316-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-16,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548448",NA,"as N","Nitrogen","Dissolved","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210316-4990997-0316-4-C/results/911548448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:03","STORET",7,NA,2021-03-16 17:55:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4900754-1005-2-C","Quality Control Sample-Field Blank","Water",NA,2020-10-05,"14:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548458","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4900754-1005-2-C/results/911548458/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:03","STORET",7,NA,2020-10-05 21:51:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4900754-1005-2-C","Quality Control Sample-Field Blank","Water",NA,2020-10-05,"14:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548462","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4900754-1005-2-C/results/911548462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:03","STORET",7,NA,2020-10-05 21:51:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4900755-1005-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-05,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548470","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4900755-1005-4-C/results/911548470/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:03","STORET",7,NA,2020-10-05 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4900755-1005-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-05,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548474","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4900755-1005-4-C/results/911548474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:03","STORET",7,NA,2020-10-05 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907010-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"12:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548562",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907010-1005-2-C/results/911548562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-05 19:12:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907010-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"12:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548566",NA,"as N","Nitrogen","Dissolved","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907010-1005-2-C/results/911548566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-05 19:12:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907010-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"12:40:00","MST",NA,NA,NA,"Bottom","38.45","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548569",NA,"as N","Nitrogen","Total","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907010-1005-29-C/results/911548569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-05 19:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",38.45,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907010-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"12:40:00","MST",NA,NA,NA,"Bottom","38.45","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548573",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907010-1005-29-C/results/911548573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-05 19:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",38.45,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907100-1005-4-C","Sample-Routine","Water",NA,2020-10-05,"14:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548581",NA,"as N","Nitrogen","Total","0.195","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907100-1005-4-C/results/911548581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-05 21:04:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Pass","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907100-1005-4-C","Sample-Routine","Water",NA,2020-10-05,"14:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548585",NA,"as N","Nitrogen","Dissolved","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907100-1005-4-C/results/911548585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-05 21:04:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-06,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548594",NA,"as N","Nitrogen","Total","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-2-C/results/911548594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-06 17:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-06,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548598",NA,"as N","Nitrogen","Dissolved","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-2-C/results/911548598/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-06 17:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-23-C","Sample-Routine","Water",NA,2020-10-06,"11:20:00","MST",NA,NA,NA,"AboveThermoclin","17.47","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548601",NA,"as N","Nitrogen","Total","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-23-C/results/911548601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-06 18:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",17.47,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-23-C","Sample-Routine","Water",NA,2020-10-06,"11:20:00","MST",NA,NA,NA,"AboveThermoclin","17.47","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548605",NA,"as N","Nitrogen","Dissolved","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-23-C/results/911548605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-06 18:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",17.47,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-27-C","Sample-Routine","Water",NA,2020-10-06,"11:30:00","MST",NA,NA,NA,"BelowThermoclin","19.43","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548608",NA,"as N","Nitrogen","Total","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-27-C/results/911548608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-06 18:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",19.43,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-27-C","Sample-Routine","Water",NA,2020-10-06,"11:30:00","MST",NA,NA,NA,"BelowThermoclin","19.43","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548612",NA,"as N","Nitrogen","Dissolved","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-27-C/results/911548612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-06 18:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",19.43,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-29-C","Sample-Routine","Water",NA,2020-10-06,"11:40:00","MST",NA,NA,NA,"Bottom","45.77","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548615",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-29-C/results/911548615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-06 18:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",45.77,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907180-1006-29-C","Sample-Routine","Water",NA,2020-10-06,"11:40:00","MST",NA,NA,NA,"Bottom","45.77","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548619",NA,"as N","Nitrogen","Dissolved","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907180-1006-29-C/results/911548619/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-06 18:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",45.77,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907200-1005-4-C","Sample-Routine","Water",NA,2020-10-05,"13:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548644",NA,"as N","Nitrogen","Total","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907200-1005-4-C/results/911548644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-05 20:07:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4907200-1005-4-C","Sample-Routine","Water",NA,2020-10-05,"13:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548648",NA,"as N","Nitrogen","Dissolved","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4907200-1005-4-C/results/911548648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:04","STORET",7,NA,2020-10-05 20:07:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548705",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-2-C/results/911548705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-10-05 17:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548709",NA,"as N","Nitrogen","Dissolved","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-2-C/results/911548709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-10-05 17:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"10:48:00","MST",NA,NA,NA,"Bottom","34.27","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548712",NA,"as N","Nitrogen","Total","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-29-C/results/911548712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-10-05 17:48:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",34.27,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"10:48:00","MST",NA,NA,NA,"Bottom","34.27","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548716",NA,"as N","Nitrogen","Dissolved","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-29-C/results/911548716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-10-05 17:48:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",34.27,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-PZ-C","Sample-Composite Without Parents","Water",NA,2020-10-05,"10:45:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,"1","m","16.36","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Photic zone integrated water samples taken 1, 4, 7, 10, 13, and 16 m. Licor 1% at 18.3m",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548725",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-PZ-C/results/911548725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-10-05 17:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",1,"m","Numeric",16.36,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL201005-4917190-1005-PZ-C","Sample-Composite Without Parents","Water",NA,2020-10-05,"10:45:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,"1","m","16.36","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Photic zone integrated water samples taken 1, 4, 7, 10, 13, and 16 m. Licor 1% at 18.3m",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548729",NA,"as N","Nitrogen","Dissolved","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL201005-4917190-1005-PZ-C/results/911548729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-10-05 17:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",1,"m","Numeric",16.36,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201123-4994175-1123-4-C","Sample-Routine","Water",NA,2020-11-23,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548734",NA,"as N","Nitrogen","Total","4.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201123-4994175-1123-4-C/results/911548734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-11-23 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201123-4994175-1123-4-C","Sample-Routine","Water",NA,2020-11-23,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548738",NA,"as N","Nitrogen","Dissolved","4.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201123-4994175-1123-4-C/results/911548738/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-11-23 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201123-4994270-1123-4-C","Sample-Routine","Water",NA,2020-11-23,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548763",NA,"as N","Nitrogen","Total","4.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201123-4994270-1123-4-C/results/911548763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-11-23 16:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201123-4994270-1123-4-C","Sample-Routine","Water",NA,2020-11-23,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548767",NA,"as N","Nitrogen","Dissolved","4.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201123-4994270-1123-4-C/results/911548767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:05","STORET",7,NA,2020-11-23 16:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201207-4990006-1207-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-07,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548793","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4990006-1207-4-C/results/911548793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:06","STORET",7,NA,2020-12-07 17:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201207-4990006-1207-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-07,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548797","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4990006-1207-4-C/results/911548797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:06","STORET",7,NA,2020-12-07 17:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201207-4994175-1207-4-C","Sample-Routine","Water",NA,2020-12-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548823",NA,"as N","Nitrogen","Total","4.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994175-1207-4-C/results/911548823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:06","STORET",7,NA,2020-12-07 17:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201207-4994175-1207-4-C","Sample-Routine","Water",NA,2020-12-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548827",NA,"as N","Nitrogen","Dissolved","4.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994175-1207-4-C/results/911548827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:06","STORET",7,NA,2020-12-07 17:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201207-4994270-1207-4-C","Sample-Routine","Water",NA,2020-12-07,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548853",NA,"as N","Nitrogen","Total","4.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994270-1207-4-C/results/911548853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:06","STORET",7,NA,2020-12-07 16:50:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201207-4994270-1207-4-C","Sample-Routine","Water",NA,2020-12-07,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548857",NA,"as N","Nitrogen","Dissolved","4.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994270-1207-4-C/results/911548857/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:06","STORET",7,NA,2020-12-07 16:50:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201207-4994271-1207-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548883",NA,"as N","Nitrogen","Total","4.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994271-1207-4-C/results/911548883/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:06","STORET",7,NA,2020-12-07 17:00:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201207-4994271-1207-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548887",NA,"as N","Nitrogen","Dissolved","4.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201207-4994271-1207-4-C/results/911548887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:06","STORET",7,NA,2020-12-07 17:00:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201021-4994175-1021-4-C","Sample-Routine","Water",NA,2020-10-21,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548912",NA,"as N","Nitrogen","Total","2.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201021-4994175-1021-4-C/results/911548912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2020-10-21 21:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201021-4994175-1021-4-C","Sample-Routine","Water",NA,2020-10-21,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548916",NA,"as N","Nitrogen","Dissolved","2.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201021-4994175-1021-4-C/results/911548916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2020-10-21 21:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201021-4994270-1021-4-C","Sample-Routine","Water",NA,2020-10-21,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548941",NA,"as N","Nitrogen","Total","2.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201021-4994270-1021-4-C/results/911548941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2020-10-21 20:50:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH201021-4994270-1021-4-C","Sample-Routine","Water",NA,2020-10-21,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548945",NA,"as N","Nitrogen","Dissolved","2.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH201021-4994270-1021-4-C/results/911548945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2020-10-21 20:50:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548971","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C/results/911548971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2021-01-25 18:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911548975","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4990006-0125-4-C/results/911548975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2021-01-25 18:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C","Sample-Routine","Water",NA,2021-01-25,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549001",NA,"as N","Nitrogen","Total","4.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C/results/911549001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2021-01-25 17:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C","Sample-Routine","Water",NA,2021-01-25,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549005",NA,"as N","Nitrogen","Dissolved","4.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4994175-0125-4-C/results/911549005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2021-01-25 17:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C","Sample-Routine","Water",NA,2021-01-25,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549031",NA,"as N","Nitrogen","Total","4.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C/results/911549031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2021-01-25 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C","Sample-Routine","Water",NA,2021-01-25,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549035",NA,"as N","Nitrogen","Dissolved","4.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210125-4994270-0125-4-C/results/911549035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:07","STORET",7,NA,2021-01-25 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-24,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549061","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C/results/911549061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-02-24 17:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-24,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549065","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4990006-0224-4-C/results/911549065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-02-24 17:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549091",NA,"as N","Nitrogen","Total","4.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C/results/911549091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-02-24 16:45:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549095",NA,"as N","Nitrogen","Dissolved","4.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994175-0224-4-C/results/911549095/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-02-24 16:45:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549121",NA,"as N","Nitrogen","Total","4.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C/results/911549121/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-02-24 16:10:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549125",NA,"as N","Nitrogen","Dissolved","4.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994270-0224-4-C/results/911549125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-02-24 16:10:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-24,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549151",NA,"as N","Nitrogen","Total","4.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C/results/911549151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-02-24 16:20:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-24,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549155",NA,"as N","Nitrogen","Dissolved","4.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210224-4994271-0224-4-C/results/911549155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-02-24 16:20:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549181","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C/results/911549181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-03-22 17:35:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549185","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4990006-0322-4-C/results/911549185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:08","STORET",7,NA,2021-03-22 17:35:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C","Sample-Routine","Water",NA,2021-03-22,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549210",NA,"as N","Nitrogen","Total","3.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C/results/911549210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2021-03-22 17:25:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.75,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C","Sample-Routine","Water",NA,2021-03-22,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549214",NA,"as N","Nitrogen","Dissolved","3.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4994175-0322-4-C/results/911549214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2021-03-22 17:25:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C","Sample-Routine","Water",NA,2021-03-22,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549239",NA,"as N","Nitrogen","Total","3.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C/results/911549239/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2021-03-22 16:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C","Sample-Routine","Water",NA,2021-03-22,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549243",NA,"as N","Nitrogen","Dissolved","3.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210322-4994270-0322-4-C/results/911549243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2021-03-22 16:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-4930007-1015-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-15,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549270","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4930007-1015-4-C/results/911549270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2020-10-15 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-4930007-1015-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-15,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549274","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4930007-1015-4-C/results/911549274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2020-10-15 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-4930009-1015-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-15,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549299","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4930009-1015-4-C/results/911549299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2020-10-15 15:10:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-4930009-1015-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-15,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549303","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4930009-1015-4-C/results/911549303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2020-10-15 15:10:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-4940720-1014-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-14,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940720","UPPER ENTERPRISE RES AB DAM 01",NA,NA,NA,NA,"37.5188700000","-113.8627500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549311",NA,"as N","Nitrogen","Total","0.566","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4940720-1014-2-C/results/911549311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2020-10-14 18:20:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.566,"MG/L","Numeric","Not Reviewed","Uncensored",37.51887,-113.86275,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-4940720-1014-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-14,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940720","UPPER ENTERPRISE RES AB DAM 01",NA,NA,NA,NA,"37.5188700000","-113.8627500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549315",NA,"as N","Nitrogen","Dissolved","0.547","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-4940720-1014-2-C/results/911549315/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:09","STORET",7,NA,2020-10-14 18:20:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.547,"MG/L","Numeric","Not Reviewed","Uncensored",37.51887,-113.86275,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941798-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941798","Red Ck bl Red Ck Res",NA,NA,NA,NA,"37.8677200000","-112.6807100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549340",NA,"as N","Nitrogen","Total","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941798-1013-4-C/results/911549340/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:10","STORET",7,NA,2020-10-13 20:10:00,NA,"River/Stream",NA,"16030006",NA,NA,NA,NA,"37.8677200000","-112.6807100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",37.86772,-112.68071,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941798-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941798","Red Ck bl Red Ck Res",NA,NA,NA,NA,"37.8677200000","-112.6807100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549344",NA,"as N","Nitrogen","Dissolved","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941798-1013-4-C/results/911549344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:10","STORET",7,NA,2020-10-13 20:10:00,NA,"River/Stream",NA,"16030006",NA,NA,NA,NA,"37.8677200000","-112.6807100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",37.86772,-112.68071,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941800-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941800","RED CK RES 01 (IRON CO.)",NA,NA,NA,NA,"37.8660900000","-112.6816100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549369",NA,"as N","Nitrogen","Total","0.695","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941800-1013-2-C/results/911549369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:10","STORET",7,NA,2020-10-13 21:15:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.8660900000","-112.6816100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.695,"MG/L","Numeric","Not Reviewed","Uncensored",37.86609,-112.68161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941800-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941800","RED CK RES 01 (IRON CO.)",NA,NA,NA,NA,"37.8660900000","-112.6816100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549373",NA,"as N","Nitrogen","Dissolved","0.654","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941800-1013-2-C/results/911549373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:10","STORET",7,NA,2020-10-13 21:15:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.8660900000","-112.6816100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.654,"MG/L","Numeric","Not Reviewed","Uncensored",37.86609,-112.68161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941820-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941820","RED CK AB RED CK RES (IRON CO.)",NA,NA,NA,NA,"37.8588600000","-112.6746600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549398",NA,"as N","Nitrogen","Total","0.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941820-1013-4-C/results/911549398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:10","STORET",7,NA,2020-10-13 20:45:00,NA,"River/Stream",NA,"16030006",NA,NA,NA,NA,"37.8588600000","-112.6746600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.47,"MG/L","Numeric","Not Reviewed","Uncensored",37.85886,-112.67466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941820-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941820","RED CK AB RED CK RES (IRON CO.)",NA,NA,NA,NA,"37.8588600000","-112.6746600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549402",NA,"as N","Nitrogen","Dissolved","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941820-1013-4-C/results/911549402/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:10","STORET",7,NA,2020-10-13 20:45:00,NA,"River/Stream",NA,"16030006",NA,NA,NA,NA,"37.8588600000","-112.6746600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",37.85886,-112.67466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941900-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-13,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941900","YANKEE MEADOWS RES 01",NA,NA,NA,NA,"37.7530300000","-112.7732800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549422",NA,"as N","Nitrogen","Total","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941900-1013-2-C/results/911549422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:11","STORET",7,NA,2020-10-13 21:30:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.7530300000","-112.7732800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",37.75303,-112.77328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941900-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-13,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941900","YANKEE MEADOWS RES 01",NA,NA,NA,NA,"37.7530300000","-112.7732800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549426",NA,"as N","Nitrogen","Dissolved","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941900-1013-2-C/results/911549426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:11","STORET",7,NA,2020-10-13 21:30:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.7530300000","-112.7732800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",37.75303,-112.77328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941910-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941910","BOWERY CK AB YANKEE MEADOWS RES",NA,NA,NA,NA,"37.7477600000","-112.7713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549456",NA,"as N","Nitrogen","Total","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941910-1013-4-C/results/911549456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:11","STORET",7,NA,2020-10-13 22:15:00,NA,"River/Stream",NA,"16030006",NA,NA,NA,NA,"37.7477600000","-112.7713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",37.74776,-112.77134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201012-5941910-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5941910","BOWERY CK AB YANKEE MEADOWS RES",NA,NA,NA,NA,"37.7477600000","-112.7713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549460",NA,"as N","Nitrogen","Dissolved","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201012-5941910-1013-4-C/results/911549460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:11","STORET",7,NA,2020-10-13 22:15:00,NA,"River/Stream",NA,"16030006",NA,NA,NA,NA,"37.7477600000","-112.7713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",37.74776,-112.77134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4930007-1020-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-20,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549485","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4930007-1020-4-C/results/911549485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:11","STORET",7,NA,2020-10-20 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4930007-1020-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-20,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549489","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4930007-1020-4-C/results/911549489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:11","STORET",7,NA,2020-10-20 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4930009-1020-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-20,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549514","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4930009-1020-4-C/results/911549514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 23:10:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4930009-1020-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-20,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549518","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4930009-1020-4-C/results/911549518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 23:10:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4937130-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-20,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549526",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937130-1020-2-C/results/911549526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 17:05:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4937130-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-20,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549530",NA,"as N","Nitrogen","Dissolved","0.628","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937130-1020-2-C/results/911549530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 17:05:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.628,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4937140-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-20,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549555",NA,"as N","Nitrogen","Total","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937140-1020-2-C/results/911549555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 17:50:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4937140-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-20,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549559",NA,"as N","Nitrogen","Dissolved","0.606","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937140-1020-2-C/results/911549559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 17:50:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.606,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4937180-1020-2-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-20,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549567",NA,"as N","Nitrogen","Total","0.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937180-1020-2-C/results/911549567/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 17:15:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-4937180-1020-2-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-20,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549571",NA,"as N","Nitrogen","Dissolved","0.723","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-4937180-1020-2-C/results/911549571/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 17:15:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.723,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-5937850-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-19,"17:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549579",NA,"as N","Nitrogen","Total","0.839","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937850-1019-2-C/results/911549579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 00:10:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.839,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-5937850-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-19,"17:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549583",NA,"as N","Nitrogen","Dissolved","0.922","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937850-1019-2-C/results/911549583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 00:10:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.922,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-5937850-1019-29-C","Sample-Routine","Water",NA,2020-10-19,"17:25:00","MST",NA,NA,NA,"Bottom","5.05","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549586",NA,"as N","Nitrogen","Total","0.888","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937850-1019-29-C/results/911549586/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 00:25:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.888,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.05,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-5937850-1019-29-C","Sample-Routine","Water",NA,2020-10-19,"17:25:00","MST",NA,NA,NA,"Bottom","5.05","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549590",NA,"as N","Nitrogen","Dissolved","0.862","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937850-1019-29-C/results/911549590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-20 00:25:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.862,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.05,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-5937870-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-19,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549615",NA,"as N","Nitrogen","Total","0.835","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937870-1019-2-C/results/911549615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-19 23:40:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.835,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-5937870-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-19,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549619",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937870-1019-2-C/results/911549619/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-19 23:40:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-5937880-1019-4-C","Sample-Routine","Water",NA,2020-10-19,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937880","POT CREEK AB MATT WARNER RES",NA,NA,NA,NA,"40.7688400000","-109.3198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549627",NA,"as N","Nitrogen","Total","0.547","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937880-1019-4-C/results/911549627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-19 23:00:00,NA,"River/Stream",NA,"14040106",NA,NA,NA,NA,"40.7688400000","-109.3198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.547,"MG/L","Numeric","Not Reviewed","Uncensored",40.76884,-109.31986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES201019-5937880-1019-4-C","Sample-Routine","Water",NA,2020-10-19,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937880","POT CREEK AB MATT WARNER RES",NA,NA,NA,NA,"40.7688400000","-109.3198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549631",NA,"as N","Nitrogen","Dissolved","0.694","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES201019-5937880-1019-4-C/results/911549631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:12","STORET",7,NA,2020-10-19 23:00:00,NA,"River/Stream",NA,"14040106",NA,NA,NA,NA,"40.7688400000","-109.3198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.694,"MG/L","Numeric","Not Reviewed","Uncensored",40.76884,-109.31986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549656",NA,"as N","Nitrogen","Total","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C/results/911549656/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 20:00:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549661",NA,"as N","Nitrogen","Dissolved","0.726","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920350-0331-4-C/results/911549661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 20:00:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.726,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-31,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549687",NA,"as N","Nitrogen","Total","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C/results/911549687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 18:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-31,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549692",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920440-0331-2-C/results/911549692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 18:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C","Sample-Routine","Water",NA,2021-03-31,"11:20:00","MST",NA,NA,NA,"Bottom","3.6","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549696",NA,"as N","Nitrogen","Dissolved","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C/results/911549696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 18:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C","Sample-Routine","Water",NA,2021-03-31,"11:20:00","MST",NA,NA,NA,"Bottom","3.6","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549717",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920440-0331-29-C/results/911549717/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 18:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-31,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549727",NA,"as N","Nitrogen","Total","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C/results/911549727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 17:40:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-31,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549732",NA,"as N","Nitrogen","Dissolved","0.713","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920450-0331-2-C/results/911549732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 17:40:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.713,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C","Sample-Routine","Water",NA,2021-03-31,"10:50:00","MST",NA,NA,NA,"Bottom","4.2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549736",NA,"as N","Nitrogen","Total","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C/results/911549736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",4.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C","Sample-Routine","Water",NA,2021-03-31,"10:50:00","MST",NA,NA,NA,"Bottom","4.2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549741",NA,"as N","Nitrogen","Dissolved","0.623","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920450-0331-29-C/results/911549741/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.623,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",4.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-31,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549750",NA,"as N","Nitrogen","Total","0.355","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C/results/911549750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 17:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.355,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-31,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549755",NA,"as N","Nitrogen","Dissolved","0.639","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920460-0331-2-C/results/911549755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 17:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.639,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C","Sample-Routine","Water",NA,2021-03-31,"10:10:00","MST",NA,NA,NA,"Bottom","5.2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549759",NA,"as N","Nitrogen","Total","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C/results/911549759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:13","STORET",7,NA,2021-03-31 17:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C","Sample-Routine","Water",NA,2021-03-31,"10:10:00","MST",NA,NA,NA,"Bottom","5.2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549764",NA,"as N","Nitrogen","Dissolved","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920460-0331-29-C/results/911549764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2021-03-31 17:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-31,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549773",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C/results/911549773/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2021-03-31 16:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-31,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549778",NA,"as N","Nitrogen","Dissolved","0.736","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920470-0331-2-C/results/911549778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2021-03-31 16:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.736,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C","Sample-Routine","Water",NA,2021-03-31,"09:35:00","MST",NA,NA,NA,"Bottom","4.1","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549782",NA,"as N","Nitrogen","Total","0.333","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C/results/911549782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2021-03-31 16:35:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.333,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",4.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C","Sample-Routine","Water",NA,2021-03-31,"09:35:00","MST",NA,NA,NA,"Bottom","4.1","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549787",NA,"as N","Nitrogen","Dissolved","0.348","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4920470-0331-29-C/results/911549787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2021-03-31 16:35:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.348,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",4.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-31,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549796","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C/results/911549796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2021-03-31 21:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-31,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549801",NA,"as N","Nitrogen","Dissolved","0.16","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4930007-0331-4-C/results/911549801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2021-03-31 21:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.16,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-31,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549827","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C/results/911549827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2021-03-31 21:35:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-31,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549832",NA,"as N","Nitrogen","Dissolved","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210331-4930009-0331-4-C/results/911549832/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2021-03-31 21:35:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LASAL201105-4958877-1105-4-C","Sample-Routine","Water",NA,2020-11-05,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4958877","Deer Creek below confluence below Deer Spring",NA,NA,NA,NA,"38.3635400000","-109.2159100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549856",NA,"as N","Nitrogen","Total","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LASAL201105-4958877-1105-4-C/results/911549856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2020-11-06 00:15:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3635400000","-109.2159100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",38.36354,-109.21591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LASAL201105-4958877-1105-4-C","Sample-Routine","Water",NA,2020-11-05,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4958877","Deer Creek below confluence below Deer Spring",NA,NA,NA,NA,"38.3635400000","-109.2159100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549860",NA,"as N","Nitrogen","Dissolved","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LASAL201105-4958877-1105-4-C/results/911549860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2020-11-06 00:15:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3635400000","-109.2159100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",38.36354,-109.21591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LASAL201105-4958890-1105-4-C","Sample-Routine","Water",NA,2020-11-05,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4958890","LASAL CK AB ROAD 073 XING AND AB FISH BARRIER",NA,NA,NA,NA,"38.3851600000","-109.2091100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549883",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LASAL201105-4958890-1105-4-C/results/911549883/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:14","STORET",7,NA,2020-11-05 23:30:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3851600000","-109.2091100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",38.38516,-109.20911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LASAL201105-4958890-1105-4-C","Sample-Routine","Water",NA,2020-11-05,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4958890","LASAL CK AB ROAD 073 XING AND AB FISH BARRIER",NA,NA,NA,NA,"38.3851600000","-109.2091100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549887",NA,"as N","Nitrogen","Dissolved","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LASAL201105-4958890-1105-4-C/results/911549887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-05 23:30:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3851600000","-109.2091100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",38.38516,-109.20911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905040-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549892",NA,"as N","Nitrogen","Dissolved","0.374","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905040-1117-4-C/results/911549892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.374,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905040-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549895",NA,"as N","Nitrogen","Total","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905040-1117-4-C/results/911549895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905140-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549901",NA,"as N","Nitrogen","Total","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905140-1117-4-C/results/911549901/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905140-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549905",NA,"as N","Nitrogen","Dissolved","0.375","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905140-1117-4-C/results/911549905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.375,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905142-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549910",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905142-1117-4-C/results/911549910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 18:40:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905142-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549914",NA,"as N","Nitrogen","Dissolved","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905142-1117-4-C/results/911549914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 18:40:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905158-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905158","Little Logan River 400 meters ab confluence Logan River",NA,NA,NA,NA,"41.7129900000","-111.8731800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549919",NA,"as N","Nitrogen","Total","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905158-1117-4-C/results/911549919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7129900000","-111.8731800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",41.71299,-111.87318,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905158-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905158","Little Logan River 400 meters ab confluence Logan River",NA,NA,NA,NA,"41.7129900000","-111.8731800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549923",NA,"as N","Nitrogen","Dissolved","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905158-1117-4-C/results/911549923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7129900000","-111.8731800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",41.71299,-111.87318,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905188-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549928",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905188-1117-4-C/results/911549928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905188-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549932",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905188-1117-4-C/results/911549932/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905192-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549937",NA,"as N","Nitrogen","Total","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905192-1117-4-C/results/911549937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 23:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905192-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549941",NA,"as N","Nitrogen","Dissolved","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905192-1117-4-C/results/911549941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 23:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905195-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549946",NA,"as N","Nitrogen","Total","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905195-1117-4-C/results/911549946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905195-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549950",NA,"as N","Nitrogen","Dissolved","0.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905195-1117-4-C/results/911549950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905198-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549955",NA,"as N","Nitrogen","Total","0.407","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905198-1117-4-C/results/911549955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.407,"MG/L","Numeric","Not Reviewed","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905198-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549959",NA,"as N","Nitrogen","Dissolved","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905198-1117-4-C/results/911549959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905400-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549964",NA,"as N","Nitrogen","Total","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905400-1117-4-C/results/911549964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV201117-4905400-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549968",NA,"as N","Nitrogen","Dissolved","0.434","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV201117-4905400-1117-4-C/results/911549968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2020-11-17 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.434,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549973",NA,"as N","Nitrogen","Total","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C/results/911549973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2021-02-02 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549977",NA,"as N","Nitrogen","Dissolved","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905040-0202-4-C/results/911549977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2021-02-02 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-02,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905135","Logan River watershed nonpoint source QA/QC blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549982","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C/results/911549982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2021-02-02 20:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-02,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905135","Logan River watershed nonpoint source QA/QC blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549986","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905135-0202-4-C/results/911549986/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2021-02-02 20:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905137","Logan River AB boat launch near SR 30 at 3600 West",NA,NA,NA,NA,"41.7430900000","-111.9198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549991",NA,"as N","Nitrogen","Total","0.474","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C/results/911549991/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2021-02-02 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.474,"MG/L","Numeric","Not Reviewed","Uncensored",41.74309,-111.91986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905137","Logan River AB boat launch near SR 30 at 3600 West",NA,NA,NA,NA,"41.7430900000","-111.9198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911549995",NA,"as N","Nitrogen","Dissolved","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905137-0202-4-C/results/911549995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:15","STORET",7,NA,2021-02-02 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",41.74309,-111.91986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550000",NA,"as N","Nitrogen","Total","0.388","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C/results/911550000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.388,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550004",NA,"as N","Nitrogen","Dissolved","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905140-0202-4-C/results/911550004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-02,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550009",NA,"as N","Nitrogen","Total","0.391","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C/results/911550009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 18:35:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.391,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-02,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550013",NA,"as N","Nitrogen","Dissolved","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905142-0202-4-C/results/911550013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 18:35:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550018",NA,"as N","Nitrogen","Total","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C/results/911550018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550022",NA,"as N","Nitrogen","Dissolved","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905188-0202-4-C/results/911550022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550027",NA,"as N","Nitrogen","Total","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C/results/911550027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550031",NA,"as N","Nitrogen","Dissolved","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905192-0202-4-C/results/911550031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550036",NA,"as N","Nitrogen","Total","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C/results/911550036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550040",NA,"as N","Nitrogen","Dissolved","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905195-0202-4-C/results/911550040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550045",NA,"as N","Nitrogen","Total","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C/results/911550045/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550049",NA,"as N","Nitrogen","Dissolved","0.336","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905198-0202-4-C/results/911550049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.336,"MG/L","Numeric","Not Reviewed","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"3999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550054",NA,"as N","Nitrogen","Total","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C/results/911550054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C","Sample-Routine","Water",NA,2021-02-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550058",NA,"as N","Nitrogen","Dissolved","0.477","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210202-4905400-0202-4-C/results/911550058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2021-02-02 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.477,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996880-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550066",NA,"as N","Nitrogen","Total","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996880-1208-4-C/results/911550066/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2020-12-08 18:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996880-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550070",NA,"as N","Nitrogen","Dissolved","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996880-1208-4-C/results/911550070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2020-12-08 18:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996903-1208-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-08,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550078","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996903-1208-4-C/results/911550078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2020-12-08 20:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996903-1208-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-08,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550082","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996903-1208-4-C/results/911550082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2020-12-08 20:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996905-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550108",NA,"as N","Nitrogen","Total","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996905-1208-4-C/results/911550108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2020-12-08 17:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996905-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550112",NA,"as N","Nitrogen","Dissolved","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996905-1208-4-C/results/911550112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2020-12-08 17:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996906-1208-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-08,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550120",NA,"as N","Nitrogen","Total","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996906-1208-4-C/results/911550120/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2020-12-08 17:35:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996906-1208-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-08,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550124",NA,"as N","Nitrogen","Dissolved","0.364","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996906-1208-4-C/results/911550124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:16","STORET",7,NA,2020-12-08 17:35:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.364,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996910-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550132",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996910-1208-4-C/results/911550132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 16:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-4996910-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550136",NA,"as N","Nitrogen","Dissolved","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-4996910-1208-4-C/results/911550136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 16:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910280-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550144",NA,"as N","Nitrogen","Total","1.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910280-1208-4-C/results/911550144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 17:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.94,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910280-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550148",NA,"as N","Nitrogen","Dissolved","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910280-1208-4-C/results/911550148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 17:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910290-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550156",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910290-1208-4-C/results/911550156/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 18:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910290-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550160",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910290-1208-4-C/results/911550160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 18:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910619-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550168",NA,"as N","Nitrogen","Total","0.843","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910619-1208-4-C/results/911550168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 19:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.843,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910619-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550172",NA,"as N","Nitrogen","Dissolved","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910619-1208-4-C/results/911550172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 19:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910620-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550198",NA,"as N","Nitrogen","Total","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910620-1208-4-C/results/911550198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 18:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910620-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550202",NA,"as N","Nitrogen","Dissolved","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910620-1208-4-C/results/911550202/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 18:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910626-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910626","Spring Creek 125m upstream of confluence with Main Creek",NA,NA,NA,NA,"40.4039100000","-111.4570200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550210",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910626-1208-4-C/results/911550210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 19:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4039100000","-111.4570200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.40391,-111.45702,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK201208-5910626-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910626","Spring Creek 125m upstream of confluence with Main Creek",NA,NA,NA,NA,"40.4039100000","-111.4570200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550214",NA,"as N","Nitrogen","Dissolved","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK201208-5910626-1208-4-C/results/911550214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2020-12-08 19:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4039100000","-111.4570200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.40391,-111.45702,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550222",NA,"as N","Nitrogen","Total","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C/results/911550222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2021-02-25 18:25:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550226",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996880-0225-4-C/results/911550226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2021-02-25 18:25:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-25,"13:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550234","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C/results/911550234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2021-02-25 20:43:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-25,"13:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550238",NA,"as N","Nitrogen","Dissolved","0.173","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996903-0225-4-C/results/911550238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:17","STORET",7,NA,2021-02-25 20:43:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.173,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550264",NA,"as N","Nitrogen","Total","0.181","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C/results/911550264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 18:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.181,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550268",NA,"as N","Nitrogen","Dissolved","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996905-0225-4-C/results/911550268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 18:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-25,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550276",NA,"as N","Nitrogen","Total","0.177","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C/results/911550276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 18:03:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.177,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-25,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550280",NA,"as N","Nitrogen","Dissolved","0.171","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996906-0225-4-C/results/911550280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 18:03:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.171,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550288",NA,"as N","Nitrogen","Total","0.152","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C/results/911550288/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 17:10:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.152,"MG/L","Numeric","Pass","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550292",NA,"as N","Nitrogen","Dissolved","0.124","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-4996910-0225-4-C/results/911550292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 17:10:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.124,"MG/L","Numeric","Pass","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"10:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550300",NA,"as N","Nitrogen","Total","1.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C/results/911550300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 17:24:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"10:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550304",NA,"as N","Nitrogen","Dissolved","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910280-0225-4-C/results/911550304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 17:24:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"12:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550312",NA,"as N","Nitrogen","Total","0.874","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C/results/911550312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 19:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.874,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"12:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550316",NA,"as N","Nitrogen","Dissolved","0.841","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910290-0225-4-C/results/911550316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 19:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.841,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550324",NA,"as N","Nitrogen","Total","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C/results/911550324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 20:40:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550328",NA,"as N","Nitrogen","Dissolved","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910619-0225-4-C/results/911550328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 20:40:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"13:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550354",NA,"as N","Nitrogen","Total","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C/results/911550354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 20:17:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"13:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550358",NA,"as N","Nitrogen","Dissolved","0.189","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910620-0225-4-C/results/911550358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:18","STORET",7,NA,2021-02-25 20:17:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.189,"MG/L","Numeric","Pass","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"12:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910626","Spring Creek 125m upstream of confluence with Main Creek",NA,NA,NA,NA,"40.4039100000","-111.4570200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550366",NA,"as N","Nitrogen","Total","0.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C/results/911550366/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:19","STORET",7,NA,2021-02-25 19:27:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4039100000","-111.4570200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.93,"MG/L","Numeric","Not Reviewed","Uncensored",40.40391,-111.45702,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C","Sample-Routine","Water",NA,2021-02-25,"12:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910626","Spring Creek 125m upstream of confluence with Main Creek",NA,NA,NA,NA,"40.4039100000","-111.4570200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550370",NA,"as N","Nitrogen","Dissolved","0.888","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210225-5910626-0225-4-C/results/911550370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:19","STORET",7,NA,2021-02-25 19:27:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4039100000","-111.4570200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.888,"MG/L","Numeric","Not Reviewed","Uncensored",40.40391,-111.45702,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201130-5949855-1130-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-30,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550377","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949855-1130-4-C/results/911550377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:19","STORET",7,NA,2020-11-30 18:00:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201221-5949855-1221-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-21,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550386","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949855-1221-4-C/results/911550386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:19","STORET",7,NA,2020-12-21 17:10:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201221-5949890-1221-4-C","Sample-Routine","Water",NA,2020-12-21,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550412",NA,"as N","Nitrogen","Total","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949890-1221-4-C/results/911550412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:19","STORET",7,NA,2020-12-21 17:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201221-5949892-1221-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-12-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550438",NA,"as N","Nitrogen","Total","0.379","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949892-1221-4-C/results/911550438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:19","STORET",7,NA,2020-12-21 17:45:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.379,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201221-5949920-1221-4-C","Sample-Routine","Water",NA,2020-12-21,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550464",NA,"as N","Nitrogen","Total","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949920-1221-4-C/results/911550464/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:19","STORET",7,NA,2020-12-21 18:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201221-5949930-1221-4-C","Sample-Routine","Water",NA,2020-12-21,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550490",NA,"as N","Nitrogen","Total","0.318","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201221-5949930-1221-4-C/results/911550490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2020-12-21 16:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.318,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949855-0201-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-01,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550516","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949855-0201-4-C/results/911550516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-01 16:45:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949890-0201-4-C","Sample-Routine","Water",NA,2021-02-01,"10:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550525",NA,"as N","Nitrogen","Total","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949890-0201-4-C/results/911550525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-01 17:17:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949892-0201-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-01,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550534",NA,"as N","Nitrogen","Total","0.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949892-0201-4-C/results/911550534/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-01 17:35:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.39,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949920-0201-4-C","Sample-Routine","Water",NA,2021-02-01,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550543",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949920-0201-4-C/results/911550543/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-01 16:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210201-5949930-0201-4-C","Sample-Routine","Water",NA,2021-02-01,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550552",NA,"as N","Nitrogen","Total","0.335","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210201-5949930-0201-4-C/results/911550552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-01 17:55:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.335,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949855-0222-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-22,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550561","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949855-0222-4-C/results/911550561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-22 17:40:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949890-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550570",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949890-0222-4-C/results/911550570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-22 18:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949892-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-22,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550579",NA,"as N","Nitrogen","Total","0.216","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949892-0222-4-C/results/911550579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-22 18:15:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.216,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949920-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550588",NA,"as N","Nitrogen","Total","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949920-0222-4-C/results/911550588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-22 17:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210222-5949930-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550597",NA,"as N","Nitrogen","Total","0.152","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210222-5949930-0222-4-C/results/911550597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:20","STORET",7,NA,2021-02-22 18:40:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.152,"MG/L","Numeric","Pass","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201019-5949855-1019-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-19,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550606","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949855-1019-4-C/results/911550606/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-10-19 18:35:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201019-5949890-1019-4-C","Sample-Routine","Water",NA,2020-10-19,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550615",NA,"as N","Nitrogen","Total","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949890-1019-4-C/results/911550615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-10-19 17:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201019-5949892-1019-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-19,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550624",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949892-1019-4-C/results/911550624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-10-19 17:30:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201019-5949920-1019-4-C","Sample-Routine","Water",NA,2020-10-19,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550633",NA,"as N","Nitrogen","Total","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949920-1019-4-C/results/911550633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-10-19 18:10:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201019-5949930-1019-4-C","Sample-Routine","Water",NA,2020-10-19,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550642",NA,"as N","Nitrogen","Total","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201019-5949930-1019-4-C/results/911550642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-10-19 16:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201130-5949890-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550651",NA,"as N","Nitrogen","Total","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949890-1130-4-C/results/911550651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-11-30 17:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201130-5949892-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-30,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550660",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949892-1130-4-C/results/911550660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-11-30 17:20:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201130-5949920-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550669",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949920-1130-4-C/results/911550669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-11-30 17:45:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE201130-5949930-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550678",NA,"as N","Nitrogen","Total","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE201130-5949930-1130-4-C/results/911550678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-11-30 16:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4930010-1010-4-C","Sample-Routine","Water",NA,2020-10-10,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550689",NA,"as N","Nitrogen","Total","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4930010-1010-4-C/results/911550689/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-10-10 20:30:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4930010-1010-4-C","Sample-Routine","Water",NA,2020-10-10,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550693",NA,"as N","Nitrogen","Dissolved","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4930010-1010-4-C/results/911550693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:21","STORET",7,NA,2020-10-10 20:30:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4930150-1009-4-C","Sample-Routine","Water",NA,2020-10-09,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550722",NA,"as N","Nitrogen","Total","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4930150-1009-4-C/results/911550722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:22","STORET",7,NA,2020-10-09 21:25:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4930150-1009-4-C","Sample-Routine","Water",NA,2020-10-09,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550726",NA,"as N","Nitrogen","Dissolved","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4930150-1009-4-C/results/911550726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:22","STORET",7,NA,2020-10-09 21:25:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4952380-1010-4-C","Sample-Routine","Water",NA,2020-10-10,"12:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550755",NA,"as N","Nitrogen","Total","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4952380-1010-4-C/results/911550755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:22","STORET",7,NA,2020-10-10 19:16:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4952380-1010-4-C","Sample-Routine","Water",NA,2020-10-10,"12:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550759",NA,"as N","Nitrogen","Dissolved","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4952380-1010-4-C/results/911550759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:22","STORET",7,NA,2020-10-10 19:16:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4952400-1010-4-C","Sample-Routine","Water",NA,2020-10-10,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550788",NA,"as N","Nitrogen","Total","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4952400-1010-4-C/results/911550788/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:22","STORET",7,NA,2020-10-10 20:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4952400-1010-4-C","Sample-Routine","Water",NA,2020-10-10,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550792",NA,"as N","Nitrogen","Dissolved","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4952400-1010-4-C/results/911550792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:22","STORET",7,NA,2020-10-10 20:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4956290-1010-4-C","Sample-Routine","Water",NA,2020-10-10,"16:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550821",NA,"as N","Nitrogen","Total","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4956290-1010-4-C/results/911550821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:22","STORET",7,NA,2020-10-10 23:09:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201009-4956290-1010-4-C","Sample-Routine","Water",NA,2020-10-10,"16:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550825",NA,"as N","Nitrogen","Dissolved","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201009-4956290-1010-4-C/results/911550825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:22","STORET",7,NA,2020-10-10 23:09:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4930010-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550874",NA,"as N","Nitrogen","Total","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4930010-1113-4-C/results/911550874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:23","STORET",7,NA,2020-11-13 19:30:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4930010-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550878",NA,"as N","Nitrogen","Dissolved","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4930010-1113-4-C/results/911550878/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:23","STORET",7,NA,2020-11-13 19:30:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4930150-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"15:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550907",NA,"as N","Nitrogen","Total","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4930150-1111-4-C/results/911550907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:23","STORET",7,NA,2020-11-11 22:32:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4930150-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"15:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550911",NA,"as N","Nitrogen","Dissolved","0.178","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4930150-1111-4-C/results/911550911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:23","STORET",7,NA,2020-11-11 22:32:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.178,"MG/L","Numeric","Pass","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4952380-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550920",NA,"as N","Nitrogen","Total","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4952380-1113-4-C/results/911550920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:23","STORET",7,NA,2020-11-13 20:30:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4952380-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550924",NA,"as N","Nitrogen","Dissolved","0.594","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4952380-1113-4-C/results/911550924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:23","STORET",7,NA,2020-11-13 20:30:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.594,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4952400-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550953",NA,"as N","Nitrogen","Total","0.741","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4952400-1113-4-C/results/911550953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:23","STORET",7,NA,2020-11-13 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.741,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4952400-1113-4-C","Sample-Routine","Water",NA,2020-11-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550957",NA,"as N","Nitrogen","Dissolved","0.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4952400-1113-4-C/results/911550957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:23","STORET",7,NA,2020-11-13 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.8,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4956290-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550986",NA,"as N","Nitrogen","Total","0.664","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4956290-1111-4-C/results/911550986/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:24","STORET",7,NA,2020-11-11 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.664,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4956290-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911550990",NA,"as N","Nitrogen","Dissolved","0.676","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4956290-1111-4-C/results/911550990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:24","STORET",7,NA,2020-11-11 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.676,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4956291-1111-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-11,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551019",NA,"as N","Nitrogen","Total","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4956291-1111-4-C/results/911551019/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:24","STORET",7,NA,2020-11-11 19:30:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-4956291-1111-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-11,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551023",NA,"as N","Nitrogen","Dissolved","0.704","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-4956291-1111-4-C/results/911551023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:24","STORET",7,NA,2020-11-11 19:30:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.704,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-5995202-1115-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551046","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-5995202-1115-4-C/results/911551046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:24","STORET",7,NA,2020-11-15 18:40:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR201111-5995202-1115-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551050","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR201111-5995202-1115-4-C/results/911551050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:24","STORET",7,NA,2020-11-15 18:40:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"12:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551079",NA,"as N","Nitrogen","Total","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C/results/911551079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:24","STORET",7,NA,2021-02-23 19:23:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"12:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551083",NA,"as N","Nitrogen","Dissolved","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4930010-0223-4-C/results/911551083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:24","STORET",7,NA,2021-02-23 19:23:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551112",NA,"as N","Nitrogen","Total","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C/results/911551112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:25","STORET",7,NA,2021-02-22 19:41:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C","Sample-Routine","Water",NA,2021-02-22,"12:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551116",NA,"as N","Nitrogen","Dissolved","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4930150-0222-4-C/results/911551116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:25","STORET",7,NA,2021-02-22 19:41:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551145",NA,"as N","Nitrogen","Total","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C/results/911551145/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:25","STORET",7,NA,2021-02-23 18:17:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"11:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551149",NA,"as N","Nitrogen","Dissolved","0.752","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4952380-0223-4-C/results/911551149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:25","STORET",7,NA,2021-02-23 18:17:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.752,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"12:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551178",NA,"as N","Nitrogen","Total","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C/results/911551178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:25","STORET",7,NA,2021-02-23 19:31:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"12:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551182",NA,"as N","Nitrogen","Dissolved","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4952400-0223-4-C/results/911551182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:25","STORET",7,NA,2021-02-23 19:31:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"14:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551211",NA,"as N","Nitrogen","Total","0.477","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C/results/911551211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:25","STORET",7,NA,2021-02-23 21:49:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.477,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C","Sample-Routine","Water",NA,2021-02-23,"14:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551215",NA,"as N","Nitrogen","Dissolved","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4956290-0223-4-C/results/911551215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:26","STORET",7,NA,2021-02-23 21:49:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-23,"14:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551244",NA,"as N","Nitrogen","Total","0.512","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C/results/911551244/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:26","STORET",7,NA,2021-02-23 21:49:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.512,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-23,"14:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551248",NA,"as N","Nitrogen","Dissolved","0.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-4956291-0223-4-C/results/911551248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:26","STORET",7,NA,2021-02-23 21:49:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.51,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-23,"17:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551277","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C/results/911551277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:26","STORET",7,NA,2021-02-24 00:21:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-23,"17:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551281","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210222-5995202-0223-4-C/results/911551281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:26","STORET",7,NA,2021-02-24 00:21:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"14:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551310",NA,"as N","Nitrogen","Total","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C/results/911551310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:26","STORET",7,NA,2021-03-31 21:16:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"14:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551314",NA,"as N","Nitrogen","Dissolved","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4930010-0331-4-C/results/911551314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:26","STORET",7,NA,2021-03-31 21:16:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C","Sample-Routine","Water",NA,2021-03-29,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551343",NA,"as N","Nitrogen","Total","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C/results/911551343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:27","STORET",7,NA,2021-03-29 19:55:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C","Sample-Routine","Water",NA,2021-03-29,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551347",NA,"as N","Nitrogen","Dissolved","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4930150-0329-4-C/results/911551347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:27","STORET",7,NA,2021-03-29 19:55:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551376",NA,"as N","Nitrogen","Total","0.422","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C/results/911551376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:27","STORET",7,NA,2021-03-31 20:00:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.422,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551380",NA,"as N","Nitrogen","Dissolved","0.584","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4952380-0331-4-C/results/911551380/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:27","STORET",7,NA,2021-03-31 20:00:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.584,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"14:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551409",NA,"as N","Nitrogen","Total","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C/results/911551409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:27","STORET",7,NA,2021-03-31 21:33:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"14:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551413",NA,"as N","Nitrogen","Dissolved","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4952400-0331-4-C/results/911551413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:27","STORET",7,NA,2021-03-31 21:33:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"16:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551442",NA,"as N","Nitrogen","Total","0.549","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C/results/911551442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:28","STORET",7,NA,2021-03-31 23:51:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.549,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"16:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551446",NA,"as N","Nitrogen","Dissolved","0.609","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210329-4956290-0331-4-C/results/911551446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:28","STORET",7,NA,2021-03-31 23:51:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.609,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4950800-1007-4-C","Sample-Routine","Water",NA,2020-10-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551475",NA,"as N","Nitrogen","Total","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4950800-1007-4-C/results/911551475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:28","STORET",7,NA,2020-10-07 19:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4950800-1007-4-C","Sample-Routine","Water",NA,2020-10-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551479",NA,"as N","Nitrogen","Dissolved","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4950800-1007-4-C/results/911551479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:28","STORET",7,NA,2020-10-07 19:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4950920-1008-4-C","Sample-Routine","Water",NA,2020-10-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551507",NA,"as N","Nitrogen","Total","0.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4950920-1008-4-C/results/911551507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:28","STORET",7,NA,2020-10-08 17:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.64,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4950920-1008-4-C","Sample-Routine","Water",NA,2020-10-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551511",NA,"as N","Nitrogen","Dissolved","0.671","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4950920-1008-4-C/results/911551511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:28","STORET",7,NA,2020-10-08 17:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.671,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4951265-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551540",NA,"as N","Nitrogen","Total","0.102","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951265-1006-4-C/results/911551540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:28","STORET",7,NA,2020-10-06 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.102,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4951265-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551544",NA,"as N","Nitrogen","Dissolved","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951265-1006-4-C/results/911551544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:28","STORET",7,NA,2020-10-06 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4951855-1002-4-C","Sample-Routine","Water",NA,2020-10-02,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551573","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951855-1002-4-C/results/911551573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:29","STORET",7,NA,2020-10-02 20:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4951855-1002-4-C","Sample-Routine","Water",NA,2020-10-02,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551577",NA,"as N","Nitrogen","Dissolved","0.096","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951855-1002-4-C/results/911551577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:29","STORET",7,NA,2020-10-02 20:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.096,"MG/L","Numeric","Pass","Uncensored",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4951857-1002-4-C","Sample-Routine","Water",NA,2020-10-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551605","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951857-1002-4-C/results/911551605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:29","STORET",7,NA,2020-10-02 18:15:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4951857-1002-4-C","Sample-Routine","Water",NA,2020-10-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551609","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4951857-1002-4-C/results/911551609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:29","STORET",7,NA,2020-10-02 18:15:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4954770-1003-4-C","Sample-Routine","Water",NA,2020-10-03,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551637",NA,"as N","Nitrogen","Total","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954770-1003-4-C/results/911551637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:29","STORET",7,NA,2020-10-03 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4954770-1003-4-C","Sample-Routine","Water",NA,2020-10-03,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551641",NA,"as N","Nitrogen","Dissolved","0.195","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954770-1003-4-C/results/911551641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:29","STORET",7,NA,2020-10-03 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Pass","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4954775-1003-4-C","Sample-Routine","Water",NA,2020-10-03,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551670",NA,"as N","Nitrogen","Total","0.163","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954775-1003-4-C/results/911551670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:29","STORET",7,NA,2020-10-03 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.163,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4954775-1003-4-C","Sample-Routine","Water",NA,2020-10-03,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551674",NA,"as N","Nitrogen","Dissolved","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954775-1003-4-C/results/911551674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:29","STORET",7,NA,2020-10-03 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4954780-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551703",NA,"as N","Nitrogen","Total","0.152","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954780-1013-4-C/results/911551703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:30","STORET",7,NA,2020-10-13 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.152,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4954780-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551707",NA,"as N","Nitrogen","Dissolved","0.111","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954780-1013-4-C/results/911551707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:30","STORET",7,NA,2020-10-13 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.111,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4954795-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551736",NA,"as N","Nitrogen","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954795-1013-4-C/results/911551736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:30","STORET",7,NA,2020-10-13 23:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-4954795-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551740",NA,"as N","Nitrogen","Dissolved","0.333","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-4954795-1013-4-C/results/911551740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:30","STORET",7,NA,2020-10-13 23:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.333,"MG/L","Numeric","Not Reviewed","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-5995202-1013-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-13,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551769","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-5995202-1013-4-C/results/911551769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:30","STORET",7,NA,2020-10-14 00:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-5995202-1013-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-13,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551773","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-5995202-1013-4-C/results/911551773/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:30","STORET",7,NA,2020-10-14 00:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-5995700-1014-4-C","Sample-Routine","Water",NA,2020-10-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551802",NA,"as N","Nitrogen","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-5995700-1014-4-C/results/911551802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-10-14 18:30:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201002-5995700-1014-4-C","Sample-Routine","Water",NA,2020-10-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551806",NA,"as N","Nitrogen","Dissolved","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201002-5995700-1014-4-C/results/911551806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-10-14 18:30:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4950800-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551835",NA,"as N","Nitrogen","Total","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4950800-1110-4-C/results/911551835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-11-10 20:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4950800-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551839","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4950800-1110-4-C/results/911551839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-11-10 20:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4950920-1109-4-C","Sample-Routine","Water",NA,2020-11-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551852",NA,"as N","Nitrogen","Total","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4950920-1109-4-C/results/911551852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-11-09 23:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4950920-1109-4-C","Sample-Routine","Water",NA,2020-11-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551856",NA,"as N","Nitrogen","Dissolved","0.547","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4950920-1109-4-C/results/911551856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-11-09 23:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.547,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4951265-1122-4-C","Sample-Routine","Water",NA,2020-11-22,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551869","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951265-1122-4-C/results/911551869/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-11-22 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4951265-1122-4-C","Sample-Routine","Water",NA,2020-11-22,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551873","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951265-1122-4-C/results/911551873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-11-22 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4951266-1122-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-22,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551886","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951266-1122-4-C/results/911551886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-11-22 19:35:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4951266-1122-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-22,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551890","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951266-1122-4-C/results/911551890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-11-22 19:35:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4951855-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551903","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951855-1111-4-C/results/911551903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:31","STORET",7,NA,2020-11-11 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4951855-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551907","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951855-1111-4-C/results/911551907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-11 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4951857-1120-4-C","Sample-Routine","Water",NA,2020-11-20,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551920","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951857-1120-4-C/results/911551920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-20 18:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4951857-1120-4-C","Sample-Routine","Water",NA,2020-11-20,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551924","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4951857-1120-4-C/results/911551924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-20 18:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4954770-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551937",NA,"as N","Nitrogen","Total","0.131","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954770-1116-4-C/results/911551937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-16 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.131,"MG/L","Numeric","Pass","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4954770-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551941",NA,"as N","Nitrogen","Dissolved","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954770-1116-4-C/results/911551941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-16 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4954775-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551954",NA,"as N","Nitrogen","Total","0.134","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954775-1116-4-C/results/911551954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-16 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.134,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4954775-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551958",NA,"as N","Nitrogen","Dissolved","0.123","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954775-1116-4-C/results/911551958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-16 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.123,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4954780-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551971","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954780-1118-4-C/results/911551971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-18 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4954780-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551975","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954780-1118-4-C/results/911551975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-18 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4954795-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551988",NA,"as N","Nitrogen","Total","0.09","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954795-1118-4-C/results/911551988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-18 22:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.09,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-4954795-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911551992","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-4954795-1118-4-C/results/911551992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-18 22:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-5995700-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552005",NA,"as N","Nitrogen","Total","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-5995700-1117-4-C/results/911552005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-17 18:30:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201109-5995700-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552009",NA,"as N","Nitrogen","Dissolved","0.088","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201109-5995700-1117-4-C/results/911552009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:32","STORET",7,NA,2020-11-17 18:30:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.088,"MG/L","Numeric","Pass","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4950800-1209-4-C","Sample-Routine","Water",NA,2020-12-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552022","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4950800-1209-4-C/results/911552022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:33","STORET",7,NA,2020-12-09 19:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4950800-1209-4-C","Sample-Routine","Water",NA,2020-12-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552026","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4950800-1209-4-C/results/911552026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:33","STORET",7,NA,2020-12-09 19:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4950920-1210-4-C","Sample-Routine","Water",NA,2020-12-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552055",NA,"as N","Nitrogen","Total","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4950920-1210-4-C/results/911552055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:33","STORET",7,NA,2020-12-10 17:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4950920-1210-4-C","Sample-Routine","Water",NA,2020-12-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552059",NA,"as N","Nitrogen","Dissolved","0.717","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4950920-1210-4-C/results/911552059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:33","STORET",7,NA,2020-12-10 17:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.717,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4951265-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552088","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951265-1208-4-C/results/911552088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:33","STORET",7,NA,2020-12-08 20:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4951265-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552092","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951265-1208-4-C/results/911552092/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:33","STORET",7,NA,2020-12-08 20:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4951855-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552121","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951855-1216-4-C/results/911552121/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:33","STORET",7,NA,2020-12-16 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4951855-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552125","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951855-1216-4-C/results/911552125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:33","STORET",7,NA,2020-12-16 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4951857-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552153","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951857-1216-4-C/results/911552153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:34","STORET",7,NA,2020-12-16 21:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4951857-1216-4-C","Sample-Routine","Water",NA,2020-12-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552157","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4951857-1216-4-C/results/911552157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:34","STORET",7,NA,2020-12-16 21:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4954770-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552185",NA,"as N","Nitrogen","Total","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954770-1214-4-C/results/911552185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:34","STORET",7,NA,2020-12-14 17:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4954770-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552189",NA,"as N","Nitrogen","Dissolved","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954770-1214-4-C/results/911552189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:34","STORET",7,NA,2020-12-14 17:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4954775-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552218",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954775-1214-4-C/results/911552218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:34","STORET",7,NA,2020-12-14 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4954775-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552222",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954775-1214-4-C/results/911552222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:34","STORET",7,NA,2020-12-14 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4954780-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552251","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954780-1214-4-C/results/911552251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:35","STORET",7,NA,2020-12-14 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4954780-1214-4-C","Sample-Routine","Water",NA,2020-12-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552255","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954780-1214-4-C/results/911552255/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:35","STORET",7,NA,2020-12-14 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4954795-1217-4-C","Sample-Routine","Water",NA,2020-12-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552284","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954795-1217-4-C/results/911552284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:35","STORET",7,NA,2020-12-17 18:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-4954795-1217-4-C","Sample-Routine","Water",NA,2020-12-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552288","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-4954795-1217-4-C/results/911552288/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:35","STORET",7,NA,2020-12-17 18:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-5995202-1216-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-16,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552317","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-5995202-1216-4-C/results/911552317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:35","STORET",7,NA,2020-12-17 00:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-5995202-1216-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-16,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552321","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-5995202-1216-4-C/results/911552321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:35","STORET",7,NA,2020-12-17 00:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-5995700-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552350",NA,"as N","Nitrogen","Total","0.218","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-5995700-1215-4-C/results/911552350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:35","STORET",7,NA,2020-12-15 19:15:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.218,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL201208-5995700-1215-4-C","Sample-Routine","Water",NA,2020-12-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552354",NA,"as N","Nitrogen","Dissolved","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL201208-5995700-1215-4-C/results/911552354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:35","STORET",7,NA,2020-12-15 19:15:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552383","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C/results/911552383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-09 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C","Sample-Routine","Water",NA,2021-03-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552387","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4950800-0309-4-C/results/911552387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-09 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552400",NA,"as N","Nitrogen","Total","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C/results/911552400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-08 22:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C","Sample-Routine","Water",NA,2021-03-08,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552404",NA,"as N","Nitrogen","Dissolved","0.539","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4950920-0308-4-C/results/911552404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-08 22:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.539,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C","Sample-Routine","Water",NA,2021-03-03,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552417","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C/results/911552417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-03 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C","Sample-Routine","Water",NA,2021-03-03,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552421","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4951855-0303-4-C/results/911552421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-03 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C","Sample-Routine","Water",NA,2021-03-03,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552434","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C/results/911552434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-03 21:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C","Sample-Routine","Water",NA,2021-03-03,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552438","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4951857-0303-4-C/results/911552438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-03 21:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C","Sample-Routine","Water",NA,2021-03-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552451",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C/results/911552451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-02 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C","Sample-Routine","Water",NA,2021-03-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552455",NA,"as N","Nitrogen","Dissolved","0.155","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954770-0302-4-C/results/911552455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-02 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.155,"MG/L","Numeric","Pass","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C","Sample-Routine","Water",NA,2021-03-02,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552468",NA,"as N","Nitrogen","Total","0.236","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C/results/911552468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:36","STORET",7,NA,2021-03-02 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.236,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C","Sample-Routine","Water",NA,2021-03-02,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552472",NA,"as N","Nitrogen","Dissolved","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954775-0302-4-C/results/911552472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2021-03-02 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C","Sample-Routine","Water",NA,2021-03-19,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552485",NA,"as N","Nitrogen","Total","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C/results/911552485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2021-03-19 20:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C","Sample-Routine","Water",NA,2021-03-19,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552489",NA,"as N","Nitrogen","Dissolved","0.177","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954780-0319-4-C/results/911552489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2021-03-19 20:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.177,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C","Sample-Routine","Water",NA,2021-03-07,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552502","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C/results/911552502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2021-03-07 20:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C","Sample-Routine","Water",NA,2021-03-07,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552506","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-4954795-0307-4-C/results/911552506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2021-03-07 20:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552519",NA,"as N","Nitrogen","Total","0.115","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C/results/911552519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2021-03-18 18:00:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.115,"MG/L","Numeric","Pass","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552523","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210302-5995700-0318-4-C/results/911552523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2021-03-18 18:00:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP201027-4994970-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Division of Water Quality","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552536",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201027-4994970-1027-4-C/results/911552536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2020-10-27 19:10:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP201027-4994970-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Division of Water Quality","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552540",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201027-4994970-1027-4-C/results/911552540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2020-10-27 19:10:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP201117-4994970-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552572",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201117-4994970-1117-4-C/results/911552572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2020-11-17 18:59:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP201117-4994970-1117-4-C","Sample-Routine","Water",NA,2020-11-17,"11:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552576",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201117-4994970-1117-4-C/results/911552576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2020-11-17 18:59:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP201231-4994970-1231-4-C","Sample-Routine","Water",NA,2020-12-31,"12:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552585",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201231-4994970-1231-4-C/results/911552585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2020-12-31 19:37:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP201231-4994970-1231-4-C","Sample-Routine","Water",NA,2020-12-31,"12:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552589",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP201231-4994970-1231-4-C/results/911552589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:37","STORET",7,NA,2020-12-31 19:37:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-10,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946000","San Pitch River NPS QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552611","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C/results/911552611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-11 00:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-10,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946000","San Pitch River NPS QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552615","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946000-0210-4-C/results/911552615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-11 00:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946450","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING",NA,NA,NA,NA,"39.2787100000","-111.6782500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552622",NA,"as N","Nitrogen","Total","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C/results/911552622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 23:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",39.27871,-111.67825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946450","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING",NA,NA,NA,NA,"39.2787100000","-111.6782500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552626",NA,"as N","Nitrogen","Dissolved","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946450-0210-4-C/results/911552626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 23:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",39.27871,-111.67825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946650","SAN PITCH R 1MI W OF CHESTER ON U-117",NA,NA,NA,NA,"39.4756600000","-111.5991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552633",NA,"as N","Nitrogen","Total","1.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C/results/911552633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 22:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.77,"MG/L","Numeric","Not Reviewed","Uncensored",39.47566,-111.59911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946650","SAN PITCH R 1MI W OF CHESTER ON U-117",NA,NA,NA,NA,"39.4756600000","-111.5991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552637",NA,"as N","Nitrogen","Dissolved","1.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946650-0210-4-C/results/911552637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 22:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.76,"MG/L","Numeric","Not Reviewed","Uncensored",39.47566,-111.59911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946670","Silver Ck Ab Cnfl/ San Pitch @ U117 Xing",NA,NA,NA,NA,"39.4758000000","-111.5994100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552644",NA,"as N","Nitrogen","Total","2.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C/results/911552644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 22:40:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4758000000","-111.5994100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.25,"MG/L","Numeric","Not Reviewed","Uncensored",39.4758,-111.59941,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946670","Silver Ck Ab Cnfl/ San Pitch @ U117 Xing",NA,NA,NA,NA,"39.4758000000","-111.5994100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552648",NA,"as N","Nitrogen","Dissolved","1.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946670-0210-4-C/results/911552648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 22:40:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4758000000","-111.5994100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.96,"MG/L","Numeric","Not Reviewed","Uncensored",39.4758,-111.59941,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946750","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552655",NA,"as N","Nitrogen","Total","0.803","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C/results/911552655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 21:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.803,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946750","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552659",NA,"as N","Nitrogen","Dissolved","0.793","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946750-0210-4-C/results/911552659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 21:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.793,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-10,"14:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946751","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552666",NA,"as N","Nitrogen","Total","0.804","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C/results/911552666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 21:22:00,NA,"River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.804,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-10,"14:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946751","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552670",NA,"as N","Nitrogen","Dissolved","0.778","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946751-0210-4-C/results/911552670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 21:22:00,NA,"River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.778,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946756","San Pitch R Bl Fairview WWTP",NA,NA,NA,NA,"39.5747900000","-111.4703900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552677",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C/results/911552677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 20:45:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",39.57479,-111.47039,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946756","San Pitch R Bl Fairview WWTP",NA,NA,NA,NA,"39.5747900000","-111.4703900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552681",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946756-0210-4-C/results/911552681/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 20:45:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",39.57479,-111.47039,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946790","SAN PITCH R @ US 89 XING N OF FAIRVIEW",NA,NA,NA,NA,"39.6382900000","-111.4465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552688",NA,"as N","Nitrogen","Total","0.762","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C/results/911552688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 18:20:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6382900000","-111.4465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.762,"MG/L","Numeric","Not Reviewed","Uncensored",39.63829,-111.44658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946790","SAN PITCH R @ US 89 XING N OF FAIRVIEW",NA,NA,NA,NA,"39.6382900000","-111.4465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552692",NA,"as N","Nitrogen","Dissolved","0.757","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946790-0210-4-C/results/911552692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 18:20:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6382900000","-111.4465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.757,"MG/L","Numeric","Not Reviewed","Uncensored",39.63829,-111.44658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946840","San Pitch R ab Fairview WWTP @ Restoration Project",NA,NA,NA,NA,"39.6086000000","-111.4483200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552699",NA,"as N","Nitrogen","Total","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C/results/911552699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 19:20:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",39.6086,-111.44832,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946840","San Pitch R ab Fairview WWTP @ Restoration Project",NA,NA,NA,NA,"39.6086000000","-111.4483200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552703",NA,"as N","Nitrogen","Dissolved","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946840-0210-4-C/results/911552703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 19:20:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",39.6086,-111.44832,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946960","SAN PITCH R AB MORONI WWTP",NA,NA,NA,NA,"39.5147000000","-111.5862800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552710",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C/results/911552710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 22:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",39.5147,-111.58628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946960","SAN PITCH R AB MORONI WWTP",NA,NA,NA,NA,"39.5147000000","-111.5862800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552714",NA,"as N","Nitrogen","Dissolved","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946960-0210-4-C/results/911552714/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:38","STORET",7,NA,2021-02-10 22:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",39.5147,-111.58628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946980","SAN PITCH R AT BRIDGE BL MORONI WWTP",NA,NA,NA,NA,"39.5010700000","-111.5854800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552721",NA,"as N","Nitrogen","Total","2.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C/results/911552721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2021-02-10 22:25:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.37,"MG/L","Numeric","Not Reviewed","Uncensored",39.50107,-111.58548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C","Sample-Routine","Water",NA,2021-02-10,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946980","SAN PITCH R AT BRIDGE BL MORONI WWTP",NA,NA,NA,NA,"39.5010700000","-111.5854800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552725",NA,"as N","Nitrogen","Dissolved","2.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210210-4946980-0210-4-C/results/911552725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2021-02-10 22:25:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.15,"MG/L","Numeric","Not Reviewed","Uncensored",39.50107,-111.58548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4940151-1110-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-10,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940151","Equipment Blank Sevier-Beaver-Cedar Watershed (Crew 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552730","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4940151-1110-4-C/results/911552730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2020-11-10 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4940151-1110-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-10,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940151","Equipment Blank Sevier-Beaver-Cedar Watershed (Crew 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552734","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4940151-1110-4-C/results/911552734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2020-11-10 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4940151-1111-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-11,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940151","Equipment Blank Sevier-Beaver-Cedar Watershed (Crew 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552756","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4940151-1111-4-C/results/911552756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2020-11-11 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4940151-1111-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-11,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940151","Equipment Blank Sevier-Beaver-Cedar Watershed (Crew 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552760","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4940151-1111-4-C/results/911552760/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2020-11-11 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948721-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948721","Otter Creek at BLM Middle Exclosure 0.2 Miles Below Upstream Fenceline",NA,NA,NA,NA,"38.3242700000","-111.9537200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552782",NA,"as N","Nitrogen","Total","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948721-1110-4-C/results/911552782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2020-11-10 21:55:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3242700000","-111.9537200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",38.32427,-111.95372,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948721-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948721","Otter Creek at BLM Middle Exclosure 0.2 Miles Below Upstream Fenceline",NA,NA,NA,NA,"38.3242700000","-111.9537200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552786",NA,"as N","Nitrogen","Dissolved","0.669","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948721-1110-4-C/results/911552786/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2020-11-10 21:55:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3242700000","-111.9537200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.669,"MG/L","Numeric","Not Reviewed","Uncensored",38.32427,-111.95372,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948722-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948722","Otter Creek at BLM Middle Exclosure at Upstream Fenceline",NA,NA,NA,NA,"38.3252000000","-111.9520400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552808",NA,"as N","Nitrogen","Total","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948722-1110-4-C/results/911552808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2020-11-10 21:35:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3252000000","-111.9520400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",38.3252,-111.95204,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948722-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948722","Otter Creek at BLM Middle Exclosure at Upstream Fenceline",NA,NA,NA,NA,"38.3252000000","-111.9520400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552812",NA,"as N","Nitrogen","Dissolved","0.665","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948722-1110-4-C/results/911552812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:39","STORET",7,NA,2020-11-10 21:35:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3252000000","-111.9520400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.665,"MG/L","Numeric","Not Reviewed","Uncensored",38.3252,-111.95204,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948724-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948724","Otter Creek at BLM Upper Exclosure at Downstream Fenceline",NA,NA,NA,NA,"38.3255500000","-111.9508600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552834",NA,"as N","Nitrogen","Total","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948724-1110-4-C/results/911552834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-10 21:25:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3255500000","-111.9508600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",38.32555,-111.95086,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948724-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948724","Otter Creek at BLM Upper Exclosure at Downstream Fenceline",NA,NA,NA,NA,"38.3255500000","-111.9508600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552838",NA,"as N","Nitrogen","Dissolved","0.505","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948724-1110-4-C/results/911552838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-10 21:25:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3255500000","-111.9508600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.505,"MG/L","Numeric","Not Reviewed","Uncensored",38.32555,-111.95086,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948726-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948726","Otter Creek at BLM Upper Exclosure 0.2 Miles Below Upstream Fenceline",NA,NA,NA,NA,"38.3324400000","-111.9472900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552860",NA,"as N","Nitrogen","Total","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948726-1110-4-C/results/911552860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-10 21:10:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3324400000","-111.9472900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",38.33244,-111.94729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948726-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948726","Otter Creek at BLM Upper Exclosure 0.2 Miles Below Upstream Fenceline",NA,NA,NA,NA,"38.3324400000","-111.9472900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552864",NA,"as N","Nitrogen","Dissolved","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948726-1110-4-C/results/911552864/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-10 21:10:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3324400000","-111.9472900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",38.33244,-111.94729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948727-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948727","Otter Creek 1 Mile Above BLM Upper Exclosure Upstream Fenceline",NA,NA,NA,NA,"38.3432200000","-111.9467000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552886",NA,"as N","Nitrogen","Total","0.555","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948727-1110-4-C/results/911552886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-10 20:30:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3432200000","-111.9467000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.555,"MG/L","Numeric","Not Reviewed","Uncensored",38.34322,-111.9467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948727-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948727","Otter Creek 1 Mile Above BLM Upper Exclosure Upstream Fenceline",NA,NA,NA,NA,"38.3432200000","-111.9467000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552890",NA,"as N","Nitrogen","Dissolved","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948727-1110-4-C/results/911552890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-10 20:30:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3432200000","-111.9467000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",38.34322,-111.9467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948728-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948728","Otter Creek at BLM Upper Exclosure at Upstream Fenceline",NA,NA,NA,NA,"38.3345400000","-111.9467600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552912",NA,"as N","Nitrogen","Total","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948728-1110-4-C/results/911552912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-10 20:55:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3345400000","-111.9467600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",38.33454,-111.94676,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948728-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948728","Otter Creek at BLM Upper Exclosure at Upstream Fenceline",NA,NA,NA,NA,"38.3345400000","-111.9467600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552916",NA,"as N","Nitrogen","Dissolved","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948728-1110-4-C/results/911552916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-10 20:55:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3345400000","-111.9467600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",38.33454,-111.94676,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948870-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948870","OTTER CK AB DIVERSION 1MI N OF ANGLE",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552938",NA,"as N","Nitrogen","Total","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948870-1111-4-C/results/911552938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-11 17:45:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948870-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948870","OTTER CK AB DIVERSION 1MI N OF ANGLE",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552942",NA,"as N","Nitrogen","Dissolved","0.581","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948870-1111-4-C/results/911552942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:40","STORET",7,NA,2020-11-11 17:45:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.581,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948878-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948878","Otter Creek at BLM Lower Exclosure near downstream Fenceline and above bridge",NA,NA,NA,NA,"38.2957400000","-111.9519900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552964",NA,"as N","Nitrogen","Total","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948878-1110-4-C/results/911552964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:41","STORET",7,NA,2020-11-10 22:30:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2957400000","-111.9519900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",38.29574,-111.95199,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948878-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948878","Otter Creek at BLM Lower Exclosure near downstream Fenceline and above bridge",NA,NA,NA,NA,"38.2957400000","-111.9519900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552968",NA,"as N","Nitrogen","Dissolved","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948878-1110-4-C/results/911552968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:41","STORET",7,NA,2020-11-10 22:30:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2957400000","-111.9519900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",38.29574,-111.95199,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948885-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948885","Otter Creek at BLM Lower Exclosure at Upstream Fenceline",NA,NA,NA,NA,"38.3110100000","-111.9528400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552990",NA,"as N","Nitrogen","Total","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948885-1110-4-C/results/911552990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:41","STORET",7,NA,2020-11-10 22:10:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3110100000","-111.9528400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",38.31101,-111.95284,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948885-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948885","Otter Creek at BLM Lower Exclosure at Upstream Fenceline",NA,NA,NA,NA,"38.3110100000","-111.9528400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911552994",NA,"as N","Nitrogen","Dissolved","0.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948885-1110-4-C/results/911552994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:41","STORET",7,NA,2020-11-10 22:10:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3110100000","-111.9528400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.5,"MG/L","Numeric","Not Reviewed","Uncensored",38.31101,-111.95284,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948940-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948940","OTTER CREEK AT THE NARROWS",NA,NA,NA,NA,"38.3520900000","-111.9464200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553016",NA,"as N","Nitrogen","Total","0.513","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948940-1110-4-C/results/911553016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:41","STORET",7,NA,2020-11-10 20:15:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.513,"MG/L","Numeric","Not Reviewed","Uncensored",38.35209,-111.94642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4948940-1110-4-C","Sample-Routine","Water",NA,2020-11-10,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4948940","OTTER CREEK AT THE NARROWS",NA,NA,NA,NA,"38.3520900000","-111.9464200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553020",NA,"as N","Nitrogen","Dissolved","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4948940-1110-4-C/results/911553020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:41","STORET",7,NA,2020-11-10 20:15:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",38.35209,-111.94642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4949540-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4949540","ANTIMONY CK AT U-22 XING AB CNFL/ E FK SEVIER R",NA,NA,NA,NA,"38.0908100000","-111.9815800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553042",NA,"as N","Nitrogen","Total","0.521","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4949540-1111-4-C/results/911553042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:41","STORET",7,NA,2020-11-11 18:25:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0908100000","-111.9815800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.521,"MG/L","Numeric","Not Reviewed","Uncensored",38.09081,-111.98158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4949540-1111-4-C","Sample-Routine","Water",NA,2020-11-11,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4949540","ANTIMONY CK AT U-22 XING AB CNFL/ E FK SEVIER R",NA,NA,NA,NA,"38.0908100000","-111.9815800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553046",NA,"as N","Nitrogen","Dissolved","0.518","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4949540-1111-4-C/results/911553046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:41","STORET",7,NA,2020-11-11 18:25:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0908100000","-111.9815800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.518,"MG/L","Numeric","Not Reviewed","Uncensored",38.09081,-111.98158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4949950-1111-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-11,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4949950","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553068",NA,"as N","Nitrogen","Total","0.388","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4949950-1111-4-C/results/911553068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2020-11-11 17:55:00,NA,"River/Stream","Replicate of 4948870","16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.388,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SBCI201109-4949950-1111-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-11,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4949950","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553072",NA,"as N","Nitrogen","Dissolved","0.507","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SBCI201109-4949950-1111-4-C/results/911553072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2020-11-11 17:55:00,NA,"River/Stream","Replicate of 4948870","16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.507,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C","Sample-Routine","Water",NA,2021-01-15,"14:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553094",NA,"as N","Nitrogen","Total","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C/results/911553094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 21:24:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C","Sample-Routine","Water",NA,2021-01-15,"14:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553099",NA,"as N","Nitrogen","Dissolved","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-4995578-0115-4-C/results/911553099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 21:24:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C","Sample-Routine","Water",NA,2021-01-15,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553104",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C/results/911553104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 21:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C","Sample-Routine","Water",NA,2021-01-15,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553109",NA,"as N","Nitrogen","Dissolved","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-4995580-0115-4-C/results/911553109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 21:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C","Sample-Routine","Water",NA,2021-01-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553114",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C/results/911553114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 18:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C","Sample-Routine","Water",NA,2021-01-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553119",NA,"as N","Nitrogen","Dissolved","0.407","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919920-0115-4-C/results/911553119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 18:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.407,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553124","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C/results/911553124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553129","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919942-0115-4-C/results/911553129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C","Sample-Routine","Water",NA,2021-01-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553134",NA,"as N","Nitrogen","Total","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C/results/911553134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 20:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C","Sample-Routine","Water",NA,2021-01-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553139",NA,"as N","Nitrogen","Dissolved","0.473","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919970-0115-4-C/results/911553139/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 20:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.473,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-15,"13:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553144",NA,"as N","Nitrogen","Total","0.439","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C/results/911553144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 20:22:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.439,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-01-15,"13:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553149",NA,"as N","Nitrogen","Dissolved","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210115-5919971-0115-4-C/results/911553149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-01-15 20:22:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"12:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553154",NA,"as N","Nitrogen","Total","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C/results/911553154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-02-24 19:17:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"12:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553159",NA,"as N","Nitrogen","Dissolved","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-4995578-0224-4-C/results/911553159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-02-24 19:17:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"11:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553164",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C/results/911553164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-02-24 18:46:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"11:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553169",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-4995580-0224-4-C/results/911553169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-02-24 18:46:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"09:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553174",NA,"as N","Nitrogen","Total","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C/results/911553174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-02-24 16:27:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"09:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553179",NA,"as N","Nitrogen","Dissolved","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919920-0224-4-C/results/911553179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-02-24 16:27:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-24,"12:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553184","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C/results/911553184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-02-24 19:34:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-24,"12:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553189","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919942-0224-4-C/results/911553189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:42","STORET",7,NA,2021-02-24 19:34:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"10:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553194",NA,"as N","Nitrogen","Total","0.391","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C/results/911553194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-02-24 17:52:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.391,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C","Sample-Routine","Water",NA,2021-02-24,"10:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553199",NA,"as N","Nitrogen","Dissolved","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919970-0224-4-C/results/911553199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-02-24 17:52:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-24,"11:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553204",NA,"as N","Nitrogen","Total","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C/results/911553204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-02-24 18:24:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-02-24,"11:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553209",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210224-5919971-0224-4-C/results/911553209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-02-24 18:24:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553214",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C/results/911553214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 20:12:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553219",NA,"as N","Nitrogen","Dissolved","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-4995578-0318-4-C/results/911553219/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 20:12:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"12:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553224",NA,"as N","Nitrogen","Total","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C/results/911553224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 19:24:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"12:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553229",NA,"as N","Nitrogen","Dissolved","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-4995580-0318-4-C/results/911553229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 19:24:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"10:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553234",NA,"as N","Nitrogen","Total","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C/results/911553234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 17:32:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"10:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553239",NA,"as N","Nitrogen","Dissolved","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919920-0318-4-C/results/911553239/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 17:32:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-18,"13:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553244","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C/results/911553244/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 20:36:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-18,"13:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553249","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919942-0318-4-C/results/911553249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 20:36:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"11:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553254",NA,"as N","Nitrogen","Total","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C/results/911553254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 18:38:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"11:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553259",NA,"as N","Nitrogen","Dissolved","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919970-0318-4-C/results/911553259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 18:38:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-18,"11:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553264",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C/results/911553264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 18:41:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-18,"11:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553269",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210318-5919971-0318-4-C/results/911553269/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2021-03-18 18:41:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4933302-1001-4-C","Sample-Routine","Water",NA,2020-10-01,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933302","Upper Water Hollow Canyon 1.0 mile above Minnie Maud Road crossing",NA,NA,NA,NA,"39.8249500000","-110.6100600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553276",NA,"as N","Nitrogen","Total","0.146","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4933302-1001-4-C/results/911553276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2020-10-01 16:00:00,NA,"River/Stream",NA,"14060005",NA,NA,NA,NA,"39.8249500000","-110.6100600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.146,"MG/L","Numeric","Pass","Uncensored",39.82495,-110.61006,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4933302-1001-4-C","Sample-Routine","Water",NA,2020-10-01,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933302","Upper Water Hollow Canyon 1.0 mile above Minnie Maud Road crossing",NA,NA,NA,NA,"39.8249500000","-110.6100600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553280",NA,"as N","Nitrogen","Dissolved","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4933302-1001-4-C/results/911553280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2020-10-01 16:00:00,NA,"River/Stream",NA,"14060005",NA,NA,NA,NA,"39.8249500000","-110.6100600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",39.82495,-110.61006,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4944202-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4944202","Willow Creek 0.75 miles above confluence with Mill Creek",NA,NA,NA,NA,"39.0097000000","-111.6916300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553301",NA,"as N","Nitrogen","Total","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4944202-1027-4-C/results/911553301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2020-10-27 17:00:00,NA,"River/Stream",NA,"16030003",NA,NA,NA,NA,"39.0097000000","-111.6916300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",39.0097,-111.69163,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4944202-1027-4-C","Sample-Routine","Water",NA,2020-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4944202","Willow Creek 0.75 miles above confluence with Mill Creek",NA,NA,NA,NA,"39.0097000000","-111.6916300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553309",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4944202-1027-4-C/results/911553309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:43","STORET",7,NA,2020-10-27 17:00:00,NA,"River/Stream",NA,"16030003",NA,NA,NA,NA,"39.0097000000","-111.6916300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",39.0097,-111.69163,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946140","TWELVEMILE CK AB DIVERSION (UT09ST-736)",NA,NA,NA,NA,"39.1437700000","-111.7319800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553330",NA,"as N","Nitrogen","Total","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C/results/911553330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:44","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.1437700000","-111.7319800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",39.14377,-111.73198,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946140","TWELVEMILE CK AB DIVERSION (UT09ST-736)",NA,NA,NA,NA,"39.1437700000","-111.7319800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553338",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C/results/911553338/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:44","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.1437700000","-111.7319800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",39.14377,-111.73198,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C","Sample-Routine","Water",NA,2020-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946140","TWELVEMILE CK AB DIVERSION (UT09ST-736)",NA,NA,NA,NA,"39.1437700000","-111.7319800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553341",NA,"as N","Nitrogen","Dissolved","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4946140-1026-4-C/results/911553341/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:44","STORET",7,NA,2020-10-26 19:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.1437700000","-111.7319800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",39.14377,-111.73198,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4955052-1015-4-C","Sample-Routine","Water",NA,2020-10-15,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955052","Bear Creek 100 meters above confluence with Beaver Creek",NA,NA,NA,NA,"38.5727300000","-109.1786600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553364",NA,"as N","Nitrogen","Total","0.333","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955052-1015-4-C/results/911553364/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:44","STORET",7,NA,2020-10-15 16:25:00,NA,"River/Stream",NA,"14030004",NA,NA,NA,NA,"38.5727300000","-109.1786600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.333,"MG/L","Numeric","Not Reviewed","Uncensored",38.57273,-109.17866,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4955052-1015-4-C","Sample-Routine","Water",NA,2020-10-15,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955052","Bear Creek 100 meters above confluence with Beaver Creek",NA,NA,NA,NA,"38.5727300000","-109.1786600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553368",NA,"as N","Nitrogen","Dissolved","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955052-1015-4-C/results/911553368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:44","STORET",7,NA,2020-10-15 16:25:00,NA,"River/Stream",NA,"14030004",NA,NA,NA,NA,"38.5727300000","-109.1786600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",38.57273,-109.17866,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4955102-1020-4-C","Sample-Routine","Water",NA,2020-10-20,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955102","Deer Creek 1.25 miles below Burr Trail road crossing",NA,NA,NA,NA,"37.8387000000","-111.3617200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553393",NA,"as N","Nitrogen","Total","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955102-1020-4-C/results/911553393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:44","STORET",7,NA,2020-10-20 16:30:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.8387000000","-111.3617200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",37.8387,-111.36172,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4955152-1021-4-C","Sample-Routine","Water",NA,2020-10-21,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955152","Dirty Devil River 1.25 stream miles ab North Hatch Canyon Road crossing",NA,NA,NA,NA,"38.1005000000","-110.3939200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553419",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955152-1021-4-C/results/911553419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:44","STORET",7,NA,2020-10-21 16:30:00,NA,"River/Stream",NA,"14070004",NA,NA,NA,NA,"38.1005000000","-110.3939200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",38.1005,-110.39392,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4955152-1021-4-C","Sample-Routine","Water",NA,2020-10-21,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955152","Dirty Devil River 1.25 stream miles ab North Hatch Canyon Road crossing",NA,NA,NA,NA,"38.1005000000","-110.3939200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553423",NA,"as N","Nitrogen","Dissolved","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955152-1021-4-C/results/911553423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:44","STORET",7,NA,2020-10-21 16:30:00,NA,"River/Stream",NA,"14070004",NA,NA,NA,NA,"38.1005000000","-110.3939200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",38.1005,-110.39392,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4955202-1022-4-C","Sample-Routine","Water",NA,2020-10-22,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955202","Dirty Devil River 225 meters below confluence with Robbers Roost Canyon",NA,NA,NA,NA,"38.3186000000","-110.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553448",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955202-1022-4-C/results/911553448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:45","STORET",7,NA,2020-10-22 16:30:00,NA,"River/Stream",NA,"14070004",NA,NA,NA,NA,"38.3186000000","-110.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",38.3186,-110.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4955202-1022-4-C","Sample-Routine","Water",NA,2020-10-22,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955202","Dirty Devil River 225 meters below confluence with Robbers Roost Canyon",NA,NA,NA,NA,"38.3186000000","-110.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553452",NA,"as N","Nitrogen","Dissolved","0.303","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4955202-1022-4-C/results/911553452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:45","STORET",7,NA,2020-10-22 16:30:00,NA,"River/Stream",NA,"14070004",NA,NA,NA,NA,"38.3186000000","-110.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.303,"MG/L","Numeric","Not Reviewed","Uncensored",38.3186,-110.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4958032-1015-4-C","Sample-Routine","Water",NA,2020-10-15,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4958032","Castle Valley CK 1/4 mi ab U-128 x-ing",NA,NA,NA,NA,"38.6710800000","-109.4499300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553477",NA,"as N","Nitrogen","Total","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958032-1015-4-C/results/911553477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:45","STORET",7,NA,2020-10-15 20:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6710800000","-109.4499300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",38.67108,-109.44993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4958032-1015-4-C","Sample-Routine","Water",NA,2020-10-15,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4958032","Castle Valley CK 1/4 mi ab U-128 x-ing",NA,NA,NA,NA,"38.6710800000","-109.4499300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553481",NA,"as N","Nitrogen","Dissolved","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958032-1015-4-C/results/911553481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:45","STORET",7,NA,2020-10-15 20:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6710800000","-109.4499300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",38.67108,-109.44993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4958877-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4958877","Deer Creek below confluence below Deer Spring",NA,NA,NA,NA,"38.3635400000","-109.2159100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553506",NA,"as N","Nitrogen","Total","0.204","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958877-1013-4-C/results/911553506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:45","STORET",7,NA,2020-10-13 23:45:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3635400000","-109.2159100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.204,"MG/L","Numeric","Not Reviewed","Uncensored",38.36354,-109.21591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4958877-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4958877","Deer Creek below confluence below Deer Spring",NA,NA,NA,NA,"38.3635400000","-109.2159100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553510",NA,"as N","Nitrogen","Dissolved","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958877-1013-4-C/results/911553510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:45","STORET",7,NA,2020-10-13 23:45:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3635400000","-109.2159100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",38.36354,-109.21591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4958883-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4958883","BEAVER CREEK ABOVE CHICKEN CR DIVERSION DITCH",NA,NA,NA,NA,"38.3896700000","-109.1694300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553535",NA,"as N","Nitrogen","Total","0.161","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958883-1013-4-C/results/911553535/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:45","STORET",7,NA,2020-10-13 21:30:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3896700000","-109.1694300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.161,"MG/L","Numeric","Pass","Uncensored",38.38967,-109.16943,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4958883-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4958883","BEAVER CREEK ABOVE CHICKEN CR DIVERSION DITCH",NA,NA,NA,NA,"38.3896700000","-109.1694300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553539",NA,"as N","Nitrogen","Dissolved","0.16","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958883-1013-4-C/results/911553539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:45","STORET",7,NA,2020-10-13 21:30:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3896700000","-109.1694300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.16,"MG/L","Numeric","Pass","Uncensored",38.38967,-109.16943,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4958890-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4958890","LASAL CK AB ROAD 073 XING AND AB FISH BARRIER",NA,NA,NA,NA,"38.3851600000","-109.2091100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553564",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958890-1013-4-C/results/911553564/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:46","STORET",7,NA,2020-10-13 22:45:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3851600000","-109.2091100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",38.38516,-109.20911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-4958890-1013-4-C","Sample-Routine","Water",NA,2020-10-13,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4958890","LASAL CK AB ROAD 073 XING AND AB FISH BARRIER",NA,NA,NA,NA,"38.3851600000","-109.2091100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553568",NA,"as N","Nitrogen","Dissolved","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-4958890-1013-4-C/results/911553568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:46","STORET",7,NA,2020-10-13 22:45:00,NA,"River/Stream",NA,"14030002",NA,NA,NA,NA,"38.3851600000","-109.2091100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",38.38516,-109.20911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-5989995-1001-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-01,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553593","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1001-4-C/results/911553593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:46","STORET",7,NA,2020-10-01 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-5989995-1001-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-01,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553597",NA,"as N","Nitrogen","Dissolved","0.139","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1001-4-C/results/911553597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:46","STORET",7,NA,2020-10-01 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.139,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-5989995-1016-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553622","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1016-4-C/results/911553622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:46","STORET",7,NA,2020-10-16 19:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-5989995-1016-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553626",NA,"as N","Nitrogen","Dissolved","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1016-4-C/results/911553626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:46","STORET",7,NA,2020-10-16 19:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-5989995-1023-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-23,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553651","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1023-4-C/results/911553651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:46","STORET",7,NA,2020-10-23 16:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-5989995-1023-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-23,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553655","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1023-4-C/results/911553655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:46","STORET",7,NA,2020-10-23 16:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-5989995-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553680","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1028-4-C/results/911553680/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:47","STORET",7,NA,2020-10-28 18:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","19","Y",FALSE +"4319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2020-5989995-1028-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553683","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-N-C","APHA","4500 N C ~ Persufate Method for Total Nitrogen",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2020-5989995-1028-4-C/results/911553683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:47","STORET",7,NA,2020-10-28 18:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","19","Y",FALSE +"4320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4910009-1005-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-05,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553711","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1005-4-C/results/911553711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:47","STORET",7,NA,2020-10-05 23:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4910009-1005-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-05,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553716","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1005-4-C/results/911553716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:47","STORET",7,NA,2020-10-05 23:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4910009-1006-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-06,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553749","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1006-4-C/results/911553749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:47","STORET",7,NA,2020-10-06 23:50:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4910009-1006-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-06,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553754","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1006-4-C/results/911553754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:47","STORET",7,NA,2020-10-06 23:50:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4910009-1007-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-07,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553769","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1007-4-C/results/911553769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:47","STORET",7,NA,2020-10-07 22:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4910009-1007-4-C","Quality Control Sample-Field Blank","Water",NA,2020-10-07,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553774","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4910009-1007-4-C/results/911553774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:47","STORET",7,NA,2020-10-07 22:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917310-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553788",NA,"as N","Nitrogen","Total","0.845","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917310-1005-2-C/results/911553788/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:48","STORET",7,NA,2020-10-05 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.845,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917310-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553793",NA,"as N","Nitrogen","Dissolved","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917310-1005-2-C/results/911553793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:48","STORET",7,NA,2020-10-05 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917310-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"11:05:00","MST",NA,NA,NA,"Bottom","0.55","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553806",NA,"as N","Nitrogen","Total","0.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917310-1005-29-C/results/911553806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:48","STORET",7,NA,2020-10-05 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.55,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917310-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"11:05:00","MST",NA,NA,NA,"Bottom","0.55","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553811",NA,"as N","Nitrogen","Dissolved","0.923","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917310-1005-29-C/results/911553811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:48","STORET",7,NA,2020-10-05 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.923,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.55,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917320-1005-2-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-05,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553844",NA,"as N","Nitrogen","Total","0.801","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917320-1005-2-C/results/911553844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:48","STORET",7,NA,2020-10-05 18:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.801,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917320-1005-2-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-05,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553849",NA,"as N","Nitrogen","Dissolved","0.822","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917320-1005-2-C/results/911553849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:48","STORET",7,NA,2020-10-05 18:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.822,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917320-1005-29-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-05,"11:15:00","MST",NA,NA,NA,"Bottom","0.57","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553862",NA,"as N","Nitrogen","Total","0.715","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917320-1005-29-C/results/911553862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:48","STORET",7,NA,2020-10-05 18:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.715,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.57,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917320-1005-29-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-05,"11:15:00","MST",NA,NA,NA,"Bottom","0.57","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553867",NA,"as N","Nitrogen","Dissolved","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917320-1005-29-C/results/911553867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:48","STORET",7,NA,2020-10-05 18:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.57,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917365-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553900",NA,"as N","Nitrogen","Total","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917365-1005-2-C/results/911553900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917365-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553905",NA,"as N","Nitrogen","Dissolved","0.727","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917365-1005-2-C/results/911553905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.727,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917365-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"11:45:00","MST",NA,NA,NA,"Bottom","0.72","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553918",NA,"as N","Nitrogen","Total","0.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917365-1005-29-C/results/911553918/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.72,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917365-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"11:45:00","MST",NA,NA,NA,"Bottom","0.72","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553923",NA,"as N","Nitrogen","Dissolved","0.861","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917365-1005-29-C/results/911553923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.861,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.72,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917370-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553956",NA,"as N","Nitrogen","Total","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917370-1005-2-C/results/911553956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917370-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553961",NA,"as N","Nitrogen","Dissolved","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917370-1005-2-C/results/911553961/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917370-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"15:35:00","MST",NA,NA,NA,"Bottom","0.69","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553974",NA,"as N","Nitrogen","Total","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917370-1005-29-C/results/911553974/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 22:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.69,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917370-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"15:35:00","MST",NA,NA,NA,"Bottom","0.69","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911553979",NA,"as N","Nitrogen","Dissolved","0.619","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917370-1005-29-C/results/911553979/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 22:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.619,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.69,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917390-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554012",NA,"as N","Nitrogen","Total","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917390-1005-2-C/results/911554012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917390-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554017",NA,"as N","Nitrogen","Dissolved","0.836","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917390-1005-2-C/results/911554017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.836,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917390-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"13:00:00","MST",NA,NA,NA,"Bottom","0.79","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554030",NA,"as N","Nitrogen","Total","0.619","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917390-1005-29-C/results/911554030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:49","STORET",7,NA,2020-10-05 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.619,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.79,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917390-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"13:00:00","MST",NA,NA,NA,"Bottom","0.79","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554035",NA,"as N","Nitrogen","Dissolved","0.639","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917390-1005-29-C/results/911554035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:50","STORET",7,NA,2020-10-05 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.639,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.79,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917450-1007-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-07,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554069",NA,"as N","Nitrogen","Total","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917450-1007-2-C/results/911554069/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:50","STORET",7,NA,2020-10-07 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917450-1007-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-07,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554074",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917450-1007-2-C/results/911554074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:50","STORET",7,NA,2020-10-07 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917500-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554088",NA,"as N","Nitrogen","Total","0.577","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917500-1005-2-C/results/911554088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:50","STORET",7,NA,2020-10-05 21:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.577,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917500-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554093",NA,"as N","Nitrogen","Dissolved","0.675","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917500-1005-2-C/results/911554093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:50","STORET",7,NA,2020-10-05 21:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.675,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917500-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"14:50:00","MST",NA,NA,NA,"Bottom","0.7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554106",NA,"as N","Nitrogen","Total","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917500-1005-29-C/results/911554106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:50","STORET",7,NA,2020-10-05 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917500-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"14:50:00","MST",NA,NA,NA,"Bottom","0.7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554111",NA,"as N","Nitrogen","Dissolved","0.646","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917500-1005-29-C/results/911554111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:50","STORET",7,NA,2020-10-05 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.646,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917520-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554144",NA,"as N","Nitrogen","Total","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917520-1005-2-C/results/911554144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-05 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917520-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554149",NA,"as N","Nitrogen","Dissolved","0.581","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917520-1005-2-C/results/911554149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-05 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.581,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917520-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"10:05:00","MST",NA,NA,NA,"Bottom","0.57","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554162",NA,"as N","Nitrogen","Total","0.555","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917520-1005-29-C/results/911554162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-05 17:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.555,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.57,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917520-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"10:05:00","MST",NA,NA,NA,"Bottom","0.57","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554167",NA,"as N","Nitrogen","Dissolved","0.611","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917520-1005-29-C/results/911554167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-05 17:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.611,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.57,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917600-1007-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-07,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554201",NA,"as N","Nitrogen","Total","0.665","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917600-1007-2-C/results/911554201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-07 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.665,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917600-1007-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-07,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554206",NA,"as N","Nitrogen","Dissolved","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917600-1007-2-C/results/911554206/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-07 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917710-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554220",NA,"as N","Nitrogen","Total","0.591","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917710-1005-2-C/results/911554220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-05 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.591,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917710-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554225",NA,"as N","Nitrogen","Dissolved","0.741","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917710-1005-2-C/results/911554225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-05 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.741,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917710-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"14:05:00","MST",NA,NA,NA,"Bottom","0.76","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554238",NA,"as N","Nitrogen","Total","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917710-1005-29-C/results/911554238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-05 21:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.76,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917710-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"14:05:00","MST",NA,NA,NA,"Bottom","0.76","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554243",NA,"as N","Nitrogen","Dissolved","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917710-1005-29-C/results/911554243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:51","STORET",7,NA,2020-10-05 21:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.76,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917715-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554276",NA,"as N","Nitrogen","Total","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917715-1005-2-C/results/911554276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-05 20:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917715-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554281",NA,"as N","Nitrogen","Dissolved","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917715-1005-2-C/results/911554281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-05 20:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917715-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"13:50:00","MST",NA,NA,NA,"Bottom","0.81","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554294",NA,"as N","Nitrogen","Total","0.574","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917715-1005-29-C/results/911554294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-05 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.574,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.81,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917715-1005-29-C","Sample-Routine","Water",NA,2020-10-05,"13:50:00","MST",NA,NA,NA,"Bottom","0.81","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554299",NA,"as N","Nitrogen","Dissolved","0.583","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917715-1005-29-C/results/911554299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-05 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.583,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.81,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917770-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554332",NA,"as N","Nitrogen","Total","0.574","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917770-1005-2-C/results/911554332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-05 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.574,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4917770-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-05,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554337",NA,"as N","Nitrogen","Dissolved","0.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4917770-1005-2-C/results/911554337/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-05 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4994790-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554351",NA,"as N","Nitrogen","Total","0.647","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994790-1006-4-C/results/911554351/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-06 23:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.647,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4994790-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554356",NA,"as N","Nitrogen","Dissolved","0.739","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994790-1006-4-C/results/911554356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-06 23:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.739,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4994792-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"16:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554370",NA,"as N","Nitrogen","Total","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994792-1006-4-C/results/911554370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-06 23:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4994792-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"16:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554375",NA,"as N","Nitrogen","Dissolved","0.477","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994792-1006-4-C/results/911554375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-06 23:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.477,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4994950-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554389",NA,"as N","Nitrogen","Total","2.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994950-1006-4-C/results/911554389/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:52","STORET",7,NA,2020-10-06 22:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4994950-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554394",NA,"as N","Nitrogen","Dissolved","2.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4994950-1006-4-C/results/911554394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-06 22:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995038-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554409",NA,"as N","Nitrogen","Total","7.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995038-1006-4-C/results/911554409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-06 22:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995038-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554414",NA,"as N","Nitrogen","Dissolved","6.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995038-1006-4-C/results/911554414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-06 22:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995120-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554428",NA,"as N","Nitrogen","Total","2.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995120-1006-4-C/results/911554428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-06 22:10:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995120-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554433",NA,"as N","Nitrogen","Dissolved","2.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995120-1006-4-C/results/911554433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-06 22:10:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995465-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554468",NA,"as N","Nitrogen","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995465-1006-4-C/results/911554468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-06 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995465-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554473",NA,"as N","Nitrogen","Dissolved","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995465-1006-4-C/results/911554473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-06 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995578-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554487",NA,"as N","Nitrogen","Total","0.848","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995578-1006-4-C/results/911554487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-06 20:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.848,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995578-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554492",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995578-1006-4-C/results/911554492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-06 20:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996040-1007-4-C","Sample-Routine","Water",NA,2020-10-07,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554508",NA,"as N","Nitrogen","Total","7.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996040-1007-4-C/results/911554508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-07 20:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996040-1007-4-C","Sample-Routine","Water",NA,2020-10-07,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554513",NA,"as N","Nitrogen","Dissolved","7.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996040-1007-4-C/results/911554513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:53","STORET",7,NA,2020-10-07 20:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996044-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554527",NA,"as N","Nitrogen","Total","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996044-1006-4-C/results/911554527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 20:30:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996044-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554532",NA,"as N","Nitrogen","Dissolved","1.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996044-1006-4-C/results/911554532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 20:30:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.95,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996100-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554546",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996100-1006-4-C/results/911554546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 20:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996100-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554551",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996100-1006-4-C/results/911554551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 20:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996275-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554565",NA,"as N","Nitrogen","Total","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996275-1006-4-C/results/911554565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996275-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554570",NA,"as N","Nitrogen","Dissolved","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996275-1006-4-C/results/911554570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996540-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554585",NA,"as N","Nitrogen","Total","13.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996540-1006-4-C/results/911554585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 21:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996540-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554590",NA,"as N","Nitrogen","Dissolved","13.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996540-1006-4-C/results/911554590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 21:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996566-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554605",NA,"as N","Nitrogen","Total","7.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996566-1006-4-C/results/911554605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 21:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996566-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554610",NA,"as N","Nitrogen","Dissolved","7.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996566-1006-4-C/results/911554610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 21:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996680-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554624",NA,"as N","Nitrogen","Total","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996680-1006-4-C/results/911554624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 21:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4996680-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554629",NA,"as N","Nitrogen","Dissolved","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4996680-1006-4-C/results/911554629/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:54","STORET",7,NA,2020-10-06 21:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-5919910-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554643",NA,"as N","Nitrogen","Total","3.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-5919910-1006-4-C/results/911554643/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:55","STORET",7,NA,2020-10-06 19:45:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-5919910-1006-4-C","Sample-Routine","Water",NA,2020-10-06,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554648",NA,"as N","Nitrogen","Dissolved","3.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-5919910-1006-4-C/results/911554648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:55","STORET",7,NA,2020-10-06 19:45:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917390-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Bottom","2.9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554661",NA,"as N","Nitrogen","Total","0.808","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917390-1117-29-C/results/911554661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:55","STORET",7,NA,2020-11-17 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.808,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917390-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Bottom","2.9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554666",NA,"as N","Nitrogen","Dissolved","0.826","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917390-1117-29-C/results/911554666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:55","STORET",7,NA,2020-11-17 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.826,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4910009-1116-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-16,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554699","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1116-4-C/results/911554699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:55","STORET",7,NA,2020-11-16 23:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4910009-1116-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-16,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554704","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1116-4-C/results/911554704/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:55","STORET",7,NA,2020-11-16 23:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4910009-1117-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554718","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1117-4-C/results/911554718/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:55","STORET",7,NA,2020-11-17 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4910009-1117-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554723","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1117-4-C/results/911554723/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:55","STORET",7,NA,2020-11-17 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4910009-1118-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-18,"20:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554756","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1118-4-C/results/911554756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-19 03:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4910009-1118-4-C","Quality Control Sample-Field Blank","Water",NA,2020-11-18,"20:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554761","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4910009-1118-4-C/results/911554761/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-19 03:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917310-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554775",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917310-1117-2-C/results/911554775/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-17 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917310-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554780",NA,"as N","Nitrogen","Dissolved","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917310-1117-2-C/results/911554780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-17 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917310-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"09:55:00","MST",NA,NA,NA,"Bottom","1.77","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554793",NA,"as N","Nitrogen","Total","0.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917310-1117-29-C/results/911554793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-17 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.77,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917310-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"09:55:00","MST",NA,NA,NA,"Bottom","1.77","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554798",NA,"as N","Nitrogen","Dissolved","0.866","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917310-1117-29-C/results/911554798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-17 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.866,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.77,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917320-1117-2-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554831",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917320-1117-2-C/results/911554831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-17 17:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917320-1117-2-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554836",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917320-1117-2-C/results/911554836/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-17 17:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917320-1117-29-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"10:15:00","MST",NA,NA,NA,"Bottom","1.7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554849",NA,"as N","Nitrogen","Total","0.813","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917320-1117-29-C/results/911554849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-17 17:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.813,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917320-1117-29-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-17,"10:15:00","MST",NA,NA,NA,"Bottom","1.7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554854",NA,"as N","Nitrogen","Dissolved","0.915","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917320-1117-29-C/results/911554854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:56","STORET",7,NA,2020-11-17 17:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.915,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917365-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554887",NA,"as N","Nitrogen","Total","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917365-1117-2-C/results/911554887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:57","STORET",7,NA,2020-11-17 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917365-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554892",NA,"as N","Nitrogen","Dissolved","0.927","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917365-1117-2-C/results/911554892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:57","STORET",7,NA,2020-11-17 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.927,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917365-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"10:30:00","MST",NA,NA,NA,"Bottom","2.45","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554905",NA,"as N","Nitrogen","Total","0.796","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917365-1117-29-C/results/911554905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:57","STORET",7,NA,2020-11-17 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.796,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.45,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917365-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"10:30:00","MST",NA,NA,NA,"Bottom","2.45","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554910",NA,"as N","Nitrogen","Dissolved","0.829","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917365-1117-29-C/results/911554910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:57","STORET",7,NA,2020-11-17 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.829,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.45,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917370-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554943",NA,"as N","Nitrogen","Total","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917370-1117-2-C/results/911554943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:57","STORET",7,NA,2020-11-17 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917370-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554948",NA,"as N","Nitrogen","Dissolved","0.898","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917370-1117-2-C/results/911554948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:57","STORET",7,NA,2020-11-17 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.898,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917370-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"12:50:00","MST",NA,NA,NA,"Bottom","2.23","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554961",NA,"as N","Nitrogen","Total","0.816","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917370-1117-29-C/results/911554961/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:57","STORET",7,NA,2020-11-17 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.816,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917370-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"12:50:00","MST",NA,NA,NA,"Bottom","2.23","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554966",NA,"as N","Nitrogen","Dissolved","0.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917370-1117-29-C/results/911554966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:57","STORET",7,NA,2020-11-17 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917390-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911554999",NA,"as N","Nitrogen","Total","0.806","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917390-1117-2-C/results/911554999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.806,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917390-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555004",NA,"as N","Nitrogen","Dissolved","0.898","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917390-1117-2-C/results/911555004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.898,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917450-1116-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-16,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555018",NA,"as N","Nitrogen","Total","0.978","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917450-1116-2-C/results/911555018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-16 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.978,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917450-1116-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-16,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555023",NA,"as N","Nitrogen","Dissolved","0.634","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917450-1116-2-C/results/911555023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-16 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.634,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917500-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555037",NA,"as N","Nitrogen","Total","0.835","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917500-1117-2-C/results/911555037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.835,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917500-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555042",NA,"as N","Nitrogen","Dissolved","0.908","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917500-1117-2-C/results/911555042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.908,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917500-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"12:10:00","MST",NA,NA,NA,"Bottom","2.4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555055",NA,"as N","Nitrogen","Total","0.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917500-1117-29-C/results/911555055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917500-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"12:10:00","MST",NA,NA,NA,"Bottom","2.4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555060",NA,"as N","Nitrogen","Dissolved","0.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917500-1117-29-C/results/911555060/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917520-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555093",NA,"as N","Nitrogen","Total","0.828","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917520-1117-2-C/results/911555093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.828,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917520-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555098",NA,"as N","Nitrogen","Dissolved","0.913","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917520-1117-2-C/results/911555098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.913,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917520-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"13:20:00","MST",NA,NA,NA,"Bottom","1.74","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555111",NA,"as N","Nitrogen","Total","0.848","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917520-1117-29-C/results/911555111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.848,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.74,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917520-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"13:20:00","MST",NA,NA,NA,"Bottom","1.74","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555116",NA,"as N","Nitrogen","Dissolved","0.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917520-1117-29-C/results/911555116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:58","STORET",7,NA,2020-11-17 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.74,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917600-1116-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555149",NA,"as N","Nitrogen","Total","0.777","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917600-1116-2-C/results/911555149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-16 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.777,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917600-1116-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555154",NA,"as N","Nitrogen","Dissolved","0.752","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917600-1116-2-C/results/911555154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-16 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.752,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917710-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555168",NA,"as N","Nitrogen","Total","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917710-1117-2-C/results/911555168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-17 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917710-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555173",NA,"as N","Nitrogen","Dissolved","0.889","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917710-1117-2-C/results/911555173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-17 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.889,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917710-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"11:45:00","MST",NA,NA,NA,"Bottom","2.57","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555186",NA,"as N","Nitrogen","Total","0.836","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917710-1117-29-C/results/911555186/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-17 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.836,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.57,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917710-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"11:45:00","MST",NA,NA,NA,"Bottom","2.57","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555191",NA,"as N","Nitrogen","Dissolved","0.839","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917710-1117-29-C/results/911555191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-17 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.839,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.57,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917715-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555224",NA,"as N","Nitrogen","Total","0.823","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917715-1117-2-C/results/911555224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-17 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.823,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917715-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555229",NA,"as N","Nitrogen","Dissolved","0.936","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917715-1117-2-C/results/911555229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-17 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.936,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917715-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Bottom","2.82","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555242",NA,"as N","Nitrogen","Total","0.852","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917715-1117-29-C/results/911555242/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-17 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.852,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.82,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917715-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"11:30:00","MST",NA,NA,NA,"Bottom","2.82","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555247",NA,"as N","Nitrogen","Dissolved","0.881","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917715-1117-29-C/results/911555247/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:36:59","STORET",7,NA,2020-11-17 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.881,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.82,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917770-1116-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-16,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555280",NA,"as N","Nitrogen","Total","0.771","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917770-1116-2-C/results/911555280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-16 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.771,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4917770-1116-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-16,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555285",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4917770-1116-2-C/results/911555285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-16 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4994950-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555299",NA,"as N","Nitrogen","Total","3.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4994950-1118-4-C/results/911555299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-19 00:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4994950-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555304",NA,"as N","Nitrogen","Dissolved","3.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4994950-1118-4-C/results/911555304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-19 00:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995038-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555320",NA,"as N","Nitrogen","Total","9.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995038-1118-4-C/results/911555320/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-18 23:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995038-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555325",NA,"as N","Nitrogen","Dissolved","8.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995038-1118-4-C/results/911555325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-18 23:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995120-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555339",NA,"as N","Nitrogen","Total","3.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995120-1118-4-C/results/911555339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-18 22:20:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995120-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555344",NA,"as N","Nitrogen","Dissolved","3.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995120-1118-4-C/results/911555344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-18 22:20:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995230-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995230","Powell Slough WMA South Outfall to Utah Lake",NA,NA,NA,NA,"40.2635300000","-111.7404600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555360",NA,"as N","Nitrogen","Total","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995230-1116-4-C/results/911555360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-16 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2635300000","-111.7404600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",40.26353,-111.74046,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995230-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995230","Powell Slough WMA South Outfall to Utah Lake",NA,NA,NA,NA,"40.2635300000","-111.7404600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555365",NA,"as N","Nitrogen","Dissolved","0.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995230-1116-4-C/results/911555365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-16 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2635300000","-111.7404600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.26353,-111.74046,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995250-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555381",NA,"as N","Nitrogen","Total","9.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995250-1116-4-C/results/911555381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-16 21:10:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995250-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555386",NA,"as N","Nitrogen","Dissolved","9.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995250-1116-4-C/results/911555386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-16 21:10:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.95,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995310-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555400",NA,"as N","Nitrogen","Total","0.842","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995310-1118-4-C/results/911555400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-18 16:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.842,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995310-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555405",NA,"as N","Nitrogen","Dissolved","0.735","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995310-1118-4-C/results/911555405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:00","STORET",7,NA,2020-11-18 16:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.735,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995465-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555421",NA,"as N","Nitrogen","Total","5.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995465-1118-4-C/results/911555421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-18 17:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995465-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555426",NA,"as N","Nitrogen","Dissolved","4.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995465-1118-4-C/results/911555426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-18 17:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995578-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555440",NA,"as N","Nitrogen","Total","0.584","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995578-1118-4-C/results/911555440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-18 19:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.584,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4995578-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555445",NA,"as N","Nitrogen","Dissolved","0.724","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4995578-1118-4-C/results/911555445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-18 19:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.724,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996040-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555461",NA,"as N","Nitrogen","Total","7.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-11-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996040-1116-4-C/results/911555461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-16 18:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996040-1116-4-C","Sample-Routine","Water",NA,2020-11-16,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555466",NA,"as N","Nitrogen","Dissolved","8.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996040-1116-4-C/results/911555466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-16 18:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996044-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555480",NA,"as N","Nitrogen","Total","2.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996044-1118-4-C/results/911555480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-18 19:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996044-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555485",NA,"as N","Nitrogen","Dissolved","2.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996044-1118-4-C/results/911555485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-18 19:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996100-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555499",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996100-1118-4-C/results/911555499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-18 19:55:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996100-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555504",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996100-1118-4-C/results/911555504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-18 19:55:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996275-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555518",NA,"as N","Nitrogen","Total","8.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996275-1118-4-C/results/911555518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:01","STORET",7,NA,2020-11-18 20:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996275-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555523",NA,"as N","Nitrogen","Dissolved","8.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996275-1118-4-C/results/911555523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-11-18 20:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996540-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555539",NA,"as N","Nitrogen","Total","11.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996540-1118-4-C/results/911555539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-11-18 21:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996540-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555544",NA,"as N","Nitrogen","Dissolved","11.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996540-1118-4-C/results/911555544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-11-18 21:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996566-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555560",NA,"as N","Nitrogen","Total","11.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996566-1118-4-C/results/911555560/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-11-18 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996566-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555565",NA,"as N","Nitrogen","Dissolved","11.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996566-1118-4-C/results/911555565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-11-18 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996680-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555579",NA,"as N","Nitrogen","Total","0.511","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996680-1118-4-C/results/911555579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-11-18 21:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.511,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-4996680-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555584",NA,"as N","Nitrogen","Dissolved","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-4996680-1118-4-C/results/911555584/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-11-18 21:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-5919910-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555598",NA,"as N","Nitrogen","Total","4.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-5919910-1118-4-C/results/911555598/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-11-18 18:35:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201116-5919910-1118-4-C","Sample-Routine","Water",NA,2020-11-18,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555603",NA,"as N","Nitrogen","Dissolved","4.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201116-5919910-1118-4-C/results/911555603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-11-18 18:35:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4910009-1208-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-08,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555617","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4910009-1208-4-C/results/911555617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-12-09 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4910009-1208-4-C","Quality Control Sample-Field Blank","Water",NA,2020-12-08,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555622","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4910009-1208-4-C/results/911555622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-12-09 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4994950-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555636",NA,"as N","Nitrogen","Total","3.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4994950-1208-4-C/results/911555636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-12-08 21:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4994950-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555641",NA,"as N","Nitrogen","Dissolved","3.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4994950-1208-4-C/results/911555641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:02","STORET",7,NA,2020-12-08 21:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995038-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555657",NA,"as N","Nitrogen","Total","9.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995038-1208-4-C/results/911555657/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 21:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995038-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555662",NA,"as N","Nitrogen","Dissolved","9.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995038-1208-4-C/results/911555662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 21:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995041-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555678",NA,"as N","Nitrogen","Total","2.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995041-1208-4-C/results/911555678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 21:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995041-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555683",NA,"as N","Nitrogen","Dissolved","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995041-1208-4-C/results/911555683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 21:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995120-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555697",NA,"as N","Nitrogen","Total","3.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995120-1208-4-C/results/911555697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 20:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995120-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555702",NA,"as N","Nitrogen","Dissolved","3.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995120-1208-4-C/results/911555702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 20:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995310-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555716",NA,"as N","Nitrogen","Total","0.771","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995310-1208-4-C/results/911555716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 16:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.771,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995310-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555721",NA,"as N","Nitrogen","Dissolved","0.702","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995310-1208-4-C/results/911555721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 16:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.702,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995465-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555737",NA,"as N","Nitrogen","Total","4.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995465-1208-4-C/results/911555737/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 17:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995465-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555742",NA,"as N","Nitrogen","Dissolved","4.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995465-1208-4-C/results/911555742/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 17:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995578-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555756",NA,"as N","Nitrogen","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995578-1208-4-C/results/911555756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 17:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4995578-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555761",NA,"as N","Nitrogen","Dissolved","0.527","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4995578-1208-4-C/results/911555761/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 17:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.527,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996044-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555775",NA,"as N","Nitrogen","Total","2.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996044-1208-4-C/results/911555775/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 19:30:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996044-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555780",NA,"as N","Nitrogen","Dissolved","2.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996044-1208-4-C/results/911555780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:03","STORET",7,NA,2020-12-08 19:30:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996100-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555794",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996100-1208-4-C/results/911555794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 19:35:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996100-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555799",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996100-1208-4-C/results/911555799/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 19:35:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996275-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555813",NA,"as N","Nitrogen","Total","7.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996275-1208-4-C/results/911555813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996275-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555818",NA,"as N","Nitrogen","Dissolved","7.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996275-1208-4-C/results/911555818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.93,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996540-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555834",NA,"as N","Nitrogen","Total","12.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996540-1208-4-C/results/911555834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 20:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996540-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555839",NA,"as N","Nitrogen","Dissolved","13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996540-1208-4-C/results/911555839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 20:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996566-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555855",NA,"as N","Nitrogen","Total","13.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996566-1208-4-C/results/911555855/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996566-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555860",NA,"as N","Nitrogen","Dissolved","13.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996566-1208-4-C/results/911555860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996680-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555874",NA,"as N","Nitrogen","Total","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996680-1208-4-C/results/911555874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-4996680-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555879",NA,"as N","Nitrogen","Dissolved","0.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-4996680-1208-4-C/results/911555879/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-5919910-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555893",NA,"as N","Nitrogen","Total","5.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-5919910-1208-4-C/results/911555893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 17:30:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201207-5919910-1208-4-C","Sample-Routine","Water",NA,2020-12-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555898",NA,"as N","Nitrogen","Dissolved","5.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-12-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201207-5919910-1208-4-C/results/911555898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:04","STORET",7,NA,2020-12-08 17:30:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-19,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555912","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C/results/911555912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 23:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C","Quality Control Sample-Field Blank","Water",NA,2021-01-19,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555917",NA,"as N","Nitrogen","Dissolved","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4910009-0119-4-C/results/911555917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 23:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555931",NA,"as N","Nitrogen","Total","3.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C/results/911555931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555936",NA,"as N","Nitrogen","Dissolved","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4994950-0119-4-C/results/911555936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555952",NA,"as N","Nitrogen","Total","9.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C/results/911555952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 21:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555957",NA,"as N","Nitrogen","Dissolved","9.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995038-0119-4-C/results/911555957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 21:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555973",NA,"as N","Nitrogen","Total","3.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C/results/911555973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555978",NA,"as N","Nitrogen","Dissolved","3.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995041-0119-4-C/results/911555978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555992",NA,"as N","Nitrogen","Total","3.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C/results/911555992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 20:40:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911555997",NA,"as N","Nitrogen","Dissolved","3.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995120-0119-4-C/results/911555997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:05","STORET",7,NA,2021-01-19 20:40:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556012",NA,"as N","Nitrogen","Total","6.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C/results/911556012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 18:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556017",NA,"as N","Nitrogen","Dissolved","5.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995465-0119-4-C/results/911556017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 18:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556030",NA,"as N","Nitrogen","Total","0.577","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C/results/911556030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.577,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556035",NA,"as N","Nitrogen","Dissolved","0.738","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4995578-0119-4-C/results/911556035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.738,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556048",NA,"as N","Nitrogen","Total","2.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C/results/911556048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 19:20:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556053",NA,"as N","Nitrogen","Dissolved","2.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996044-0119-4-C/results/911556053/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 19:20:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556066",NA,"as N","Nitrogen","Total","0.949","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C/results/911556066/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 19:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.949,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556071",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996100-0119-4-C/results/911556071/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 19:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556084",NA,"as N","Nitrogen","Total","10.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C/results/911556084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556089",NA,"as N","Nitrogen","Dissolved","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996275-0119-4-C/results/911556089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556104",NA,"as N","Nitrogen","Total","9.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C/results/911556104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 20:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556109",NA,"as N","Nitrogen","Dissolved","9.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996540-0119-4-C/results/911556109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:06","STORET",7,NA,2021-01-19 20:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556124",NA,"as N","Nitrogen","Total","9.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C/results/911556124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-01-19 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.95,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556129",NA,"as N","Nitrogen","Dissolved","10.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996566-0119-4-C/results/911556129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-01-19 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556142",NA,"as N","Nitrogen","Total","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C/results/911556142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-01-19 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556147",NA,"as N","Nitrogen","Dissolved","0.672","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-4996680-0119-4-C/results/911556147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-01-19 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.672,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556160",NA,"as N","Nitrogen","Total","6.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C/results/911556160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-01-19 19:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C","Sample-Routine","Water",NA,2021-01-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556165",NA,"as N","Nitrogen","Dissolved","5.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210119-5919910-0119-4-C/results/911556165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-01-19 19:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-15,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556179","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C/results/911556179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-03-15 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-15,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556184","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0315-4-C/results/911556184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-03-15 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-16,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556218","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C/results/911556218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-03-17 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-16,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556223","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0316-4-C/results/911556223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:07","STORET",7,NA,2021-03-17 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556257","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C/results/911556257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:08","STORET",7,NA,2021-03-17 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556262",NA,"as N","Nitrogen","Dissolved","0.13","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0317-4-C/results/911556262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:08","STORET",7,NA,2021-03-17 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.13,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-18,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556276","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C/results/911556276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:08","STORET",7,NA,2021-03-18 23:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C","Quality Control Sample-Field Blank","Water",NA,2021-03-18,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556281","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4910009-0318-4-C/results/911556281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:08","STORET",7,NA,2021-03-18 23:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556287",NA,"as N","Nitrogen","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C/results/911556287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:08","STORET",7,NA,2021-03-15 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556292",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917305-0315-2-C/results/911556292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:08","STORET",7,NA,2021-03-15 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556343",NA,"as N","Nitrogen","Total","0.685","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C/results/911556343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:08","STORET",7,NA,2021-03-15 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.685,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556348",NA,"as N","Nitrogen","Dissolved","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917310-0315-2-C/results/911556348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:08","STORET",7,NA,2021-03-15 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556399",NA,"as N","Nitrogen","Total","0.686","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C/results/911556399/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:09","STORET",7,NA,2021-03-15 19:00:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.686,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556404",NA,"as N","Nitrogen","Dissolved","0.596","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917320-0315-2-C/results/911556404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:09","STORET",7,NA,2021-03-15 19:00:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.596,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556455",NA,"as N","Nitrogen","Total","0.917","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C/results/911556455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:09","STORET",7,NA,2021-03-15 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.917,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556460",NA,"as N","Nitrogen","Dissolved","0.579","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917335-0315-2-C/results/911556460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:09","STORET",7,NA,2021-03-15 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.579,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556514",NA,"as N","Nitrogen","Total","0.735","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C/results/911556514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:10","STORET",7,NA,2021-03-15 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.735,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556519",NA,"as N","Nitrogen","Dissolved","0.713","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917365-0315-2-C/results/911556519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:10","STORET",7,NA,2021-03-15 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.713,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556570",NA,"as N","Nitrogen","Total","0.648","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C/results/911556570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:10","STORET",7,NA,2021-03-16 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.648,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556575",NA,"as N","Nitrogen","Dissolved","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917370-0316-2-C/results/911556575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:10","STORET",7,NA,2021-03-16 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556626",NA,"as N","Nitrogen","Total","0.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C/results/911556626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:11","STORET",7,NA,2021-03-15 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556631",NA,"as N","Nitrogen","Dissolved","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917390-0315-2-C/results/911556631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:11","STORET",7,NA,2021-03-15 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556682",NA,"as N","Nitrogen","Total","0.862","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C/results/911556682/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:11","STORET",7,NA,2021-03-16 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.862,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556687",NA,"as N","Nitrogen","Dissolved","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917414-0316-2-C/results/911556687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:11","STORET",7,NA,2021-03-16 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556738",NA,"as N","Nitrogen","Total","0.849","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C/results/911556738/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:11","STORET",7,NA,2021-03-15 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.849,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556743",NA,"as N","Nitrogen","Dissolved","0.708","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917433-0315-2-C/results/911556743/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:11","STORET",7,NA,2021-03-15 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.708,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556797",NA,"as N","Nitrogen","Total","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C/results/911556797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:12","STORET",7,NA,2021-03-15 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556802",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917450-0315-2-C/results/911556802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:12","STORET",7,NA,2021-03-15 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556853",NA,"as N","Nitrogen","Total","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C/results/911556853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:12","STORET",7,NA,2021-03-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556858",NA,"as N","Nitrogen","Dissolved","0.662","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917500-0316-2-C/results/911556858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:12","STORET",7,NA,2021-03-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.662,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556909",NA,"as N","Nitrogen","Total","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C/results/911556909/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:13","STORET",7,NA,2021-03-16 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.617,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556914",NA,"as N","Nitrogen","Dissolved","0.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917520-0316-2-C/results/911556914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:13","STORET",7,NA,2021-03-16 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556965",NA,"as N","Nitrogen","Total","0.679","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C/results/911556965/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:13","STORET",7,NA,2021-03-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.679,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911556970",NA,"as N","Nitrogen","Dissolved","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917600-0316-2-C/results/911556970/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:13","STORET",7,NA,2021-03-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557021",NA,"as N","Nitrogen","Total","0.692","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C/results/911557021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:14","STORET",7,NA,2021-03-16 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.692,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557026",NA,"as N","Nitrogen","Dissolved","0.765","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917708-0316-2-C/results/911557026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:14","STORET",7,NA,2021-03-16 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.765,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557079",NA,"as N","Nitrogen","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C/results/911557079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:14","STORET",7,NA,2021-03-16 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557084",NA,"as N","Nitrogen","Dissolved","0.594","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917710-0316-2-C/results/911557084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:14","STORET",7,NA,2021-03-16 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.594,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557135",NA,"as N","Nitrogen","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C/results/911557135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:15","STORET",7,NA,2021-03-16 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557140",NA,"as N","Nitrogen","Dissolved","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917715-0316-2-C/results/911557140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:15","STORET",7,NA,2021-03-16 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557191",NA,"as N","Nitrogen","Total","0.672","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C/results/911557191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:15","STORET",7,NA,2021-03-16 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.672,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-03-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557196",NA,"as N","Nitrogen","Dissolved","0.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917770-0316-2-C/results/911557196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:15","STORET",7,NA,2021-03-16 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557247",NA,"as N","Nitrogen","Total","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C/results/911557247/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:15","STORET",7,NA,2021-03-18 22:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557252",NA,"as N","Nitrogen","Dissolved","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4994950-0318-4-C/results/911557252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:15","STORET",7,NA,2021-03-18 22:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557268",NA,"as N","Nitrogen","Total","8.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C/results/911557268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:16","STORET",7,NA,2021-03-18 22:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557273",NA,"as N","Nitrogen","Dissolved","8.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995038-0318-4-C/results/911557273/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:16","STORET",7,NA,2021-03-18 22:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.76,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557289",NA,"as N","Nitrogen","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C/results/911557289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:16","STORET",7,NA,2021-03-18 22:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557294",NA,"as N","Nitrogen","Dissolved","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995041-0318-4-C/results/911557294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:16","STORET",7,NA,2021-03-18 22:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557308",NA,"as N","Nitrogen","Total","3.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C/results/911557308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:16","STORET",7,NA,2021-03-18 22:00:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557313",NA,"as N","Nitrogen","Dissolved","2.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995120-0318-4-C/results/911557313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:16","STORET",7,NA,2021-03-18 22:00:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.97,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C","Sample-Routine","Water",NA,2021-03-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995230","Powell Slough WMA South Outfall to Utah Lake",NA,NA,NA,NA,"40.2635300000","-111.7404600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557329",NA,"as N","Nitrogen","Total","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C/results/911557329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:16","STORET",7,NA,2021-03-17 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2635300000","-111.7404600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",40.26353,-111.74046,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C","Sample-Routine","Water",NA,2021-03-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995230","Powell Slough WMA South Outfall to Utah Lake",NA,NA,NA,NA,"40.2635300000","-111.7404600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557334",NA,"as N","Nitrogen","Dissolved","0.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995230-0317-4-C/results/911557334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:16","STORET",7,NA,2021-03-17 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2635300000","-111.7404600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.26353,-111.74046,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557369",NA,"as N","Nitrogen","Total","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C/results/911557369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:16","STORET",7,NA,2021-03-18 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557374",NA,"as N","Nitrogen","Dissolved","0.853","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995310-0318-4-C/results/911557374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-18 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.853,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557390",NA,"as N","Nitrogen","Total","3.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C/results/911557390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-18 18:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557395",NA,"as N","Nitrogen","Dissolved","3.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995465-0318-4-C/results/911557395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-18 18:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557409",NA,"as N","Nitrogen","Total","0.498","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C/results/911557409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-18 19:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.498,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557414",NA,"as N","Nitrogen","Dissolved","0.551","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995578-0318-4-C/results/911557414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-18 19:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.551,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C","Sample-Routine","Water",NA,2021-03-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557430",NA,"as N","Nitrogen","Total","6.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C/results/911557430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-17 17:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C","Sample-Routine","Water",NA,2021-03-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557435",NA,"as N","Nitrogen","Dissolved","6.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996040-0317-4-C/results/911557435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-17 17:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.94,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557449",NA,"as N","Nitrogen","Total","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C/results/911557449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-18 19:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557454",NA,"as N","Nitrogen","Dissolved","1.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996044-0318-4-C/results/911557454/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-18 19:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557468",NA,"as N","Nitrogen","Total","0.753","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C/results/911557468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-18 20:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.753,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557473",NA,"as N","Nitrogen","Dissolved","0.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996100-0318-4-C/results/911557473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:17","STORET",7,NA,2021-03-18 20:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557487",NA,"as N","Nitrogen","Total","4.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C/results/911557487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 20:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557492",NA,"as N","Nitrogen","Dissolved","4.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996275-0318-4-C/results/911557492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 20:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.93,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557508",NA,"as N","Nitrogen","Total","9.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C/results/911557508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557513",NA,"as N","Nitrogen","Dissolved","9.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996540-0318-4-C/results/911557513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557529",NA,"as N","Nitrogen","Total","12.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C/results/911557529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 20:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557534",NA,"as N","Nitrogen","Dissolved","12.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996566-0318-4-C/results/911557534/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 20:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557548",NA,"as N","Nitrogen","Total","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C/results/911557548/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557553",NA,"as N","Nitrogen","Dissolved","0.537","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4996680-0318-4-C/results/911557553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.537,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557567",NA,"as N","Nitrogen","Total","3.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C/results/911557567/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 18:50:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C","Sample-Routine","Water",NA,2021-03-18,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557572",NA,"as N","Nitrogen","Dissolved","3.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-5919910-0318-4-C/results/911557572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-03-18 18:50:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-16,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557586","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C/results/911557586/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-02-17 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C","Quality Control Sample-Field Blank","Water",NA,2021-02-16,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557591",NA,"as N","Nitrogen","Dissolved","0.171","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Estimated: The analyte was positively identified and the associated numerical value is the approximate concentration of the analyte in the sample.",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4910009-0216-4-C/results/911557591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:18","STORET",7,NA,2021-02-17 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.171,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557605",NA,"as N","Nitrogen","Total","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C/results/911557605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557610",NA,"as N","Nitrogen","Dissolved","2.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4994950-0216-4-C/results/911557610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557626",NA,"as N","Nitrogen","Total","9.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C/results/911557626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 21:00:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557631",NA,"as N","Nitrogen","Dissolved","9.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995038-0216-4-C/results/911557631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 21:00:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557647",NA,"as N","Nitrogen","Total","3.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C/results/911557647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557652",NA,"as N","Nitrogen","Dissolved","3.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995041-0216-4-C/results/911557652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557666",NA,"as N","Nitrogen","Total","2.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C/results/911557666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 20:30:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.94,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557671",NA,"as N","Nitrogen","Dissolved","3.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995120-0216-4-C/results/911557671/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 20:30:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557685",NA,"as N","Nitrogen","Total","0.379","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C/results/911557685/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 16:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.379,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557690",NA,"as N","Nitrogen","Dissolved","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995310-0216-4-C/results/911557690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:19","STORET",7,NA,2021-02-16 16:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557706",NA,"as N","Nitrogen","Total","5.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C/results/911557706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 17:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557711",NA,"as N","Nitrogen","Dissolved","4.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995465-0216-4-C/results/911557711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 17:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557725",NA,"as N","Nitrogen","Total","0.524","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C/results/911557725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 18:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.524,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557730",NA,"as N","Nitrogen","Dissolved","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4995578-0216-4-C/results/911557730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 18:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557744",NA,"as N","Nitrogen","Total","2.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C/results/911557744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 18:30:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557749",NA,"as N","Nitrogen","Dissolved","2.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996044-0216-4-C/results/911557749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 18:30:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557763",NA,"as N","Nitrogen","Total","0.845","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C/results/911557763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 19:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.845,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557768",NA,"as N","Nitrogen","Dissolved","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996100-0216-4-C/results/911557768/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 19:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557782",NA,"as N","Nitrogen","Total","8.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C/results/911557782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557787",NA,"as N","Nitrogen","Dissolved","7.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996275-0216-4-C/results/911557787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:20","STORET",7,NA,2021-02-16 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557803",NA,"as N","Nitrogen","Total","9.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C/results/911557803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:21","STORET",7,NA,2021-02-16 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557808",NA,"as N","Nitrogen","Dissolved","9.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996540-0216-4-C/results/911557808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:21","STORET",7,NA,2021-02-16 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557824",NA,"as N","Nitrogen","Total","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C/results/911557824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:21","STORET",7,NA,2021-02-16 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557829",NA,"as N","Nitrogen","Dissolved","10.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996566-0216-4-C/results/911557829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:21","STORET",7,NA,2021-02-16 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557843",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C/results/911557843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:21","STORET",7,NA,2021-02-16 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557848",NA,"as N","Nitrogen","Dissolved","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-02-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-4996680-0216-4-C/results/911557848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:21","STORET",7,NA,2021-02-16 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557862",NA,"as N","Nitrogen","Total","7.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C/results/911557862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:21","STORET",7,NA,2021-02-16 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C","Sample-Routine","Water",NA,2021-02-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911557867",NA,"as N","Nitrogen","Dissolved","7.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210216-5919910-0216-4-C/results/911557867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-01T12:37:21","STORET",7,NA,2021-02-16 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.73,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C","Sample-Routine","Water",NA,2021-03-26,"12:00:00","MST",NA,NA,NA,"Surface","0.97","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952917","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","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,"37.8050000000","-110.4710000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911738892",NA,"as N","Nitrogen","Total","0.533","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C/results/911738892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-08T10:47:14","STORET",7,NA,2021-03-26 19:00:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.533,"MG/L","Numeric","Not Reviewed","Uncensored",37.805,-110.471,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.97,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C","Sample-Routine","Water",NA,2021-03-26,"12:00:00","MST",NA,NA,NA,"Surface","0.97","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952917","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon","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,"37.8050000000","-110.4710000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911738897",NA,"as N","Nitrogen","Dissolved","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210323-5952917-0326-2-C/results/911738897/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-08T10:47:14","STORET",7,NA,2021-03-26 19:00:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",37.805,-110.471,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.97,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201008-4936050-1008-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-08,"10:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742246","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-2-C/results/911742246/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:32","STORET",7,NA,2020-10-08 17:09:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201008-4936050-1008-23-C","Sample-Routine","Water",NA,2020-10-08,"10:10:00","MST",NA,NA,NA,"AboveThermoclin","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742264","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-23-C/results/911742264/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:33","STORET",7,NA,2020-10-08 17:10:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201008-4936050-1008-24-C","Sample-Routine","Water",NA,2020-10-08,"10:11:00","MST",NA,NA,NA,"Midwater","9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742282","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-24-C/results/911742282/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:33","STORET",7,NA,2020-10-08 17:11:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201008-4936050-1008-26-C","Sample-Routine","Water",NA,2020-10-08,"10:14:00","MST",NA,NA,NA,"Midwater","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742300","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-26-C/results/911742300/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:33","STORET",7,NA,2020-10-08 17:14:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201008-4936050-1008-27-C","Sample-Routine","Water",NA,2020-10-08,"10:15:00","MST",NA,NA,NA,"BelowThermoclin","21","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742318","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-27-C/results/911742318/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:34","STORET",7,NA,2020-10-08 17:15:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",21,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201008-4936050-1008-29-C","Sample-Routine","Water",NA,2020-10-08,"10:19:00","MST",NA,NA,NA,"Bottom","28.4","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742336","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201008-4936050-1008-29-C/results/911742336/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:34","STORET",7,NA,2020-10-08 17:19:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",28.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF201008-5937650-1008-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-08,"13:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742354","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201008-5937650-1008-2-C/results/911742354/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:34","STORET",7,NA,2020-10-08 20:34:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF201008-5937650-1008-25-C","Sample-Routine","Water",NA,2020-10-08,"13:38:00","MST",NA,NA,NA,"Midwater","9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742372","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201008-5937650-1008-25-C/results/911742372/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:34","STORET",7,NA,2020-10-08 20:38:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF201008-5937650-1008-29-C","Sample-Routine","Water",NA,2020-10-08,"13:46:00","MST",NA,NA,NA,"Bottom","19.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742390","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201008-5937650-1008-29-C/results/911742390/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:34","STORET",7,NA,2020-10-08 20:46:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR201015-4936420-1015-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-15,"10:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742408","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201015-4936420-1015-2-C/results/911742408/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:35","STORET",7,NA,2020-10-15 17:51:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR201015-4936420-1015-25-C","Sample-Routine","Water",NA,2020-10-15,"10:55:00","MST",NA,NA,NA,"Midwater","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742420","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201015-4936420-1015-25-C/results/911742420/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:35","STORET",7,NA,2020-10-15 17:55:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR201015-4936420-1015-29-C","Sample-Routine","Water",NA,2020-10-15,"11:08:00","MST",NA,NA,NA,"Bottom","20.2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742431","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201015-4936420-1015-29-C/results/911742431/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:35","STORET",7,NA,2020-10-15 18:08:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-27,"10:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742442","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-2-C/results/911742442/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:35","STORET",7,NA,2020-10-27 17:14:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-22-C","Sample-Routine","Water",NA,2020-10-27,"10:25:00","MST",NA,NA,NA,"Midwater","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742454","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-22-C/results/911742454/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:35","STORET",7,NA,2020-10-27 17:25:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-23-C","Sample-Routine","Water",NA,2020-10-27,"10:30:00","MST",NA,NA,NA,"AboveThermoclin","8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742466","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-23-C/results/911742466/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:35","STORET",7,NA,2020-10-27 17:30:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-24-C","Sample-Routine","Water",NA,2020-10-27,"10:32:00","MST",NA,NA,NA,"Midwater","14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742478","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-24-C/results/911742478/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:35","STORET",7,NA,2020-10-27 17:32:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-26-C","Sample-Routine","Water",NA,2020-10-27,"10:37:00","MST",NA,NA,NA,"Midwater","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742490","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-26-C/results/911742490/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:35","STORET",7,NA,2020-10-27 17:37:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-27-C","Sample-Routine","Water",NA,2020-10-27,"10:40:00","MST",NA,NA,NA,"BelowThermoclin","24","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742502","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-27-C/results/911742502/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:36","STORET",7,NA,2020-10-27 17:40:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",24,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-28-C","Sample-Routine","Water",NA,2020-10-27,"10:51:00","MST",NA,NA,NA,"Near Bottom","31","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742514","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-28-C/results/911742514/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:36","STORET",7,NA,2020-10-27 17:51:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",31,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-29-C","Sample-Routine","Water",NA,2020-10-27,"11:02:00","MST",NA,NA,NA,"Bottom","64","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742526","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914010-1027-29-C/results/911742526/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:36","STORET",7,NA,2020-10-27 18:02:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",64,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914040-1027-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-27,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742557","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914040-1027-2-C/results/911742557/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:36","STORET",7,NA,2020-10-27 18:35:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914040-1027-29-C","Sample-Routine","Water",NA,2020-10-27,"11:49:00","MST",NA,NA,NA,"Bottom","35.6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742569",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914040-1027-29-C/results/911742569/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:36","STORET",7,NA,2020-10-27 18:49:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",35.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914030-1027-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-10-27,"12:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742580","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914030-1027-2-C/results/911742580/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:37","STORET",7,NA,2020-10-27 19:04:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201027-5914030-1027-29-C","Sample-Routine","Water",NA,2020-10-27,"12:18:00","MST",NA,NA,NA,"Bottom","37.8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742592","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201027-5914030-1027-29-C/results/911742592/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:37","STORET",7,NA,2020-10-27 19:18:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",37.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4998400-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742603","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4998400-1028-4-C/results/911742603/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:37","STORET",7,NA,2020-10-28 17:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4998130-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742617","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4998130-1028-4-C/results/911742617/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:37","STORET",7,NA,2020-10-28 17:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4997330-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742648","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997330-1028-4-C/results/911742648/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:37","STORET",7,NA,2020-10-28 17:57:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4997675-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742679","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997675-1028-4-C/results/911742679/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:38","STORET",7,NA,2020-10-28 18:18:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4997670-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742710",NA,"as N","Nitrogen","Dissolved","2.2","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997670-1028-4-C/results/911742710/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:38","STORET",7,NA,2020-10-28 18:28:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4997300-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742741","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997300-1028-4-C/results/911742741/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:38","STORET",7,NA,2020-10-28 18:44:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-5910302-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"11:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742753","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910302-1028-4-C/results/911742753/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:38","STORET",7,NA,2020-10-28 18:54:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-5910273-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742765","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910273-1028-4-C/results/911742765/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:38","STORET",7,NA,2020-10-28 19:03:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4997250-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742777",NA,"as N","Nitrogen","Dissolved","1.9","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4997250-1028-4-C/results/911742777/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:39","STORET",7,NA,2020-10-28 19:16:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-5910250-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742789","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910250-1028-4-C/results/911742789/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:39","STORET",7,NA,2020-10-28 19:25:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-5910160-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742801","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910160-1028-4-C/results/911742801/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:39","STORET",7,NA,2020-10-28 20:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-5913630-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913630","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE",NA,NA,NA,NA,"40.4841200000","-111.4651800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742816","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5913630-1028-4-C/results/911742816/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:39","STORET",7,NA,2020-10-28 20:33:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.48412,-111.46518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-5910020-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910020","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK",NA,NA,NA,NA,"40.4613500000","-111.4715700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742847",NA,"as N","Nitrogen","Dissolved","3.4","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5910020-1028-4-C/results/911742847/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:39","STORET",7,NA,2020-10-28 20:55:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.46135,-111.47157,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-5913460-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742859","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5913460-1028-4-C/results/911742859/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:39","STORET",7,NA,2020-10-28 21:09:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4996870-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742871","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996870-1028-4-C/results/911742871/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:40","STORET",7,NA,2020-10-28 21:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-5913210-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742883","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-5913210-1028-4-C/results/911742883/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:40","STORET",7,NA,2020-10-28 21:40:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4996890-1028-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-10-28,"14:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742914","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996890-1028-4-C/results/911742914/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:40","STORET",7,NA,2020-10-28 21:41:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4996850-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"14:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742926","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996850-1028-4-C/results/911742926/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:40","STORET",7,NA,2020-10-28 21:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4996830-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"15:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742938","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996830-1028-4-C/results/911742938/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:40","STORET",7,NA,2020-10-28 22:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4996810-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"15:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742950","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996810-1028-4-C/results/911742950/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:40","STORET",7,NA,2020-10-28 22:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201028-4996780-1028-4-C","Sample-Routine","Water",NA,2020-10-28,"15:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742962","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201028-4996780-1028-4-C/results/911742962/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:40","STORET",7,NA,2020-10-28 22:26:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF201029-4995600-1029-4-C","Sample-Routine","Water",NA,2020-10-29,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911742974","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201029-4995600-1029-4-C/results/911742974/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:41","STORET",7,NA,2020-10-29 16:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF201029-4995730-1029-4-C","Sample-Routine","Water",NA,2020-10-29,"10:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743081","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201029-4995730-1029-4-C/results/911743081/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:42","STORET",7,NA,2020-10-29 17:27:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF201029-4995710-1029-4-C","Sample-Routine","Water",NA,2020-10-29,"10:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743112","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201029-4995710-1029-4-C/results/911743112/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:42","STORET",7,NA,2020-10-29 17:22:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201104-4936050-1104-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-04,"10:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743193","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-2-C/results/911743193/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:42","STORET",7,NA,2020-11-04 17:49:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201104-4936050-1104-23-C","Sample-Routine","Water",NA,2020-11-04,"10:53:00","MST",NA,NA,NA,"AboveThermoclin","3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743211","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-23-C/results/911743211/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:43","STORET",7,NA,2020-11-04 17:53:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201104-4936050-1104-24-C","Sample-Routine","Water",NA,2020-11-04,"11:05:00","MST",NA,NA,NA,"Midwater","9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743229","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-24-C/results/911743229/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:43","STORET",7,NA,2020-11-04 18:05:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201104-4936050-1104-26-C","Sample-Routine","Water",NA,2020-11-04,"11:07:00","MST",NA,NA,NA,"Midwater","16","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743247","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-26-C/results/911743247/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:43","STORET",7,NA,2020-11-04 18:07:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",16,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201104-4936050-1104-27-C","Sample-Routine","Water",NA,2020-11-04,"11:20:00","MST",NA,NA,NA,"BelowThermoclin","22","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743265","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-27-C/results/911743265/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:43","STORET",7,NA,2020-11-04 18:20:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR201104-4936050-1104-29-C","Sample-Routine","Water",NA,2020-11-04,"11:30:00","MST",NA,NA,NA,"Bottom","31.1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743283","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR201104-4936050-1104-29-C/results/911743283/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:43","STORET",7,NA,2020-11-04 18:30:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",31.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF201104-5937650-1104-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-04,"14:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743301","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201104-5937650-1104-2-C/results/911743301/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:43","STORET",7,NA,2020-11-04 21:19:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF201104-5937650-1104-25-C","Sample-Routine","Water",NA,2020-11-04,"14:23:00","MST",NA,NA,NA,"Midwater","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743319","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201104-5937650-1104-25-C/results/911743319/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:44","STORET",7,NA,2020-11-04 21:23:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF201104-5937650-1104-29-C","Sample-Routine","Water",NA,2020-11-04,"14:34:00","MST",NA,NA,NA,"Bottom","23.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743337","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF201104-5937650-1104-29-C/results/911743337/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:44","STORET",7,NA,2020-11-04 21:34:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",23.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR201117-4936420-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-17,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743355","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201117-4936420-1117-2-C/results/911743355/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:44","STORET",7,NA,2020-11-17 17:40:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR201117-4936420-1117-25-C","Sample-Routine","Water",NA,2020-11-17,"10:43:00","MST",NA,NA,NA,"Midwater","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743367","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201117-4936420-1117-25-C/results/911743367/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:44","STORET",7,NA,2020-11-17 17:43:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR201117-4936420-1117-29-C","Sample-Routine","Water",NA,2020-11-17,"10:47:00","MST",NA,NA,NA,"Bottom","20","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743378","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-11-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR201117-4936420-1117-29-C/results/911743378/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:44","STORET",7,NA,2020-11-17 17:47:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-18,"09:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743389",NA,"as N","Nitrogen","Dissolved","1.9","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-2-C/results/911743389/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:44","STORET",7,NA,2020-11-18 16:42:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-25-C","Sample-Routine","Water",NA,2020-11-18,"09:45:00","MST",NA,NA,NA,"Midwater","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743401","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-25-C/results/911743401/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:44","STORET",7,NA,2020-11-18 16:45:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-28-C","Sample-Routine","Water",NA,2020-11-18,"09:47:00","MST",NA,NA,NA,"Near Bottom","24","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743413","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-28-C/results/911743413/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:44","STORET",7,NA,2020-11-18 16:47:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",24,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-29-C","Sample-Routine","Water",NA,2020-11-18,"09:56:00","MST",NA,NA,NA,"Bottom","31.6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743425","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913220-1118-29-C/results/911743425/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:45","STORET",7,NA,2020-11-18 16:56:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",31.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC201118-5913490-1118-2-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-18,"09:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743437","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC201118-5913490-1118-2-C/results/911743437/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:45","STORET",7,NA,2020-11-18 16:42:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-19,"10:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743449","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-2-C/results/911743449/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:45","STORET",7,NA,2020-11-19 17:12:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-22-C","Sample-Routine","Water",NA,2020-11-19,"10:15:00","MST",NA,NA,NA,"Midwater","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743461","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-22-C/results/911743461/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:45","STORET",7,NA,2020-11-19 17:15:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-23-C","Sample-Routine","Water",NA,2020-11-19,"10:16:00","MST",NA,NA,NA,"AboveThermoclin","7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743473","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-23-C/results/911743473/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:45","STORET",7,NA,2020-11-19 17:16:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-24-C","Sample-Routine","Water",NA,2020-11-19,"10:18:00","MST",NA,NA,NA,"Midwater","13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743485","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-24-C/results/911743485/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:45","STORET",7,NA,2020-11-19 17:18:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-26-C","Sample-Routine","Water",NA,2020-11-19,"10:20:00","MST",NA,NA,NA,"Midwater","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743497","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-26-C/results/911743497/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:45","STORET",7,NA,2020-11-19 17:20:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-27-C","Sample-Routine","Water",NA,2020-11-19,"10:24:00","MST",NA,NA,NA,"BelowThermoclin","24","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743509","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-27-C/results/911743509/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:45","STORET",7,NA,2020-11-19 17:24:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",24,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-28-C","Sample-Routine","Water",NA,2020-11-19,"10:29:00","MST",NA,NA,NA,"Near Bottom","31","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743521","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-28-C/results/911743521/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:46","STORET",7,NA,2020-11-19 17:29:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",31,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-29-C","Sample-Routine","Water",NA,2020-11-19,"10:35:00","MST",NA,NA,NA,"Bottom","59.3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743533","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914010-1119-29-C/results/911743533/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:46","STORET",7,NA,2020-11-19 17:35:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",59.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914040-1119-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-19,"11:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743545","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914040-1119-2-C/results/911743545/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:46","STORET",7,NA,2020-11-19 18:13:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914040-1119-29-C","Sample-Routine","Water",NA,2020-11-19,"11:22:00","MST",NA,NA,NA,"Bottom","33.8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743557","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914040-1119-29-C/results/911743557/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:46","STORET",7,NA,2020-11-19 18:22:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",33.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914030-1119-2-C","Sample-Integrated Vertical Profile","Water",NA,2020-11-19,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743568","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914030-1119-2-C/results/911743568/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:46","STORET",7,NA,2020-11-19 18:45:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR201119-5914030-1119-29-C","Sample-Routine","Water",NA,2020-11-19,"11:56:00","MST",NA,NA,NA,"Bottom","36.6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743580","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR201119-5914030-1119-29-C/results/911743580/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:46","STORET",7,NA,2020-11-19 18:56:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",36.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4998400-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"10:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743591","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4998400-1124-4-C/results/911743591/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:46","STORET",7,NA,2020-11-24 17:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4998140-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"10:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998140","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING",NA,NA,NA,NA,"40.6099500000","-111.3051800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743605","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4998140-1124-4-C/results/911743605/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:46","STORET",7,NA,2020-11-24 17:33:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60995,-111.30518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4998130-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"10:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743617","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4998130-1124-4-C/results/911743617/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:46","STORET",7,NA,2020-11-24 17:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4997330-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743629","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997330-1124-4-C/results/911743629/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:47","STORET",7,NA,2020-11-24 18:03:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4997675-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"11:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743641","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997675-1124-4-C/results/911743641/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:47","STORET",7,NA,2020-11-24 18:22:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4997670-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743672","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997670-1124-4-C/results/911743672/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:47","STORET",7,NA,2020-11-24 18:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4997300-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"11:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743703","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997300-1124-4-C/results/911743703/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:47","STORET",7,NA,2020-11-24 18:47:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-5910302-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"11:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743715","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910302-1124-4-C/results/911743715/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:47","STORET",7,NA,2020-11-24 18:57:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-5910273-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"12:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743727","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910273-1124-4-C/results/911743727/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:48","STORET",7,NA,2020-11-24 19:07:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4997250-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"12:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743739","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4997250-1124-4-C/results/911743739/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:48","STORET",7,NA,2020-11-24 19:23:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-5910250-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"12:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743751","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910250-1124-4-C/results/911743751/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:48","STORET",7,NA,2020-11-24 19:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-5910160-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"13:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743763","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910160-1124-4-C/results/911743763/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:48","STORET",7,NA,2020-11-24 20:17:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-5913630-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"13:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913630","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE",NA,NA,NA,NA,"40.4841200000","-111.4651800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743778","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5913630-1124-4-C/results/911743778/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:48","STORET",7,NA,2020-11-24 20:34:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.48412,-111.46518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-5910020-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"13:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910020","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK",NA,NA,NA,NA,"40.4613500000","-111.4715700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743790",NA,"as N","Nitrogen","Dissolved","2.7","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5910020-1124-4-C/results/911743790/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:48","STORET",7,NA,2020-11-24 20:52:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.46135,-111.47157,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-5913460-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"14:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743802","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5913460-1124-4-C/results/911743802/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:48","STORET",7,NA,2020-11-24 21:06:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4996870-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"14:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743814","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996870-1124-4-C/results/911743814/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:48","STORET",7,NA,2020-11-24 21:41:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4996890-1124-4-C","Quality Control Sample-Field Replicate","Water",NA,2020-11-24,"14:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743826","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996890-1124-4-C/results/911743826/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:49","STORET",7,NA,2020-11-24 21:42:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-5913210-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"14:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743838","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-5913210-1124-4-C/results/911743838/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:49","STORET",7,NA,2020-11-24 21:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4996850-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743850","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996850-1124-4-C/results/911743850/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:49","STORET",7,NA,2020-11-24 21:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4996830-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"15:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743862","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996830-1124-4-C/results/911743862/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:49","STORET",7,NA,2020-11-24 22:04:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4996810-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743874","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996810-1124-4-C/results/911743874/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:49","STORET",7,NA,2020-11-24 22:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP201124-4996780-1124-4-C","Sample-Routine","Water",NA,2020-11-24,"15:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743886","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP201124-4996780-1124-4-C/results/911743886/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:49","STORET",7,NA,2020-11-24 22:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF201130-4995600-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"09:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743898","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201130-4995600-1130-4-C/results/911743898/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:49","STORET",7,NA,2020-11-30 16:18:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF201130-4995730-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"10:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743949","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201130-4995730-1130-4-C/results/911743949/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:50","STORET",7,NA,2020-11-30 17:33:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF201130-4995710-1130-4-C","Sample-Routine","Water",NA,2020-11-30,"10:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743966","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2020-12-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF201130-4995710-1130-4-C/results/911743966/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:50","STORET",7,NA,2020-11-30 17:27:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4998400-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"10:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911743994","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4998400-0126-4-C/results/911743994/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:50","STORET",7,NA,2021-01-26 17:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4998130-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"10:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744003","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4998130-0126-4-C/results/911744003/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:50","STORET",7,NA,2021-01-26 17:36:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4997330-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744010","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4997330-0126-4-C/results/911744010/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:50","STORET",7,NA,2021-01-26 17:57:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4997300-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"11:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744017","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4997300-0126-4-C/results/911744017/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:50","STORET",7,NA,2021-01-26 18:09:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-5910302-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"11:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744024","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-5910302-0126-4-C/results/911744024/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-01-26 18:18:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-5910273-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"11:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744031",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-5910273-0126-4-C/results/911744031/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-01-26 18:27:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4997250-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"11:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744038","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4997250-0126-4-C/results/911744038/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-01-26 18:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-5910250-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744045","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-5910250-0126-4-C/results/911744045/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-01-26 18:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-5910160-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"12:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744052","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-5910160-0126-4-C/results/911744052/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-01-26 19:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4996830-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"13:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744062","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4996830-0126-4-C/results/911744062/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-01-26 20:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210126-4996780-0126-4-C","Sample-Routine","Water",NA,2021-01-26,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744069","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210126-4996780-0126-4-C/results/911744069/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-01-26 20:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4998400-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"10:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744076","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4998400-0324-4-C/results/911744076/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-03-24 17:16:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4998140-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"10:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998140","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING",NA,NA,NA,NA,"40.6099500000","-111.3051800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744090","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4998140-0324-4-C/results/911744090/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-03-24 17:36:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60995,-111.30518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4998130-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"10:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744102",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4998130-0324-4-C/results/911744102/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:51","STORET",7,NA,2021-03-24 17:46:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997330-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"11:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744114","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997330-0324-4-C/results/911744114/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:52","STORET",7,NA,2021-03-24 18:08:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997675-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"11:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744126","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997675-0324-4-C/results/911744126/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:52","STORET",7,NA,2021-03-24 18:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997670-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"11:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744157","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997670-0324-4-C/results/911744157/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:52","STORET",7,NA,2021-03-24 18:37:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997300-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"11:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744188","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997300-0324-4-C/results/911744188/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:52","STORET",7,NA,2021-03-24 18:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910302-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"12:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744200","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910302-0324-4-C/results/911744200/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:52","STORET",7,NA,2021-03-24 19:02:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910273-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"12:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744212","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910273-0324-4-C/results/911744212/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:53","STORET",7,NA,2021-03-24 19:11:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4997250-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"12:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744224","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4997250-0324-4-C/results/911744224/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:53","STORET",7,NA,2021-03-24 19:22:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910250-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"12:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744236","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910250-0324-4-C/results/911744236/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:53","STORET",7,NA,2021-03-24 19:31:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910160-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"13:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744248","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910160-0324-4-C/results/911744248/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:53","STORET",7,NA,2021-03-24 20:11:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5913630-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"13:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913630","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE",NA,NA,NA,NA,"40.4841200000","-111.4651800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744263","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5913630-0324-4-C/results/911744263/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:53","STORET",7,NA,2021-03-24 20:26:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.48412,-111.46518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5910020-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"13:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5910020","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK",NA,NA,NA,NA,"40.4613500000","-111.4715700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744275",NA,"as N","Nitrogen","Dissolved","2.3","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5910020-0324-4-C/results/911744275/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:53","STORET",7,NA,2021-03-24 20:36:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.46135,-111.47157,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5913460-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744287","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5913460-0324-4-C/results/911744287/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:53","STORET",7,NA,2021-03-24 21:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996870-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744299","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996870-0324-4-C/results/911744299/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:53","STORET",7,NA,2021-03-24 21:25:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996890-0324-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-24,"14:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744311","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996890-0324-4-C/results/911744311/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:54","STORET",7,NA,2021-03-24 21:29:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-5913210-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744323","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-5913210-0324-4-C/results/911744323/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:54","STORET",7,NA,2021-03-24 21:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996850-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"14:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744335","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996850-0324-4-C/results/911744335/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:54","STORET",7,NA,2021-03-24 21:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996830-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"14:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744347","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996830-0324-4-C/results/911744347/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:54","STORET",7,NA,2021-03-24 21:52:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996810-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"15:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744359","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996810-0324-4-C/results/911744359/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:54","STORET",7,NA,2021-03-24 22:03:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210324-4996780-0324-4-C","Sample-Routine","Water",NA,2021-03-24,"15:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744371","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210324-4996780-0324-4-C/results/911744371/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:54","STORET",7,NA,2021-03-24 22:16:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210331-4995600-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"09:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744383","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210331-4995600-0331-4-C/results/911744383/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:54","STORET",7,NA,2021-03-31 16:37:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210331-4995730-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744490","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210331-4995730-0331-4-C/results/911744490/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:55","STORET",7,NA,2021-03-31 17:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210331-4995710-0331-4-C","Sample-Routine","Water",NA,2021-03-31,"10:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","CUWCD","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-911744521","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210331-4995710-0331-4-C/results/911744521/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2021-09-08T10:47:56","STORET",7,NA,2021-03-31 17:42:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2039","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202107271601:SR","Sample-Routine","Water",NA,2021-07-27,"16:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-IDR","INDIAN CREEK",NA,NA,NA,NA,"40.1572222222","-110.4050000000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-911870956","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-09-09T18:27:25","STORET",7,NA,2021-07-27 23:01:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.1572222222,-110.405,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202107271601:SR","Sample-Routine","Water",NA,2021-07-27,"16:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-IDR","INDIAN CREEK",NA,NA,NA,NA,"40.1572222222","-110.4050000000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-911870959","Not Detected","None","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-08-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202107271601%3ASR/results/911870959/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-09-09T18:27:25","STORET",7,NA,2021-07-27 23:01:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"None","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.1572222222,-110.405,"N","Unknown","Not Reviewed","Accepted","NONE","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_NONE_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2040","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202107281042:SR","Sample-Routine","Water",NA,2021-07-28,"10:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WRB","Whiterocks River 2",NA,NA,NA,NA,"40.5331460000","-109.9237518300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-911871003","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-09-09T18:27:25","STORET",7,NA,2021-07-28 17:42:00,NA,"River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.533146,-109.92375183,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202107281042:SR","Sample-Routine","Water",NA,2021-07-28,"10:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WRB","Whiterocks River 2",NA,NA,NA,NA,"40.5331460000","-109.9237518300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-911871008","Not Detected","None","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-08-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202107281042%3ASR/results/911871008/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-09-09T18:27:25","STORET",7,NA,2021-07-28 17:42:00,NA,"River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"None","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.533146,-109.92375183,"N","Unknown","Not Reviewed","Accepted","NONE","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_NONE_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"11:00:00","MST",NA,NA,NA,"Bottom","1.57","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912863939",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C/results/912863939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:26","STORET",7,NA,2021-03-15 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.57,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"11:00:00","MST",NA,NA,NA,"Bottom","1.57","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912863944",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917305-0315-29-C/results/912863944/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:26","STORET",7,NA,2021-03-15 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.57,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"11:45:00","MST",NA,NA,NA,"Bottom","2.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912863976",NA,"as N","Nitrogen","Total","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C/results/912863976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:27","STORET",7,NA,2021-03-15 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"11:45:00","MST",NA,NA,NA,"Bottom","2.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912863981",NA,"as N","Nitrogen","Dissolved","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917310-0315-29-C/results/912863981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:27","STORET",7,NA,2021-03-15 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-15,"12:00:00","MST",NA,NA,NA,"Bottom","2.08","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864013",NA,"as N","Nitrogen","Total","0.644","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C/results/912864013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:27","STORET",7,NA,2021-03-15 19:00:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.644,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.08,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-03-15,"12:00:00","MST",NA,NA,NA,"Bottom","2.08","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864018",NA,"as N","Nitrogen","Dissolved","0.636","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917320-0315-29-C/results/912864018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:27","STORET",7,NA,2021-03-15 19:00:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.636,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.08,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"11:30:00","MST",NA,NA,NA,"Bottom","1.44","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864050",NA,"as N","Nitrogen","Total","0.934","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C/results/912864050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:28","STORET",7,NA,2021-03-15 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.934,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.44,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"11:30:00","MST",NA,NA,NA,"Bottom","1.44","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864055",NA,"as N","Nitrogen","Dissolved","0.646","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917335-0315-29-C/results/912864055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:28","STORET",7,NA,2021-03-15 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.646,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.44,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"12:15:00","MST",NA,NA,NA,"Bottom","2.67","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864088",NA,"as N","Nitrogen","Total","0.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C/results/912864088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:28","STORET",7,NA,2021-03-15 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.73,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.67,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"12:15:00","MST",NA,NA,NA,"Bottom","2.67","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864093",NA,"as N","Nitrogen","Dissolved","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917365-0315-29-C/results/912864093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:28","STORET",7,NA,2021-03-15 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.67,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"13:20:00","MST",NA,NA,NA,"Bottom","2.66","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864125",NA,"as N","Nitrogen","Total","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C/results/912864125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:28","STORET",7,NA,2021-03-16 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.66,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"13:20:00","MST",NA,NA,NA,"Bottom","2.66","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864130",NA,"as N","Nitrogen","Dissolved","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917370-0316-29-C/results/912864130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:28","STORET",7,NA,2021-03-16 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.66,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"13:00:00","MST",NA,NA,NA,"Bottom","2.97","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864162",NA,"as N","Nitrogen","Total","0.624","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C/results/912864162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:29","STORET",7,NA,2021-03-15 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.624,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.97,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"13:00:00","MST",NA,NA,NA,"Bottom","2.97","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864167",NA,"as N","Nitrogen","Dissolved","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917390-0315-29-C/results/912864167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:29","STORET",7,NA,2021-03-15 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.97,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"13:40:00","MST",NA,NA,NA,"Bottom","1.67","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864199",NA,"as N","Nitrogen","Total","2.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C/results/912864199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:29","STORET",7,NA,2021-03-16 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.67,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"13:40:00","MST",NA,NA,NA,"Bottom","1.67","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864204",NA,"as N","Nitrogen","Dissolved","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917414-0316-29-C/results/912864204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:29","STORET",7,NA,2021-03-16 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.67,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"12:30:00","MST",NA,NA,NA,"Bottom","2.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864236",NA,"as N","Nitrogen","Total","0.905","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C/results/912864236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:29","STORET",7,NA,2021-03-15 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.905,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"12:30:00","MST",NA,NA,NA,"Bottom","2.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864241",NA,"as N","Nitrogen","Dissolved","0.703","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917433-0315-29-C/results/912864241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:29","STORET",7,NA,2021-03-15 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.703,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"13:30:00","MST",NA,NA,NA,"Bottom","1.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864274",NA,"as N","Nitrogen","Total","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C/results/912864274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:30","STORET",7,NA,2021-03-15 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C","Sample-Routine","Water",NA,2021-03-15,"13:30:00","MST",NA,NA,NA,"Bottom","1.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864279",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-03-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917450-0315-29-C/results/912864279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:30","STORET",7,NA,2021-03-15 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"12:30:00","MST",NA,NA,NA,"Bottom","2.69","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864311",NA,"as N","Nitrogen","Total","0.661","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C/results/912864311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:30","STORET",7,NA,2021-03-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.661,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.69,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"12:30:00","MST",NA,NA,NA,"Bottom","2.69","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864316",NA,"as N","Nitrogen","Dissolved","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917500-0316-29-C/results/912864316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:30","STORET",7,NA,2021-03-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.69,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"14:00:00","MST",NA,NA,NA,"Bottom","2.23","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864348",NA,"as N","Nitrogen","Total","0.626","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C/results/912864348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:30","STORET",7,NA,2021-03-16 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.626,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"14:00:00","MST",NA,NA,NA,"Bottom","2.23","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864353",NA,"as N","Nitrogen","Dissolved","0.636","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917520-0316-29-C/results/912864353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:30","STORET",7,NA,2021-03-16 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.636,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,"Bottom","0.95","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864385",NA,"as N","Nitrogen","Total","0.691","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C/results/912864385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:31","STORET",7,NA,2021-03-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.691,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.95,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"11:40:00","MST",NA,NA,NA,"Bottom","0.95","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864390",NA,"as N","Nitrogen","Dissolved","0.643","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917600-0316-29-C/results/912864390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:31","STORET",7,NA,2021-03-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.643,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.95,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,"Bottom","1.44","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864422",NA,"as N","Nitrogen","Total","0.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C/results/912864422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:31","STORET",7,NA,2021-03-16 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.44,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"11:15:00","MST",NA,NA,NA,"Bottom","1.44","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864427",NA,"as N","Nitrogen","Dissolved","0.689","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917708-0316-29-C/results/912864427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:31","STORET",7,NA,2021-03-16 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.689,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.44,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"10:50:00","MST",NA,NA,NA,"Bottom","2.89","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864459",NA,"as N","Nitrogen","Total","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C/results/912864459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:31","STORET",7,NA,2021-03-16 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.89,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"10:50:00","MST",NA,NA,NA,"Bottom","2.89","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864464",NA,"as N","Nitrogen","Dissolved","0.609","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917710-0316-29-C/results/912864464/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:31","STORET",7,NA,2021-03-16 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.609,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.89,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"10:30:00","MST",NA,NA,NA,"Bottom","2.99","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864496",NA,"as N","Nitrogen","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C/results/912864496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:32","STORET",7,NA,2021-03-16 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.99,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"10:30:00","MST",NA,NA,NA,"Bottom","2.99","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864501",NA,"as N","Nitrogen","Dissolved","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917715-0316-29-C/results/912864501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:32","STORET",7,NA,2021-03-16 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.99,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"10:00:00","MST",NA,NA,NA,"Bottom","1.27","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864533",NA,"as N","Nitrogen","Total","0.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C/results/912864533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:32","STORET",7,NA,2021-03-16 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.27,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C","Sample-Routine","Water",NA,2021-03-16,"10:00:00","MST",NA,NA,NA,"Bottom","1.27","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-912864538",NA,"as N","Nitrogen","Dissolved","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4917770-0316-29-C/results/912864538/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2021-09-22T09:32:32","STORET",7,NA,2021-03-16 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.27,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"15","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1175S","Sample-Routine","Water",NA,2021-08-10,"14:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BOR_ALP","Bureau of Reclamation monitoring for Animas- La Plata EIS",NA,"UTEMTN-RUIN_SPG","Ruin spring-- highest flowing on White Mesa",NA,NA,NA,NA,"37.4998430000","-109.5225670000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-916412467","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201175S/results/916412467/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-10-18T16:21:27","STORET",7,NA,2021-08-10 21:15:00,NA,"Spring","Ruin spring-- highest flowing on White Mesa","14080201",NA,NA,NA,NA,"37.4998430000","-109.5225670000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83","5442","ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collection of surface water quality data for interpretation of potential environmental impacts from increased irrigation, canal construction, surface water augmentation and trans-basin diversion; this was a 638 contract for sample collection between the Tribe''s Water Pollution Prevention Program and the BOR from 1993 to 1996, samples analyzed by Sangre De Cristo Laboratory in Alamosa, CO",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.499843,-109.522567,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"16","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1176Q","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"14:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BOR_ALP","Bureau of Reclamation monitoring for Animas- La Plata EIS",NA,"UTEMTN-RUIN_SPG","Ruin spring-- highest flowing on White Mesa",NA,NA,NA,NA,"37.4998430000","-109.5225670000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-916412539","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201176Q/results/916412539/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-10-18T16:21:29","STORET",7,NA,2021-08-10 21:20:00,NA,"Spring","Ruin spring-- highest flowing on White Mesa","14080201",NA,NA,NA,NA,"37.4998430000","-109.5225670000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83","5442","ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collection of surface water quality data for interpretation of potential environmental impacts from increased irrigation, canal construction, surface water augmentation and trans-basin diversion; this was a 638 contract for sample collection between the Tribe''s Water Pollution Prevention Program and the BOR from 1993 to 1996, samples analyzed by Sangre De Cristo Laboratory in Alamosa, CO",NA,NA,NA,NA,NA,"Converted","QC_replicate","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.499843,-109.522567,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"17","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1177S","Sample-Routine","Water",NA,2021-08-10,"11:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BOR_ALP","Bureau of Reclamation monitoring for Animas- La Plata EIS",NA,"UTEMTN-Cow Camp Spring","Cow Camp Spring",NA,NA,NA,NA,"37.5238671000","-109.5381037000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-916412611","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201177S/results/916412611/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-10-18T16:21:30","STORET",7,NA,2021-08-10 18:45:00,NA,"Spring",NA,"14080201",NA,NA,NA,NA,"37.5238671000","-109.5381037000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collection of surface water quality data for interpretation of potential environmental impacts from increased irrigation, canal construction, surface water augmentation and trans-basin diversion; this was a 638 contract for sample collection between the Tribe''s Water Pollution Prevention Program and the BOR from 1993 to 1996, samples analyzed by Sangre De Cristo Laboratory in Alamosa, CO",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.5238671,-109.5381037,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"18","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1174S","Sample-Routine","Water",NA,2021-08-10,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"BOR_ALP","Bureau of Reclamation monitoring for Animas- La Plata EIS",NA,"UTEMTN-ENTRANCE_SPG","Entrasnce seep-- nearest WM uranium mill",NA,NA,NA,NA,"37.5321000000","-109.4920170000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-916412683","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201174S/results/916412683/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-10-18T16:21:31","STORET",7,NA,2021-08-10 22:45:00,NA,"Spring","Entrasnce seep-- nearest WM uranium mill","14080201",NA,NA,NA,NA,"37.5321000000","-109.4920170000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83","5572","ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collection of surface water quality data for interpretation of potential environmental impacts from increased irrigation, canal construction, surface water augmentation and trans-basin diversion; this was a 638 contract for sample collection between the Tribe''s Water Pollution Prevention Program and the BOR from 1993 to 1996, samples analyzed by Sangre De Cristo Laboratory in Alamosa, CO",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.5321,-109.492017,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"19","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202109201525:SR","Sample-Routine","Water",NA,2021-09-20,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WRB","Whiterocks River 2",NA,NA,NA,NA,"40.5331460000","-109.9237518300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916412765","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202109201525%3ASR/results/916412765/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-10-18T16:22:25","STORET",7,NA,2021-09-20 22:25:00,NA,"River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.533146,-109.92375183,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2041","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202109201525:SR","Sample-Routine","Water",NA,2021-09-20,"15:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WRB","Whiterocks River 2",NA,NA,NA,NA,"40.5331460000","-109.9237518300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916412767","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-10-18T16:22:25","STORET",7,NA,2021-09-20 22:25:00,NA,"River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.533146,-109.92375183,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"20","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1182S","Sample-Routine","Water",NA,2021-09-21,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-WM_GWMW_E","white mesa ground water monitoring well; east",NA,NA,NA,NA,"37.4964750000","-109.4931020000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-916493130","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201182S/results/916493130/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-10-20T15:26:27","STORET",7,NA,2021-09-21 18:15:00,NA,"Well","monitoring well downgradient of White Mesa Uranium Mill, southeast","14080201",NA,NA,NA,NA,"37.4964750000","-109.4931020000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83","5470","ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.496475,-109.493102,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"21","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1180S","Sample-Routine","Water",NA,2021-09-15,"14:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-RARE - 1","RARE - 1",NA,NA,NA,NA,"37.5122083300","109.4942416700","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-916493274",NA,"as N","Ammonia","Unfiltered","0.830","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201180S/results/916493274/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-10-20T15:26:29","STORET",7,NA,2021-09-15 21:50:00,NA,"Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",830,"UG/L","Numeric","Not Reviewed","Uncensored",37.51220833,109.49424167,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"22","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1181Q","Quality Control Sample-Field Replicate","Water",NA,2021-09-15,"15:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-RARE - 1","RARE - 1",NA,NA,NA,NA,"37.5122083300","109.4942416700","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-916493346",NA,"as N","Ammonia","Unfiltered","0.881","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201181Q/results/916493346/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-10-20T15:26:30","STORET",7,NA,2021-09-15 22:05:00,NA,"Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_replicate","Not Reviewed","WATER","AMMONIA",881,"UG/L","Numeric","Not Reviewed","Uncensored",37.51220833,109.49424167,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"23","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1183S","Sample-Routine","Water",NA,2021-09-22,"14:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-WM_GWMW_W","white mesa ground water monitoring well; west",NA,NA,NA,NA,"37.4897350000","-109.5180720000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-916493418",NA,"as N","Ammonia","Unfiltered","0.349","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201183S/results/916493418/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-10-20T15:26:30","STORET",7,NA,2021-09-22 21:30:00,NA,"Well","monitoring well downgradient of White Mesa Uranium Mill, southwest","14080201",NA,NA,NA,NA,"37.4897350000","-109.5180720000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83","5491","ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",349,"UG/L","Numeric","Not Reviewed","Uncensored",37.489735,-109.518072,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2042","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202109141254:SR","Sample-Routine","Water",NA,2021-09-14,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916689906","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-10-26T12:44:24","STORET",7,NA,2021-09-14 19:54:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"24","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202109141254:SR","Sample-Routine","Water",NA,2021-09-14,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916689910","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202109141254%3ASR/results/916689910/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-10-26T12:44:24","STORET",7,NA,2021-09-14 19:54:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"25","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202109141254:QFB","Quality Control Sample-Field Blank","Water",NA,2021-09-14,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916689983","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202109141254%3AQFB/results/916689983/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-10-26T12:44:26","STORET",7,NA,2021-09-14 19:54:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_blank","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2043","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202109141254:QFB","Quality Control Sample-Field Blank","Water",NA,2021-09-14,"12:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916689985","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-10-26T12:44:26","STORET",7,NA,2021-09-14 19:54:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","QC_blank","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2044","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202109141327:SR","Sample-Routine","Water",NA,2021-09-14,"13:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-G4C","4 Corners",NA,NA,NA,NA,"40.2415300000","-109.8590500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916690007","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-10-26T12:44:27","STORET",7,NA,2021-09-14 20:27:00,NA,"River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.24153,-109.85905,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"26","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202109141327:SR","Sample-Routine","Water",NA,2021-09-14,"13:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-G4C","4 Corners",NA,NA,NA,NA,"40.2415300000","-109.8590500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916690009","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-G4C%3A202109141327%3ASR/results/916690009/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-10-26T12:44:27","STORET",7,NA,2021-09-14 20:27:00,NA,"River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.24153,-109.85905,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2045","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202109271240:SR","Sample-Routine","Water",NA,2021-09-27,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-IDR","INDIAN CREEK",NA,NA,NA,NA,"40.1572222222","-110.4050000000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916690059","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-10-26T12:44:28","STORET",7,NA,2021-09-27 19:40:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.1572222222,-110.405,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"27","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202109271240:SR","Sample-Routine","Water",NA,2021-09-27,"12:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-IDR","INDIAN CREEK",NA,NA,NA,NA,"40.1572222222","-110.4050000000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916690060","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202109271240%3ASR/results/916690060/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-10-26T12:44:28","STORET",7,NA,2021-09-27 19:40:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.1572222222,-110.405,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"28","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202109141209:QLD","Quality Control Sample-Lab Duplicate","Water",NA,2021-09-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DDC","Duchesne River South of Randlett",NA,NA,NA,NA,"40.2158400000","-109.7838900000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916690121","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202109141209%3AQLD/results/916690121/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-10-26T12:44:28","STORET",7,NA,2021-09-14 19:09:00,NA,"River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_duplicate","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.21584,-109.78389,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2046","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202109141209:QLD","Quality Control Sample-Lab Duplicate","Water",NA,2021-09-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DDC","Duchesne River South of Randlett",NA,NA,NA,NA,"40.2158400000","-109.7838900000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916690123","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-10-26T12:44:28","STORET",7,NA,2021-09-14 19:09:00,NA,"River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","QC_duplicate","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.21584,-109.78389,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"29","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202109141209:SR","Sample-Routine","Water",NA,2021-09-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DDC","Duchesne River South of Randlett",NA,NA,NA,NA,"40.2158400000","-109.7838900000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916690190","Present Below Quantification Limit","as N","Ammonia","Unfiltered","0.167","mg/L","B","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202109141209%3ASR/results/916690190/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2021-10-26T12:44:30","STORET",7,NA,2021-09-14 19:09:00,NA,"River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",167,"UG/L","Numeric","Pass","Uncensored",40.21584,-109.78389,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2047","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202109141209:SR","Sample-Routine","Water",NA,2021-09-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DDC","Duchesne River South of Randlett",NA,NA,NA,NA,"40.2158400000","-109.7838900000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-916690192","Not Reported","as N","Nitrate","Unfiltered",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2021-10-26T12:44:30","STORET",7,NA,2021-09-14 19:09:00,NA,"River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.21584,-109.78389,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1197","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1172S","Sample-Routine","Water",NA,2021-07-14,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-CW-N","Cottonwood wash north",NA,NA,NA,NA,"37.7415950000","-109.6886280000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-921589387","Not Detected","as N","Nitrate","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/","Green Analytical Laboratories",2021-07-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201172S/results/921589387/resdetectqntlmts","Lower Reporting Limit","0.02","mg/L",NA,"2021-12-08T11:30:30","STORET",7,NA,2021-07-14 17:55:00,NA,"River/Stream","Cottonwood Wash, north end of Tribal lands there. The ephemeral wash flows onto and off from the Tribal lands a few times on its journy to the San Juan River. Highly impacted by uranium mining.","14080201",NA,NA,NA,NA,"37.7415950000","-109.6886280000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",20,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.741595,-109.688628,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.02,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"30","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1172S","Sample-Routine","Water",NA,2021-07-14,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-CW-N","Cottonwood wash north",NA,NA,NA,NA,"37.7415950000","-109.6886280000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-921589391","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201172S/results/921589391/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-12-08T11:30:31","STORET",7,NA,2021-07-14 17:55:00,NA,"River/Stream","Cottonwood Wash, north end of Tribal lands there. The ephemeral wash flows onto and off from the Tribal lands a few times on its journy to the San Juan River. Highly impacted by uranium mining.","14080201",NA,NA,NA,NA,"37.7415950000","-109.6886280000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.741595,-109.688628,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1198","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1173Q","Quality Control Sample-Field Replicate","Water",NA,2021-07-14,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-CW-N","Cottonwood wash north",NA,NA,NA,NA,"37.7415950000","-109.6886280000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-921589461","Not Detected","as N","Nitrate","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/","Green Analytical Laboratories",2021-07-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201173Q/results/921589461/resdetectqntlmts","Lower Reporting Limit","0.02","mg/L",NA,"2021-12-08T11:30:34","STORET",7,NA,2021-07-14 18:00:00,NA,"River/Stream","Cottonwood Wash, north end of Tribal lands there. The ephemeral wash flows onto and off from the Tribal lands a few times on its journy to the San Juan River. Highly impacted by uranium mining.","14080201",NA,NA,NA,NA,"37.7415950000","-109.6886280000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_replicate","Not Reviewed","WATER","NITRATE",20,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.741595,-109.688628,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","NITRATE_UNFILTERED_AS N_UG/L",0.02,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"31","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1173Q","Quality Control Sample-Field Replicate","Water",NA,2021-07-14,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-CW-N","Cottonwood wash north",NA,NA,NA,NA,"37.7415950000","-109.6886280000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-921589465","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201173Q/results/921589465/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2021-12-08T11:30:34","STORET",7,NA,2021-07-14 18:00:00,NA,"River/Stream","Cottonwood Wash, north end of Tribal lands there. The ephemeral wash flows onto and off from the Tribal lands a few times on its journy to the San Juan River. Highly impacted by uranium mining.","14080201",NA,NA,NA,NA,"37.7415950000","-109.6886280000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_replicate","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.741595,-109.688628,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4998400-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"10:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240414",NA,"as N","Nitrogen","Dissolved","3.7","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4998400-0428-4-C/results/930240414/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:04","STORET",7,NA,2021-04-28 17:28:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4998140-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"10:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING",NA,NA,NA,NA,"40.6099500000","-111.3051800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240428","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4998140-0428-4-C/results/930240428/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:05","STORET",7,NA,2021-04-28 17:47:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60995,-111.30518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4998130-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240440","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4998130-0428-4-C/results/930240440/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:05","STORET",7,NA,2021-04-28 17:57:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997330-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"11:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240452","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997330-0428-4-C/results/930240452/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:05","STORET",7,NA,2021-04-28 18:18:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997675-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"11:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240464","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997675-0428-4-C/results/930240464/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:05","STORET",7,NA,2021-04-28 18:37:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997670-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"11:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240495","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997670-0428-4-C/results/930240495/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:06","STORET",7,NA,2021-04-28 18:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997300-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"11:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240526","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997300-0428-4-C/results/930240526/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:06","STORET",7,NA,2021-04-28 18:57:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910302-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"12:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240538","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910302-0428-4-C/results/930240538/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:06","STORET",7,NA,2021-04-28 19:07:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910273-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240550","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910273-0428-4-C/results/930240550/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:06","STORET",7,NA,2021-04-28 19:15:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4997250-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"12:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240562","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4997250-0428-4-C/results/930240562/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:07","STORET",7,NA,2021-04-28 19:27:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910250-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"12:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240574","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910250-0428-4-C/results/930240574/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:07","STORET",7,NA,2021-04-28 19:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910160-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240586","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910160-0428-4-C/results/930240586/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:07","STORET",7,NA,2021-04-28 20:25:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5913630-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"13:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913630","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE",NA,NA,NA,NA,"40.4841200000","-111.4651800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240598","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5913630-0428-4-C/results/930240598/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:07","STORET",7,NA,2021-04-28 20:41:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.48412,-111.46518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5910020-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"14:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910020","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK",NA,NA,NA,NA,"40.4613500000","-111.4715700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240610",NA,"as N","Nitrogen","Dissolved","2.2","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5910020-0428-4-C/results/930240610/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:07","STORET",7,NA,2021-04-28 21:01:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.46135,-111.47157,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5913460-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"14:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240622","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5913460-0428-4-C/results/930240622/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:07","STORET",7,NA,2021-04-28 21:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996870-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"14:39:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240634","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996870-0428-4-C/results/930240634/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:07","STORET",7,NA,2021-04-28 21:39:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996890-0428-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-28,"14:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240646","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996890-0428-4-C/results/930240646/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:08","STORET",7,NA,2021-04-28 21:41:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-5913210-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"14:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240658","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-5913210-0428-4-C/results/930240658/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:08","STORET",7,NA,2021-04-28 21:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996850-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"14:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240670","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996850-0428-4-C/results/930240670/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:08","STORET",7,NA,2021-04-28 21:54:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996830-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240682","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996830-0428-4-C/results/930240682/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:08","STORET",7,NA,2021-04-28 22:05:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996810-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"15:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240694","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996810-0428-4-C/results/930240694/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:08","STORET",7,NA,2021-04-28 22:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210428-4996780-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"15:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240706","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210428-4996780-0428-4-C/results/930240706/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:08","STORET",7,NA,2021-04-28 22:26:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210430-4995600-0430-4-C","Sample-Routine","Water",NA,2021-04-30,"09:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240718","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210430-4995600-0430-4-C/results/930240718/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:08","STORET",7,NA,2021-04-30 16:26:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210430-4995730-0430-4-C","Sample-Routine","Water",NA,2021-04-30,"10:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240805","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210430-4995730-0430-4-C/results/930240805/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:09","STORET",7,NA,2021-04-30 17:41:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210430-4995710-0430-4-C","Sample-Routine","Water",NA,2021-04-30,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240836","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210430-4995710-0430-4-C/results/930240836/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:09","STORET",7,NA,2021-04-30 17:57:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-06,"09:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240892","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-2-C/results/930240892/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:10","STORET",7,NA,2021-05-06 16:09:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-22-C","Sample-Routine","Water",NA,2021-05-06,"09:10:00","MST",NA,NA,NA,"Midwater","3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240942","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-22-C/results/930240942/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:10","STORET",7,NA,2021-05-06 16:10:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-23-C","Sample-Routine","Water",NA,2021-05-06,"09:12:00","MST",NA,NA,NA,"AboveThermoclin","7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930240992","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-23-C/results/930240992/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:10","STORET",7,NA,2021-05-06 16:12:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-24-C","Sample-Routine","Water",NA,2021-05-06,"09:14:00","MST",NA,NA,NA,"Midwater","14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241042","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-24-C/results/930241042/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:11","STORET",7,NA,2021-05-06 16:14:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-26-C","Sample-Routine","Water",NA,2021-05-06,"09:17:00","MST",NA,NA,NA,"Midwater","20","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241092","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-26-C/results/930241092/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:11","STORET",7,NA,2021-05-06 16:17:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-27-C","Sample-Routine","Water",NA,2021-05-06,"09:18:00","MST",NA,NA,NA,"BelowThermoclin","26","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241142","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-27-C/results/930241142/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:11","STORET",7,NA,2021-05-06 16:18:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",26,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210506-4936050-0506-29-C","Sample-Routine","Water",NA,2021-05-06,"09:23:00","MST",NA,NA,NA,"Bottom","33.8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241192","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210506-4936050-0506-29-C/results/930241192/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:12","STORET",7,NA,2021-05-06 16:23:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",33.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210506-5937650-0506-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-06,"12:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241242","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210506-5937650-0506-2-C/results/930241242/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:12","STORET",7,NA,2021-05-06 19:29:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210506-5937650-0506-23-C","Sample-Routine","Water",NA,2021-05-06,"12:32:00","MST",NA,NA,NA,"AboveThermoclin","6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241292","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210506-5937650-0506-23-C/results/930241292/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:13","STORET",7,NA,2021-05-06 19:32:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210506-5937650-0506-27-C","Sample-Routine","Water",NA,2021-05-06,"12:33:00","MST",NA,NA,NA,"BelowThermoclin","9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241342","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210506-5937650-0506-27-C/results/930241342/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:13","STORET",7,NA,2021-05-06 19:33:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210506-5937650-0506-29-C","Sample-Routine","Water",NA,2021-05-06,"12:42:00","MST",NA,NA,NA,"Bottom","21.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241392","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210506-5937650-0506-29-C/results/930241392/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:13","STORET",7,NA,2021-05-06 19:42:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",21.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210511-4936420-0511-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-11,"10:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241442","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210511-4936420-0511-2-C/results/930241442/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:14","STORET",7,NA,2021-05-11 17:24:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210511-4936420-0511-25-C","Sample-Routine","Water",NA,2021-05-11,"10:27:00","MST",NA,NA,NA,"Midwater","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241454","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210511-4936420-0511-25-C/results/930241454/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:14","STORET",7,NA,2021-05-11 17:27:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210511-4936420-0511-29-C","Sample-Routine","Water",NA,2021-05-11,"10:30:00","MST",NA,NA,NA,"Bottom","20","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241465","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210511-4936420-0511-29-C/results/930241465/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:14","STORET",7,NA,2021-05-11 17:30:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-20,"11:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241476","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-2-C/results/930241476/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:14","STORET",7,NA,2021-05-20 18:06:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-23-C","Sample-Routine","Water",NA,2021-05-20,"11:09:00","MST",NA,NA,NA,"AboveThermoclin","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241488","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-23-C/results/930241488/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:14","STORET",7,NA,2021-05-20 18:09:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-27-C","Sample-Routine","Water",NA,2021-05-20,"11:11:00","MST",NA,NA,NA,"BelowThermoclin","14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241500","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-27-C/results/930241500/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:14","STORET",7,NA,2021-05-20 18:11:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-28-C","Sample-Routine","Water",NA,2021-05-20,"11:14:00","MST",NA,NA,NA,"Near Bottom","27","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241512","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-28-C/results/930241512/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:14","STORET",7,NA,2021-05-20 18:14:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",27,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-29-C","Sample-Routine","Water",NA,2021-05-20,"11:22:00","MST",NA,NA,NA,"Bottom","35.3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241524","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913220-0520-29-C/results/930241524/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:15","STORET",7,NA,2021-05-20 18:22:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",35.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210520-5913490-0520-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-20,"11:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241536","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210520-5913490-0520-2-C/results/930241536/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:15","STORET",7,NA,2021-05-20 18:06:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4998400-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241567","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4998400-0525-4-C/results/930241567/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:15","STORET",7,NA,2021-05-25 17:06:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4998140-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING",NA,NA,NA,NA,"40.6099500000","-111.3051800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241581","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4998140-0525-4-C/results/930241581/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:15","STORET",7,NA,2021-05-25 17:27:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60995,-111.30518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4998130-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241593","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4998130-0525-4-C/results/930241593/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:15","STORET",7,NA,2021-05-25 17:35:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997330-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241624","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997330-0525-4-C/results/930241624/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:15","STORET",7,NA,2021-05-25 17:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997675-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"11:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241655","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997675-0525-4-C/results/930241655/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:16","STORET",7,NA,2021-05-25 18:19:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997670-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"11:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241686","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997670-0525-4-C/results/930241686/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:16","STORET",7,NA,2021-05-25 18:26:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997300-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"11:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241717","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997300-0525-4-C/results/930241717/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:16","STORET",7,NA,2021-05-25 18:41:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910302-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"11:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241729","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910302-0525-4-C/results/930241729/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:16","STORET",7,NA,2021-05-25 18:51:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910273-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"11:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241741","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910273-0525-4-C/results/930241741/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:16","STORET",7,NA,2021-05-25 18:59:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4997250-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"12:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241753","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4997250-0525-4-C/results/930241753/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:16","STORET",7,NA,2021-05-25 19:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910250-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241765","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910250-0525-4-C/results/930241765/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:16","STORET",7,NA,2021-05-25 19:20:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910160-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241777","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910160-0525-4-C/results/930241777/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:16","STORET",7,NA,2021-05-25 20:05:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5913630-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"13:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913630","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE",NA,NA,NA,NA,"40.4841200000","-111.4651800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241792","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5913630-0525-4-C/results/930241792/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:17","STORET",7,NA,2021-05-25 20:19:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.48412,-111.46518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5910020-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"13:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910020","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK",NA,NA,NA,NA,"40.4613500000","-111.4715700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241823",NA,"as N","Nitrogen","Dissolved","1.4","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5910020-0525-4-C/results/930241823/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:17","STORET",7,NA,2021-05-25 20:37:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.46135,-111.47157,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5913460-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"13:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241835","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5913460-0525-4-C/results/930241835/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:17","STORET",7,NA,2021-05-25 20:49:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996870-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"14:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241847","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996870-0525-4-C/results/930241847/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:17","STORET",7,NA,2021-05-25 21:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-5913210-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"14:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241859","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-5913210-0525-4-C/results/930241859/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:17","STORET",7,NA,2021-05-25 21:16:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996890-0525-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-25,"14:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241890","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996890-0525-4-C/results/930241890/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:17","STORET",7,NA,2021-05-25 21:17:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996850-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241921","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996850-0525-4-C/results/930241921/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:18","STORET",7,NA,2021-05-25 21:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996830-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"14:39:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241933","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996830-0525-4-C/results/930241933/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:18","STORET",7,NA,2021-05-25 21:39:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996810-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"14:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241945","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996810-0525-4-C/results/930241945/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:18","STORET",7,NA,2021-05-25 21:49:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210525-4996780-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"15:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241976","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210525-4996780-0525-4-C/results/930241976/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:18","STORET",7,NA,2021-05-25 22:03:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-26,"10:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930241988","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-2-C/results/930241988/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:18","STORET",7,NA,2021-05-26 17:02:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-22-C","Sample-Routine","Water",NA,2021-05-26,"10:03:00","MST",NA,NA,NA,"Midwater","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242000","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-22-C/results/930242000/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:18","STORET",7,NA,2021-05-26 17:03:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-23-C","Sample-Routine","Water",NA,2021-05-26,"10:05:00","MST",NA,NA,NA,"AboveThermoclin","7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242012","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-23-C/results/930242012/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:18","STORET",7,NA,2021-05-26 17:05:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-24-C","Sample-Routine","Water",NA,2021-05-26,"10:09:00","MST",NA,NA,NA,"Midwater","13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242024","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-24-C/results/930242024/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:19","STORET",7,NA,2021-05-26 17:09:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-26-C","Sample-Routine","Water",NA,2021-05-26,"10:13:00","MST",NA,NA,NA,"Midwater","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242036","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-26-C/results/930242036/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:19","STORET",7,NA,2021-05-26 17:13:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-27-C","Sample-Routine","Water",NA,2021-05-26,"10:14:00","MST",NA,NA,NA,"BelowThermoclin","24","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242048","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-27-C/results/930242048/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:19","STORET",7,NA,2021-05-26 17:14:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",24,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-28-C","Sample-Routine","Water",NA,2021-05-26,"10:16:00","MST",NA,NA,NA,"Near Bottom","31","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242060","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-28-C/results/930242060/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:19","STORET",7,NA,2021-05-26 17:16:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",31,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-29-C","Sample-Routine","Water",NA,2021-05-26,"10:26:00","MST",NA,NA,NA,"Bottom","60","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242072","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914010-0526-29-C/results/930242072/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:19","STORET",7,NA,2021-05-26 17:26:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",60,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-26,"10:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242103","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-2-C/results/930242103/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:19","STORET",7,NA,2021-05-26 17:32:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-29-C","Sample-Routine","Water",NA,2021-05-26,"11:07:00","MST",NA,NA,NA,"Bottom","34.7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242115","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914040-0526-29-C/results/930242115/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:20","STORET",7,NA,2021-05-26 18:07:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",34.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-26,"11:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242126","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-2-C/results/930242126/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:20","STORET",7,NA,2021-05-26 18:24:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-29-C","Sample-Routine","Water",NA,2021-05-26,"11:33:00","MST",NA,NA,NA,"Bottom","37","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242138","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210526-5914030-0526-29-C/results/930242138/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:20","STORET",7,NA,2021-05-26 18:33:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",37,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210527-4995600-0527-4-C","Sample-Routine","Water",NA,2021-05-27,"09:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242149","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210527-4995600-0527-4-C/results/930242149/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:20","STORET",7,NA,2021-05-27 16:51:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210527-4995730-0527-4-C","Sample-Routine","Water",NA,2021-05-27,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242200","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210527-4995730-0527-4-C/results/930242200/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:20","STORET",7,NA,2021-05-27 17:57:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210527-4995710-0527-4-C","Sample-Routine","Water",NA,2021-05-27,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242217","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210527-4995710-0527-4-C/results/930242217/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:21","STORET",7,NA,2021-05-27 17:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-02,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242245","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-2-C/results/930242245/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:21","STORET",7,NA,2021-06-02 16:45:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-22-C","Sample-Routine","Water",NA,2021-06-02,"09:46:00","MST",NA,NA,NA,"Midwater","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242263","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-22-C/results/930242263/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:21","STORET",7,NA,2021-06-02 16:46:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-23-C","Sample-Routine","Water",NA,2021-06-02,"09:47:00","MST",NA,NA,NA,"AboveThermoclin","6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242281","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-23-C/results/930242281/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:21","STORET",7,NA,2021-06-02 16:47:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-24-C","Sample-Routine","Water",NA,2021-06-02,"09:50:00","MST",NA,NA,NA,"Midwater","13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242299","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-24-C/results/930242299/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:21","STORET",7,NA,2021-06-02 16:50:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-26-C","Sample-Routine","Water",NA,2021-06-02,"09:58:00","MST",NA,NA,NA,"Midwater","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242317","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-26-C/results/930242317/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:21","STORET",7,NA,2021-06-02 16:58:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-27-C","Sample-Routine","Water",NA,2021-06-02,"10:02:00","MST",NA,NA,NA,"BelowThermoclin","25","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242335","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-27-C/results/930242335/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:22","STORET",7,NA,2021-06-02 17:02:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",25,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210602-4936050-0602-29-C","Sample-Routine","Water",NA,2021-06-02,"10:07:00","MST",NA,NA,NA,"Bottom","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242353","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210602-4936050-0602-29-C/results/930242353/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:22","STORET",7,NA,2021-06-02 17:07:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210602-5937650-0602-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-02,"12:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242371","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210602-5937650-0602-2-C/results/930242371/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:22","STORET",7,NA,2021-06-02 19:29:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210602-5937650-0602-23-C","Sample-Routine","Water",NA,2021-06-02,"12:32:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242389","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210602-5937650-0602-23-C/results/930242389/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:22","STORET",7,NA,2021-06-02 19:32:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210602-5937650-0602-27-C","Sample-Routine","Water",NA,2021-06-02,"12:34:00","MST",NA,NA,NA,"BelowThermoclin","8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242407","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210602-5937650-0602-27-C/results/930242407/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:22","STORET",7,NA,2021-06-02 19:34:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210602-5937650-0602-29-C","Sample-Routine","Water",NA,2021-06-02,"12:44:00","MST",NA,NA,NA,"Bottom","23.8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242425","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210602-5937650-0602-29-C/results/930242425/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:22","STORET",7,NA,2021-06-02 19:44:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",23.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-09,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242443","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210609-4936420-0609-2-C/results/930242443/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:22","STORET",7,NA,2021-06-09 17:35:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-23-C","Sample-Routine","Water",NA,2021-06-09,"10:37:00","MST",NA,NA,NA,"AboveThermoclin","3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242455","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210609-4936420-0609-23-C/results/930242455/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-09 17:37:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-27-C","Sample-Routine","Water",NA,2021-06-09,"10:38:00","MST",NA,NA,NA,"BelowThermoclin","6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242466","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210609-4936420-0609-27-C/results/930242466/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-09 17:38:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210609-4936420-0609-29-C","Sample-Routine","Water",NA,2021-06-09,"10:47:00","MST",NA,NA,NA,"Bottom","19.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242477","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210609-4936420-0609-29-C/results/930242477/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-09 17:47:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242488",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-2-C/results/930242488/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-15 17:10:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-22-C","Sample-Routine","Water",NA,2021-06-15,"10:11:00","MST",NA,NA,NA,"Midwater","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242500",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-22-C/results/930242500/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-15 17:11:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-23-C","Sample-Routine","Water",NA,2021-06-15,"10:14:00","MST",NA,NA,NA,"AboveThermoclin","8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242512",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-23-C/results/930242512/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-15 17:14:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-24-C","Sample-Routine","Water",NA,2021-06-15,"10:17:00","MST",NA,NA,NA,"Midwater","14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242524",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-24-C/results/930242524/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-15 17:17:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-26-C","Sample-Routine","Water",NA,2021-06-15,"10:22:00","MST",NA,NA,NA,"Midwater","20","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242536",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-26-C/results/930242536/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-15 17:22:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-27-C","Sample-Routine","Water",NA,2021-06-15,"10:26:00","MST",NA,NA,NA,"BelowThermoclin","24","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242548",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-27-C/results/930242548/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-15 17:26:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",24,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-28-C","Sample-Routine","Water",NA,2021-06-15,"10:29:00","MST",NA,NA,NA,"Near Bottom","31","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242560",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-28-C/results/930242560/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:23","STORET",7,NA,2021-06-15 17:29:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",31,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-29-C","Sample-Routine","Water",NA,2021-06-15,"10:36:00","MST",NA,NA,NA,"Bottom","68","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242572",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914010-0615-29-C/results/930242572/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:24","STORET",7,NA,2021-06-15 17:36:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",68,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"10:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242584",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-2-C/results/930242584/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:24","STORET",7,NA,2021-06-15 17:53:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-29-C","Sample-Routine","Water",NA,2021-06-15,"11:03:00","MST",NA,NA,NA,"Bottom","35","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242596",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914040-0615-29-C/results/930242596/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:24","STORET",7,NA,2021-06-15 18:03:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",35,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242607",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-2-C/results/930242607/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:24","STORET",7,NA,2021-06-15 18:20:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-29-C","Sample-Routine","Water",NA,2021-06-15,"11:36:00","MST",NA,NA,NA,"Bottom","36","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242619",NA,"as N","Nitrogen","Dissolved","ND","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210615-5914030-0615-29-C/results/930242619/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:24","STORET",7,NA,2021-06-15 18:36:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Detection condition is missing and required for censored data ID.",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",36,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-16,"09:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242630","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-2-C/results/930242630/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:24","STORET",7,NA,2021-06-16 16:33:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-23-C","Sample-Routine","Water",NA,2021-06-16,"09:34:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242642","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-23-C/results/930242642/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:24","STORET",7,NA,2021-06-16 16:34:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-27-C","Sample-Routine","Water",NA,2021-06-16,"09:44:00","MST",NA,NA,NA,"BelowThermoclin","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242654","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-27-C/results/930242654/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:24","STORET",7,NA,2021-06-16 16:44:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-28-C","Sample-Routine","Water",NA,2021-06-16,"09:49:00","MST",NA,NA,NA,"Near Bottom","26","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242666","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-28-C/results/930242666/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:24","STORET",7,NA,2021-06-16 16:49:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",26,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-29-C","Sample-Routine","Water",NA,2021-06-16,"09:52:00","MST",NA,NA,NA,"Bottom","33.9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242678","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913220-0616-29-C/results/930242678/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:25","STORET",7,NA,2021-06-16 16:52:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",33.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-16,"10:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242690","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-2-C/results/930242690/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:25","STORET",7,NA,2021-06-16 17:17:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-23-C","Sample-Routine","Water",NA,2021-06-16,"10:19:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242702","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-23-C/results/930242702/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:25","STORET",7,NA,2021-06-16 17:19:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-27-C","Sample-Routine","Water",NA,2021-06-16,"10:23:00","MST",NA,NA,NA,"BelowThermoclin","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242713","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-27-C/results/930242713/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:25","STORET",7,NA,2021-06-16 17:23:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-29-C","Sample-Routine","Water",NA,2021-06-16,"10:31:00","MST",NA,NA,NA,"Bottom","20.7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242724","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913230-0616-29-C/results/930242724/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:25","STORET",7,NA,2021-06-16 17:31:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-16,"10:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242735","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-2-C/results/930242735/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:26","STORET",7,NA,2021-06-16 17:48:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-29-C","Sample-Routine","Water",NA,2021-06-16,"10:55:00","MST",NA,NA,NA,"Bottom","5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242747","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913240-0616-29-C/results/930242747/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:26","STORET",7,NA,2021-06-16 17:55:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210616-5913490-0616-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-16,"09:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242758","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210616-5913490-0616-2-C/results/930242758/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:26","STORET",7,NA,2021-06-16 16:32:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4998400-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"10:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242770","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4998400-0623-4-C/results/930242770/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:26","STORET",7,NA,2021-06-23 17:07:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4998130-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"10:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242784","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4998130-0623-4-C/results/930242784/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:26","STORET",7,NA,2021-06-23 17:28:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997330-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242796","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997330-0623-4-C/results/930242796/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:27","STORET",7,NA,2021-06-23 17:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997675-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"11:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242808","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997675-0623-4-C/results/930242808/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:27","STORET",7,NA,2021-06-23 18:17:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997670-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"11:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242839","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997670-0623-4-C/results/930242839/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:27","STORET",7,NA,2021-06-23 18:24:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997300-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242870","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997300-0623-4-C/results/930242870/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:28","STORET",7,NA,2021-06-23 18:40:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5910273-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"11:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242882","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5910273-0623-4-C/results/930242882/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:28","STORET",7,NA,2021-06-23 18:54:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4997250-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"12:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242894","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4997250-0623-4-C/results/930242894/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:28","STORET",7,NA,2021-06-23 19:09:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5910250-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"12:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242906","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5910250-0623-4-C/results/930242906/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:28","STORET",7,NA,2021-06-23 19:17:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5910160-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"13:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242918","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5910160-0623-4-C/results/930242918/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:28","STORET",7,NA,2021-06-23 20:01:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5913630-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"13:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913630","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE",NA,NA,NA,NA,"40.4841200000","-111.4651800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242933","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5913630-0623-4-C/results/930242933/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:28","STORET",7,NA,2021-06-23 20:16:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.48412,-111.46518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996870-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"14:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242945","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996870-0623-4-C/results/930242945/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:28","STORET",7,NA,2021-06-23 21:03:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996890-0623-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-23,"14:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242957","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996890-0623-4-C/results/930242957/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:28","STORET",7,NA,2021-06-23 21:07:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-5913210-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"14:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242969","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-5913210-0623-4-C/results/930242969/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:28","STORET",7,NA,2021-06-23 21:08:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996850-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"14:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242981","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996850-0623-4-C/results/930242981/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:29","STORET",7,NA,2021-06-23 21:21:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996830-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"14:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930242993","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996830-0623-4-C/results/930242993/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:29","STORET",7,NA,2021-06-23 21:33:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996810-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"14:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243005","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996810-0623-4-C/results/930243005/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:29","STORET",7,NA,2021-06-23 21:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210623-4996780-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"14:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243017","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210623-4996780-0623-4-C/results/930243017/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:29","STORET",7,NA,2021-06-23 21:57:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210629-4995600-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"09:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243029","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210629-4995600-0629-4-C/results/930243029/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:29","STORET",7,NA,2021-06-29 16:53:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210629-4995730-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"10:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243079","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210629-4995730-0629-4-C/results/930243079/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:29","STORET",7,NA,2021-06-29 17:41:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210629-4995710-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"10:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243096","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210629-4995710-0629-4-C/results/930243096/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:30","STORET",7,NA,2021-06-29 17:37:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"09:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243135","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-2-C/results/930243135/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:30","STORET",7,NA,2021-07-13 16:18:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-23-C","Sample-Routine","Water",NA,2021-07-13,"09:49:00","MST",NA,NA,NA,"AboveThermoclin","3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243153","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-23-C/results/930243153/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:30","STORET",7,NA,2021-07-13 16:49:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-24-C","Sample-Routine","Water",NA,2021-07-13,"09:56:00","MST",NA,NA,NA,"Midwater","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243171","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-24-C/results/930243171/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:30","STORET",7,NA,2021-07-13 16:56:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-26-C","Sample-Routine","Water",NA,2021-07-13,"10:00:00","MST",NA,NA,NA,"Midwater","16","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243189","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-26-C/results/930243189/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:31","STORET",7,NA,2021-07-13 17:00:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",16,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-27-C","Sample-Routine","Water",NA,2021-07-13,"10:02:00","MST",NA,NA,NA,"BelowThermoclin","22","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243207","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-27-C/results/930243207/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:31","STORET",7,NA,2021-07-13 17:02:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210713-4936050-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"10:05:00","MST",NA,NA,NA,"Bottom","27.8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243225","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210713-4936050-0713-29-C/results/930243225/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:31","STORET",7,NA,2021-07-13 17:05:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",27.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210713-5937650-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243243","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210713-5937650-0713-2-C/results/930243243/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:31","STORET",7,NA,2021-07-13 19:35:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210713-5937650-0713-23-C","Sample-Routine","Water",NA,2021-07-13,"12:37:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243261","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210713-5937650-0713-23-C/results/930243261/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:31","STORET",7,NA,2021-07-13 19:37:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210713-5937650-0713-27-C","Sample-Routine","Water",NA,2021-07-13,"12:43:00","MST",NA,NA,NA,"BelowThermoclin","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243279","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210713-5937650-0713-27-C/results/930243279/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:31","STORET",7,NA,2021-07-13 19:43:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210713-5937650-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"12:52:00","MST",NA,NA,NA,"Bottom","22.4","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243297","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210713-5937650-0713-29-C/results/930243297/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:32","STORET",7,NA,2021-07-13 19:52:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",22.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-14,"11:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243315","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210714-4936420-0714-2-C/results/930243315/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:32","STORET",7,NA,2021-07-14 18:57:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-23-C","Sample-Routine","Water",NA,2021-07-14,"12:00:00","MST",NA,NA,NA,"AboveThermoclin","9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243327","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210714-4936420-0714-23-C/results/930243327/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:32","STORET",7,NA,2021-07-14 19:00:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-27-C","Sample-Routine","Water",NA,2021-07-14,"12:07:00","MST",NA,NA,NA,"BelowThermoclin","16","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243338","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210714-4936420-0714-27-C/results/930243338/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:32","STORET",7,NA,2021-07-14 19:07:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",16,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210714-4936420-0714-29-C","Sample-Routine","Water",NA,2021-07-14,"12:09:00","MST",NA,NA,NA,"Bottom","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243349","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210714-4936420-0714-29-C/results/930243349/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:32","STORET",7,NA,2021-07-14 19:09:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-21,"09:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243360","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-2-C/results/930243360/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:32","STORET",7,NA,2021-07-21 16:52:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-23-C","Sample-Routine","Water",NA,2021-07-21,"09:54:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243372","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-23-C/results/930243372/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:32","STORET",7,NA,2021-07-21 16:54:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-24-C","Sample-Routine","Water",NA,2021-07-21,"10:02:00","MST",NA,NA,NA,"Midwater","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243384","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-24-C/results/930243384/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:32","STORET",7,NA,2021-07-21 17:02:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-26-C","Sample-Routine","Water",NA,2021-07-21,"10:06:00","MST",NA,NA,NA,"Midwater","17","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243396","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-26-C/results/930243396/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:33","STORET",7,NA,2021-07-21 17:06:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-27-C","Sample-Routine","Water",NA,2021-07-21,"10:08:00","MST",NA,NA,NA,"BelowThermoclin","22","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243408","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-27-C/results/930243408/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:33","STORET",7,NA,2021-07-21 17:08:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-28-C","Sample-Routine","Water",NA,2021-07-21,"10:12:00","MST",NA,NA,NA,"Near Bottom","28","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243420","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-28-C/results/930243420/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:33","STORET",7,NA,2021-07-21 17:12:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",28,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-29-C","Sample-Routine","Water",NA,2021-07-21,"10:22:00","MST",NA,NA,NA,"Bottom","66.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243432","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914010-0721-29-C/results/930243432/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:33","STORET",7,NA,2021-07-21 17:22:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",66.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-21,"10:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243444","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-2-C/results/930243444/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:33","STORET",7,NA,2021-07-21 17:34:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-29-C","Sample-Routine","Water",NA,2021-07-21,"11:02:00","MST",NA,NA,NA,"Bottom","32.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243456","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914040-0721-29-C/results/930243456/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:33","STORET",7,NA,2021-07-21 18:02:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",32.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-21,"11:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243467","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-2-C/results/930243467/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:33","STORET",7,NA,2021-07-21 18:21:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-29-C","Sample-Routine","Water",NA,2021-07-21,"11:34:00","MST",NA,NA,NA,"Bottom","34","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243479","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210721-5914030-0721-29-C/results/930243479/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:33","STORET",7,NA,2021-07-21 18:34:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",34,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-22,"09:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243490","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-2-C/results/930243490/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:33","STORET",7,NA,2021-07-22 16:36:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-23-C","Sample-Routine","Water",NA,2021-07-22,"09:38:00","MST",NA,NA,NA,"AboveThermoclin","9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243502","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-23-C/results/930243502/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:34","STORET",7,NA,2021-07-22 16:38:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-27-C","Sample-Routine","Water",NA,2021-07-22,"09:50:00","MST",NA,NA,NA,"BelowThermoclin","16","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243514","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-27-C/results/930243514/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:34","STORET",7,NA,2021-07-22 16:50:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",16,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-28-C","Sample-Routine","Water",NA,2021-07-22,"09:54:00","MST",NA,NA,NA,"Near Bottom","23","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243526","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-28-C/results/930243526/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:34","STORET",7,NA,2021-07-22 16:54:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-29-C","Sample-Routine","Water",NA,2021-07-22,"09:50:00","MST",NA,NA,NA,"Bottom","31","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243538","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913220-0722-29-C/results/930243538/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:34","STORET",7,NA,2021-07-22 16:50:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",31,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-22,"10:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243550","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-2-C/results/930243550/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:34","STORET",7,NA,2021-07-22 17:21:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-23-C","Sample-Routine","Water",NA,2021-07-22,"10:22:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243562","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-23-C/results/930243562/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:34","STORET",7,NA,2021-07-22 17:22:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-27-C","Sample-Routine","Water",NA,2021-07-22,"10:28:00","MST",NA,NA,NA,"BelowThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243573","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-27-C/results/930243573/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:34","STORET",7,NA,2021-07-22 17:28:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-29-C","Sample-Routine","Water",NA,2021-07-22,"10:37:00","MST",NA,NA,NA,"Bottom","17.6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243584","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913230-0722-29-C/results/930243584/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:34","STORET",7,NA,2021-07-22 17:37:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",17.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-22,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243595","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-2-C/results/930243595/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:34","STORET",7,NA,2021-07-22 17:50:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-29-C","Sample-Routine","Water",NA,2021-07-22,"10:53:00","MST",NA,NA,NA,"Bottom","2.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243607","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913240-0722-29-C/results/930243607/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:35","STORET",7,NA,2021-07-22 17:53:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210722-5913490-0722-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-22,"09:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243618","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210722-5913490-0722-2-C/results/930243618/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:35","STORET",7,NA,2021-07-22 16:36:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4998400-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243630","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4998400-0727-4-C/results/930243630/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:35","STORET",7,NA,2021-07-27 17:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4998130-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243661","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4998130-0727-4-C/results/930243661/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:35","STORET",7,NA,2021-07-27 17:41:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4997330-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243673","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4997330-0727-4-C/results/930243673/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:35","STORET",7,NA,2021-07-27 18:10:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4997675-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243685","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4997675-0727-4-C/results/930243685/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:36","STORET",7,NA,2021-07-27 18:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4997670-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:39:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243716","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4997670-0727-4-C/results/930243716/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:36","STORET",7,NA,2021-07-27 18:39:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4997300-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243747","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4997300-0727-4-C/results/930243747/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:36","STORET",7,NA,2021-07-27 18:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"4999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5910302-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243759","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5910302-0727-4-C/results/930243759/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:36","STORET",7,NA,2021-07-27 19:05:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5910273-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243771","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5910273-0727-4-C/results/930243771/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:36","STORET",7,NA,2021-07-27 19:15:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5910250-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"12:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243783","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5910250-0727-4-C/results/930243783/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:37","STORET",7,NA,2021-07-27 19:27:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5910160-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243795","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5910160-0727-4-C/results/930243795/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:37","STORET",7,NA,2021-07-27 20:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996870-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"13:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243807","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996870-0727-4-C/results/930243807/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:37","STORET",7,NA,2021-07-27 20:57:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-5913210-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243819","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-5913210-0727-4-C/results/930243819/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:37","STORET",7,NA,2021-07-27 21:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996890-0727-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-27,"14:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243831","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996890-0727-4-C/results/930243831/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:37","STORET",7,NA,2021-07-27 21:01:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996850-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"14:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243843","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996850-0727-4-C/results/930243843/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:37","STORET",7,NA,2021-07-27 21:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996810-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243855","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996810-0727-4-C/results/930243855/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:37","STORET",7,NA,2021-07-27 21:25:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210727-4996780-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"14:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243867","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210727-4996780-0727-4-C/results/930243867/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:37","STORET",7,NA,2021-07-27 21:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210729-4995600-0729-4-C","Sample-Routine","Water",NA,2021-07-29,"09:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243879","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210729-4995600-0729-4-C/results/930243879/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:37","STORET",7,NA,2021-07-29 16:44:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210729-4995730-0729-4-C","Sample-Routine","Water",NA,2021-07-29,"10:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243927","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210729-4995730-0729-4-C/results/930243927/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:38","STORET",7,NA,2021-07-29 17:44:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210729-4995710-0729-4-C","Sample-Routine","Water",NA,2021-07-29,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243944","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210729-4995710-0729-4-C/results/930243944/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:38","STORET",7,NA,2021-07-29 17:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210805-4936050-0805-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-05,"09:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930243983","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210805-4936050-0805-2-C/results/930243983/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:38","STORET",7,NA,2021-08-05 16:57:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210805-4936050-0805-23-C","Sample-Routine","Water",NA,2021-08-05,"09:58:00","MST",NA,NA,NA,"AboveThermoclin","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244001","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210805-4936050-0805-23-C/results/930244001/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:38","STORET",7,NA,2021-08-05 16:58:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210805-4936050-0805-24-C","Sample-Routine","Water",NA,2021-08-05,"10:00:00","MST",NA,NA,NA,"Midwater","9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244019","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210805-4936050-0805-24-C/results/930244019/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:39","STORET",7,NA,2021-08-05 17:00:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210805-4936050-0805-26-C","Sample-Routine","Water",NA,2021-08-05,"10:07:00","MST",NA,NA,NA,"Midwater","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244037","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210805-4936050-0805-26-C/results/930244037/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:39","STORET",7,NA,2021-08-05 17:07:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996780-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"15:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244065","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996780-0824-4-C/results/930244065/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:39","STORET",7,NA,2021-08-24 22:06:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996810-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"14:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244096","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996810-0824-4-C/results/930244096/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:39","STORET",7,NA,2021-08-24 21:52:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996830-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"14:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244108",NA,"as N","Nitrogen","Dissolved","3.9","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996830-0824-4-C/results/930244108/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:40","STORET",7,NA,2021-08-24 21:41:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996850-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244120","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996850-0824-4-C/results/930244120/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:40","STORET",7,NA,2021-08-24 21:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996890-0824-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-24,"14:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244151","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996890-0824-4-C/results/930244151/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:40","STORET",7,NA,2021-08-24 21:18:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5913210-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"14:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244182","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5913210-0824-4-C/results/930244182/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:40","STORET",7,NA,2021-08-24 21:17:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4996870-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"14:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244194","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4996870-0824-4-C/results/930244194/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:40","STORET",7,NA,2021-08-24 21:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5910160-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"13:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244209","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5910160-0824-4-C/results/930244209/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:40","STORET",7,NA,2021-08-24 20:21:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5910250-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"12:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244221","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5910250-0824-4-C/results/930244221/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:41","STORET",7,NA,2021-08-24 19:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997250-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"12:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244233","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997250-0824-4-C/results/930244233/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:41","STORET",7,NA,2021-08-24 19:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5910273-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"12:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244245","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5910273-0824-4-C/results/930244245/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:41","STORET",7,NA,2021-08-24 19:22:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-5910302-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"12:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244257","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-5910302-0824-4-C/results/930244257/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:41","STORET",7,NA,2021-08-24 19:04:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997300-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"11:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244269","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997300-0824-4-C/results/930244269/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:41","STORET",7,NA,2021-08-24 18:54:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997670-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"11:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244300","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997670-0824-4-C/results/930244300/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:41","STORET",7,NA,2021-08-24 18:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997675-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"11:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244331","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997675-0824-4-C/results/930244331/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:41","STORET",7,NA,2021-08-24 18:31:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4997330-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244362","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4997330-0824-4-C/results/930244362/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:42","STORET",7,NA,2021-08-24 18:05:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4998130-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"10:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244393","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4998130-0824-4-C/results/930244393/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:42","STORET",7,NA,2021-08-24 17:41:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210824-4998400-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"10:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244407","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210824-4998400-0824-4-C/results/930244407/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:42","STORET",7,NA,2021-08-24 17:37:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210826-4995600-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244409","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210826-4995600-0826-4-C/results/930244409/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:42","STORET",7,NA,2021-08-26 16:55:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210826-4995730-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244458",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210826-4995730-0826-4-C/results/930244458/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:42","STORET",7,NA,2021-08-26 17:57:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210826-4995710-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"10:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244475","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210826-4995710-0826-4-C/results/930244475/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:43","STORET",7,NA,2021-08-26 17:53:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-09,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244514","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-2-C/results/930244514/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:43","STORET",7,NA,2021-09-09 17:15:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-23-C","Sample-Routine","Water",NA,2021-09-09,"10:15:00","MST",NA,NA,NA,"AboveThermoclin","0.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244545","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-23-C/results/930244545/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:43","STORET",7,NA,2021-09-09 17:15:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-24-C","Sample-Routine","Water",NA,2021-09-09,"10:20:00","MST",NA,NA,NA,"Midwater","7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244576","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-24-C/results/930244576/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:44","STORET",7,NA,2021-09-09 17:20:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-26-C","Sample-Routine","Water",NA,2021-09-09,"10:25:00","MST",NA,NA,NA,"Midwater","13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244607","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-26-C/results/930244607/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:44","STORET",7,NA,2021-09-09 17:25:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-27-C","Sample-Routine","Water",NA,2021-09-09,"10:27:00","MST",NA,NA,NA,"BelowThermoclin","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244638","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-27-C/results/930244638/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:44","STORET",7,NA,2021-09-09 17:27:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR210909-4936050-0909-29-C","Sample-Routine","Water",NA,2021-09-09,"10:34:00","MST",NA,NA,NA,"Bottom","25.3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244669","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR210909-4936050-0909-29-C/results/930244669/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:45","STORET",7,NA,2021-09-09 17:34:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",25.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210909-5937650-0909-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-09,"13:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244700","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210909-5937650-0909-2-C/results/930244700/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:45","STORET",7,NA,2021-09-09 20:43:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210909-5937650-0909-23-C","Sample-Routine","Water",NA,2021-09-09,"13:45:00","MST",NA,NA,NA,"AboveThermoclin","7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244731","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210909-5937650-0909-23-C/results/930244731/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:45","STORET",7,NA,2021-09-09 20:45:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210909-5937650-0909-27-C","Sample-Routine","Water",NA,2021-09-09,"13:47:00","MST",NA,NA,NA,"BelowThermoclin","12","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244762","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210909-5937650-0909-27-C/results/930244762/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:46","STORET",7,NA,2021-09-09 20:47:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF210909-5937650-0909-29-C","Sample-Routine","Water",NA,2021-09-09,"13:55:00","MST",NA,NA,NA,"Bottom","15.3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244793","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF210909-5937650-0909-29-C/results/930244793/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:46","STORET",7,NA,2021-09-09 20:55:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-15,"10:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244824","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210915-4936420-0915-2-C/results/930244824/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:46","STORET",7,NA,2021-09-15 17:23:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-23-C","Sample-Routine","Water",NA,2021-09-15,"10:30:00","MST",NA,NA,NA,"AboveThermoclin","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244836","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210915-4936420-0915-23-C/results/930244836/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:46","STORET",7,NA,2021-09-15 17:30:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-27-C","Sample-Routine","Water",NA,2021-09-15,"10:35:00","MST",NA,NA,NA,"BelowThermoclin","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244847","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210915-4936420-0915-27-C/results/930244847/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:47","STORET",7,NA,2021-09-15 17:35:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR210915-4936420-0915-29-C","Sample-Routine","Water",NA,2021-09-15,"10:45:00","MST",NA,NA,NA,"Bottom","17.9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244858","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR210915-4936420-0915-29-C/results/930244858/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:47","STORET",7,NA,2021-09-15 17:45:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",17.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-21,"11:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244869","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-2-C/results/930244869/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:47","STORET",7,NA,2021-09-21 18:13:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-24-C","Sample-Routine","Water",NA,2021-09-21,"11:16:00","MST",NA,NA,NA,"Midwater","5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244881","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-24-C/results/930244881/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:47","STORET",7,NA,2021-09-21 18:16:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-26-C","Sample-Routine","Water",NA,2021-09-21,"11:18:00","MST",NA,NA,NA,"Midwater","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244893","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-26-C/results/930244893/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:47","STORET",7,NA,2021-09-21 18:18:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-27-C","Sample-Routine","Water",NA,2021-09-21,"11:27:00","MST",NA,NA,NA,"BelowThermoclin","16","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244905","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-27-C/results/930244905/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:47","STORET",7,NA,2021-09-21 18:27:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",16,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-28-C","Sample-Routine","Water",NA,2021-09-21,"11:31:00","MST",NA,NA,NA,"Near Bottom","22","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244917","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-28-C/results/930244917/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:47","STORET",7,NA,2021-09-21 18:31:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-29-C","Sample-Routine","Water",NA,2021-09-21,"11:37:00","MST",NA,NA,NA,"Bottom","56.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244929","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914010-0921-29-C/results/930244929/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:48","STORET",7,NA,2021-09-21 18:37:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",56.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-21,"12:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244960","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-2-C/results/930244960/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:48","STORET",7,NA,2021-09-21 19:04:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-29-C","Sample-Routine","Water",NA,2021-09-21,"12:15:00","MST",NA,NA,NA,"Bottom","27.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244972","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914040-0921-29-C/results/930244972/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:48","STORET",7,NA,2021-09-21 19:15:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",27.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-21,"12:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244983","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-2-C/results/930244983/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:48","STORET",7,NA,2021-09-21 19:42:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-29-C","Sample-Routine","Water",NA,2021-09-21,"12:52:00","MST",NA,NA,NA,"Bottom","28","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930244995","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR210921-5914030-0921-29-C/results/930244995/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:48","STORET",7,NA,2021-09-21 19:52:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",28,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-23,"09:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245006","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-2-C/results/930245006/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:48","STORET",7,NA,2021-09-23 16:52:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-25-C","Sample-Routine","Water",NA,2021-09-23,"09:57:00","MST",NA,NA,NA,"Midwater","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245018","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-25-C/results/930245018/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:48","STORET",7,NA,2021-09-23 16:57:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-28-C","Sample-Routine","Water",NA,2021-09-23,"09:59:00","MST",NA,NA,NA,"Near Bottom","23","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245030","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-28-C/results/930245030/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:48","STORET",7,NA,2021-09-23 16:59:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-29-C","Sample-Routine","Water",NA,2021-09-23,"10:16:00","MST",NA,NA,NA,"Bottom","30.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245042","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913220-0923-29-C/results/930245042/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:48","STORET",7,NA,2021-09-23 17:16:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",30.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-23,"10:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245073","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-2-C/results/930245073/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:49","STORET",7,NA,2021-09-23 17:38:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-25-C","Sample-Routine","Water",NA,2021-09-23,"10:40:00","MST",NA,NA,NA,"Midwater","9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245085","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-25-C/results/930245085/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:49","STORET",7,NA,2021-09-23 17:40:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-29-C","Sample-Routine","Water",NA,2021-09-23,"10:46:00","MST",NA,NA,NA,"Bottom","17.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245096","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913230-0923-29-C/results/930245096/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:49","STORET",7,NA,2021-09-23 17:46:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",17.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-23,"11:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245107","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-2-C/results/930245107/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:49","STORET",7,NA,2021-09-23 18:09:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-29-C","Sample-Routine","Water",NA,2021-09-23,"11:10:00","MST",NA,NA,NA,"Bottom","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245119","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913240-0923-29-C/results/930245119/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:49","STORET",7,NA,2021-09-23 18:10:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC210923-5913490-0923-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-23,"09:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245130","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC210923-5913490-0923-2-C/results/930245130/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:49","STORET",7,NA,2021-09-23 16:49:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4998400-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"09:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245142","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4998400-0928-4-C/results/930245142/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:49","STORET",7,NA,2021-09-28 16:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4998130-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"09:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245173","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4998130-0928-4-C/results/930245173/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:50","STORET",7,NA,2021-09-28 16:34:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997330-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"09:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245185","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997330-0928-4-C/results/930245185/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:50","STORET",7,NA,2021-09-28 16:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997675-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245197","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997675-0928-4-C/results/930245197/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:50","STORET",7,NA,2021-09-28 17:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997670-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245228","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997670-0928-4-C/results/930245228/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:50","STORET",7,NA,2021-09-28 17:22:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997300-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245259","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997300-0928-4-C/results/930245259/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:50","STORET",7,NA,2021-09-28 17:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5910302-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245271","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5910302-0928-4-C/results/930245271/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:50","STORET",7,NA,2021-09-28 17:47:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5910273-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245283","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5910273-0928-4-C/results/930245283/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:51","STORET",7,NA,2021-09-28 17:55:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4997250-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"11:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245295","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4997250-0928-4-C/results/930245295/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:51","STORET",7,NA,2021-09-28 18:07:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5910250-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245307","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5910250-0928-4-C/results/930245307/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:51","STORET",7,NA,2021-09-28 18:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5910160-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245319","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5910160-0928-4-C/results/930245319/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:51","STORET",7,NA,2021-09-28 18:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996870-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245331","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996870-0928-4-C/results/930245331/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:51","STORET",7,NA,2021-09-28 19:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-5913210-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"12:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245343","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-5913210-0928-4-C/results/930245343/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:51","STORET",7,NA,2021-09-28 19:18:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996890-0928-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-28,"12:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245355","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996890-0928-4-C/results/930245355/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:51","STORET",7,NA,2021-09-28 19:19:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996850-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245367","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996850-0928-4-C/results/930245367/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:51","STORET",7,NA,2021-09-28 19:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996830-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"12:39:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245379","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996830-0928-4-C/results/930245379/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:51","STORET",7,NA,2021-09-28 19:39:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996810-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"12:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245391","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996810-0928-4-C/results/930245391/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:52","STORET",7,NA,2021-09-28 19:49:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP210927-4996780-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"13:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245403","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP210927-4996780-0928-4-C/results/930245403/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:52","STORET",7,NA,2021-09-28 20:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210928-4995600-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245415","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210928-4995600-0929-4-C/results/930245415/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:52","STORET",7,NA,2021-09-29 15:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210928-4995730-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"09:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245464","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210928-4995730-0929-4-C/results/930245464/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:52","STORET",7,NA,2021-09-29 16:12:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF210928-4995710-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"09:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-930245481","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF210928-4995710-0929-4-C/results/930245481/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-02-17T10:31:52","STORET",7,NA,2021-09-29 16:08:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1199","ADVENTURESCIENTISTS","Adventure Scientists (Volunteer)*","ADVENTURESCIENTISTS-5868d02d-2c40-42eb-82b9-9b8fb856d739-39.11.110.11","Field Msr/Obs","Water",NA,2021-06-06,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS-WSR-1","Wild and Scenic Rivers",NA,"ADVENTURESCIENTISTS-39.11.110.11","Green Wild and Scenic River-39.11.110.11",NA,NA,NA,NA,"39.1146823000","-110.1090854000",NA,NA,NA,NA,"Water Bottle","STORET-930751284",NA,"unknown","Nitrate","None","0.3502","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"LAB ANALYSIS","ADVENTURESCIENTISTS","RMRS LAB",NA,NA,"SR 099",NA,NA,NA,NA,NA,NA,NA,"2022-02-26T13:27:18","STORET",NA,NA,NA,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"39.1146823000","-110.1090854000",NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"unknown","Adventure Scientists' Wild and Scenic Rivers project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",350.2,"UG/L","Numeric","Not Reviewed","Uncensored",39.1146823,-110.1090854,"N","Unknown","Not Reviewed","Accepted","UNKNOWN","NonStandardized","Rejected","NONE","Accepted","NITRATE_NONE_UNKNOWN_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1200","ADVENTURESCIENTISTS","Adventure Scientists (Volunteer)*","ADVENTURESCIENTISTS-f2d680ef-dfe5-4b9b-b0e8-0d14d2d62221-39.11.110.11","Field Msr/Obs","Water",NA,2021-02-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS-WSR-1","Wild and Scenic Rivers",NA,"ADVENTURESCIENTISTS-39.11.110.11","Green Wild and Scenic River-39.11.110.11",NA,NA,NA,NA,"39.1146823000","-110.1090854000",NA,NA,NA,NA,"Water Bottle","STORET-930751571",NA,"unknown","Nitrate","None","0.3356","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"LAB ANALYSIS","ADVENTURESCIENTISTS","RMRS LAB",NA,NA,"SR 080",NA,NA,NA,NA,NA,NA,NA,"2022-02-26T13:27:28","STORET",NA,NA,NA,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"39.1146823000","-110.1090854000",NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"unknown","Adventure Scientists' Wild and Scenic Rivers project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",335.6,"UG/L","Numeric","Not Reviewed","Uncensored",39.1146823,-110.1090854,"N","Unknown","Not Reviewed","Accepted","UNKNOWN","NonStandardized","Rejected","NONE","Accepted","NITRATE_NONE_UNKNOWN_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1201","ADVENTURESCIENTISTS","Adventure Scientists (Volunteer)*","ADVENTURESCIENTISTS-631e5ad4-caea-4dd8-a8cc-db34a0f8216c-38.52.109.99","Field Msr/Obs","Water",NA,2021-05-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS-WSR-1","Wild and Scenic Rivers",NA,"ADVENTURESCIENTISTS-38.52.109.99","Green Wild and Scenic River-38.52.109.99",NA,NA,NA,NA,"38.5242627000","-109.9945675000",NA,NA,NA,NA,"Water Bottle","STORET-930751899",NA,"unknown","Nitrate","None","0.344","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"LAB ANALYSIS","ADVENTURESCIENTISTS","RMRS LAB",NA,NA,"SR 091",NA,NA,NA,NA,NA,NA,NA,"2022-02-26T13:27:37","STORET",NA,NA,NA,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5242627000","-109.9945675000",NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"unknown","Adventure Scientists' Wild and Scenic Rivers project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",344,"UG/L","Numeric","Not Reviewed","Uncensored",38.5242627,-109.9945675,"N","Unknown","Not Reviewed","Accepted","UNKNOWN","NonStandardized","Rejected","NONE","Accepted","NITRATE_NONE_UNKNOWN_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1202","ADVENTURESCIENTISTS","Adventure Scientists (Volunteer)*","ADVENTURESCIENTISTS-16af0477-56b0-449e-9e64-cc758c44bb37-39.11.110.11","Field Msr/Obs","Water",NA,2021-06-06,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"AS-WSR-1","Wild and Scenic Rivers",NA,"ADVENTURESCIENTISTS-39.11.110.11","Green Wild and Scenic River-39.11.110.11",NA,NA,NA,NA,"39.1146823000","-110.1090854000",NA,NA,NA,NA,"Water Bottle","STORET-930753088",NA,"unknown","Nitrate","None","0.3636","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"LAB ANALYSIS","ADVENTURESCIENTISTS","RMRS LAB",NA,NA,"SR 098",NA,NA,NA,NA,NA,NA,NA,"2022-02-26T13:28:01","STORET",NA,NA,NA,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"39.1146823000","-110.1090854000",NA,NA,NA,"GPS Code (Pseudo Range) Differential","WGS84",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"unknown","Adventure Scientists' Wild and Scenic Rivers project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",363.6,"UG/L","Numeric","Not Reviewed","Uncensored",39.1146823,-110.1090854,"N","Unknown","Not Reviewed","Accepted","UNKNOWN","NonStandardized","Rejected","NONE","Accepted","NITRATE_NONE_UNKNOWN_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-01,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900430","MANTUA RES AB DAM 01 Replicate of 4900440",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783181",NA,"as N","Nitrogen","Total","0.484","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C/results/933783181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:57","STORET",7,NA,2021-06-01 17:10:00,NA,"Lake","Replicate of 4900440","16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.484,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-01,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900430","MANTUA RES AB DAM 01 Replicate of 4900440",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783185",NA,"as N","Nitrogen","Dissolved","0.359","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900430-0601-2-C/results/933783185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:57","STORET",7,NA,2021-06-01 17:10:00,NA,"Lake","Replicate of 4900440","16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.359,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-01,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900430","MANTUA RES AB DAM 01 Replicate of 4900440",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783195",NA,"as N","Nitrogen","Total","0.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C/results/933783195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:57","STORET",7,NA,2021-09-01 16:20:00,NA,"Lake","Replicate of 4900440","16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-01,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900430","MANTUA RES AB DAM 01 Replicate of 4900440",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783199",NA,"as N","Nitrogen","Dissolved","0.652","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900430-0901-2-C/results/933783199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:57","STORET",7,NA,2021-09-01 16:20:00,NA,"Lake","Replicate of 4900440","16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.652,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900440","MANTUA RES AB DAM 01",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783209",NA,"as N","Nitrogen","Total","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C/results/933783209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 16:50:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900440","MANTUA RES AB DAM 01",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783213",NA,"as N","Nitrogen","Dissolved","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900440-0601-2-C/results/933783213/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 16:50:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C","Sample-Routine","Water",NA,2021-06-01,"10:00:00","MST",NA,NA,NA,"Bottom","4.95","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900440","MANTUA RES AB DAM 01",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783218",NA,"as N","Nitrogen","Total","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C/results/933783218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 17:00:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",4.95,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C","Sample-Routine","Water",NA,2021-06-01,"10:00:00","MST",NA,NA,NA,"Bottom","4.95","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900440","MANTUA RES AB DAM 01",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783222",NA,"as N","Nitrogen","Dissolved","0.359","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900440-0601-29-C/results/933783222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 17:00:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.359,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",4.95,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900440","MANTUA RES AB DAM 01",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783249",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C/results/933783249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-09-01 16:30:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900440","MANTUA RES AB DAM 01",NA,NA,NA,NA,"41.5013300000","-111.9410600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783253",NA,"as N","Nitrogen","Dissolved","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900440-0901-2-C/results/933783253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-09-01 16:30:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9410600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.94106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900450","MANTUA RES S MIDLAKE 02",NA,NA,NA,NA,"41.5013300000","-111.9268800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783280",NA,"as N","Nitrogen","Total","0.355","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C/results/933783280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 17:20:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.355,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.92688,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900450","MANTUA RES S MIDLAKE 02",NA,NA,NA,NA,"41.5013300000","-111.9268800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783284",NA,"as N","Nitrogen","Dissolved","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900450-0601-2-C/results/933783284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 17:20:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.92688,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C","Sample-Routine","Water",NA,2021-06-01,"10:25:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900450","MANTUA RES S MIDLAKE 02",NA,NA,NA,NA,"41.5013300000","-111.9268800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783289",NA,"as N","Nitrogen","Total","0.364","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C/results/933783289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 17:25:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.364,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.92688,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C","Sample-Routine","Water",NA,2021-06-01,"10:25:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900450","MANTUA RES S MIDLAKE 02",NA,NA,NA,NA,"41.5013300000","-111.9268800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783293",NA,"as N","Nitrogen","Dissolved","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900450-0601-29-C/results/933783293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 17:25:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.92688,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900450","MANTUA RES S MIDLAKE 02",NA,NA,NA,NA,"41.5013300000","-111.9268800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783303",NA,"as N","Nitrogen","Total","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C/results/933783303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-09-01 16:50:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.92688,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900450","MANTUA RES S MIDLAKE 02",NA,NA,NA,NA,"41.5013300000","-111.9268800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783307",NA,"as N","Nitrogen","Dissolved","0.935","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900450-0901-2-C/results/933783307/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-09-01 16:50:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5013300000","-111.9268800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.935,"MG/L","Numeric","Not Reviewed","Uncensored",41.50133,-111.92688,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900460","MANTUA RES N MIDLAKE 03",NA,NA,NA,NA,"41.5082700000","-111.9299400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783317",NA,"as N","Nitrogen","Total","0.307","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C/results/933783317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 17:35:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5082700000","-111.9299400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.307,"MG/L","Numeric","Not Reviewed","Uncensored",41.50827,-111.92994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900460","MANTUA RES N MIDLAKE 03",NA,NA,NA,NA,"41.5082700000","-111.9299400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783321",NA,"as N","Nitrogen","Dissolved","0.317","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900460-0601-2-C/results/933783321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:58","STORET",7,NA,2021-06-01 17:35:00,NA,"Lake",NA,"16010204",NA,NA,NA,NA,"41.5082700000","-111.9299400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.317,"MG/L","Numeric","Not Reviewed","Uncensored",41.50827,-111.92994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900470-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783344",NA,"as N","Nitrogen","Total","0.919","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900470-0407-4-C/results/933783344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-04-07 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.919,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900470-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783347",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900470-0407-4-C/results/933783347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-04-07 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900470-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783353",NA,"as N","Nitrogen","Total","0.547","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900470-0505-4-C/results/933783353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-05-05 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.547,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900470-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783356",NA,"as N","Nitrogen","Dissolved","0.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900470-0505-4-C/results/933783356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-05-05 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.81,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783366",NA,"as N","Nitrogen","Total","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C/results/933783366/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-06-01 18:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783370",NA,"as N","Nitrogen","Dissolved","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900470-0601-4-C/results/933783370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-06-01 18:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900470-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"17:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783393",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900470-0823-4-C/results/933783393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-08-24 00:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900470-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"17:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783396",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900470-0823-4-C/results/933783396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-08-24 00:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783423",NA,"as N","Nitrogen","Total","0.858","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C/results/933783423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-09-01 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.858,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783427",NA,"as N","Nitrogen","Dissolved","0.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900470-0901-4-C/results/933783427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:14:59","STORET",7,NA,2021-09-01 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900470-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"14:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783450",NA,"as N","Nitrogen","Total","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900470-0929-4-C/results/933783450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-09-29 21:08:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900470-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"14:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783453",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900470-0929-4-C/results/933783453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-09-29 21:08:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900510-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783476",NA,"as N","Nitrogen","Total","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900510-0407-4-C/results/933783476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-04-07 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900510-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783479",NA,"as N","Nitrogen","Dissolved","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900510-0407-4-C/results/933783479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-04-07 19:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900510-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783485",NA,"as N","Nitrogen","Total","0.563","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900510-0505-4-C/results/933783485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-05-05 20:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.563,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900510-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783488",NA,"as N","Nitrogen","Dissolved","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900510-0505-4-C/results/933783488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-05-05 20:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783498",NA,"as N","Nitrogen","Total","0.693","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C/results/933783498/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-06-01 18:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.693,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783502",NA,"as N","Nitrogen","Dissolved","0.816","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4900510-0601-4-C/results/933783502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-06-01 18:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.816,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900510-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783525",NA,"as N","Nitrogen","Total","0.906","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900510-0610-4-C/results/933783525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-06-10 20:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.906,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900510-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783528",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900510-0610-4-C/results/933783528/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-06-10 20:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900510-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783551",NA,"as N","Nitrogen","Total","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900510-0721-4-C/results/933783551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-07-21 18:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900510-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783554",NA,"as N","Nitrogen","Dissolved","0.469","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900510-0721-4-C/results/933783554/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-07-21 18:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.469,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900510-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783560",NA,"as N","Nitrogen","Total","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900510-0811-4-C/results/933783560/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-08-11 22:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900510-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783563",NA,"as N","Nitrogen","Dissolved","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900510-0811-4-C/results/933783563/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:00","STORET",7,NA,2021-08-11 22:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783590",NA,"as N","Nitrogen","Total","0.579","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C/results/933783590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-09-01 17:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.579,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783594",NA,"as N","Nitrogen","Dissolved","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4900510-0901-4-C/results/933783594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-09-01 17:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900510-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783617",NA,"as N","Nitrogen","Total","0.651","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900510-0929-4-C/results/933783617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-09-29 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.651,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900510-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900510","MAPLE CK AB MANTUA RES",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783620",NA,"as N","Nitrogen","Dissolved","0.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900510-0929-4-C/results/933783620/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-09-29 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900511-0407-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-07,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783626",NA,"as N","Nitrogen","Total","0.666","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900511-0407-4-C/results/933783626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-04-07 19:40:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.666,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900511-0407-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-07,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783629",NA,"as N","Nitrogen","Dissolved","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900511-0407-4-C/results/933783629/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-04-07 19:40:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900511-0505-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-05,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783652",NA,"as N","Nitrogen","Total","0.577","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900511-0505-4-C/results/933783652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-05-05 20:40:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.577,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900511-0505-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-05,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783655",NA,"as N","Nitrogen","Dissolved","0.685","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900511-0505-4-C/results/933783655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-05-05 20:40:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.685,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900511-0610-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783661",NA,"as N","Nitrogen","Total","0.872","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900511-0610-4-C/results/933783661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-06-10 21:00:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.872,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900511-0610-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783664",NA,"as N","Nitrogen","Dissolved","0.793","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900511-0610-4-C/results/933783664/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-06-10 21:00:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.793,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900511-0721-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-21,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783687",NA,"as N","Nitrogen","Total","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900511-0721-4-C/results/933783687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:01","STORET",7,NA,2021-07-21 18:30:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900511-0721-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-21,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783690",NA,"as N","Nitrogen","Dissolved","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900511-0721-4-C/results/933783690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-07-21 18:30:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900511-0811-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-11,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783696",NA,"as N","Nitrogen","Total","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900511-0811-4-C/results/933783696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-08-11 22:50:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900511-0811-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-11,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783699",NA,"as N","Nitrogen","Dissolved","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900511-0811-4-C/results/933783699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-08-11 22:50:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900511-0929-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-29,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783722",NA,"as N","Nitrogen","Total","0.655","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900511-0929-4-C/results/933783722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-09-29 21:35:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.655,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900511-0929-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-29,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900511","MAPLE CK AB MANTUA RES Replicate of 4900510",NA,NA,NA,NA,"41.4966200000","-111.9266100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783725",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900511-0929-4-C/results/933783725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-09-29 21:35:00,NA,"River/Stream","Replicate of 4900510","16010204",NA,NA,NA,NA,"41.4966200000","-111.9266100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.49662,-111.92661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0405-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-05,"17:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783747","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0405-4-C/results/933783747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-04-06 00:33:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0405-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-05,"17:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783750","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0405-4-C/results/933783750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-04-06 00:33:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0406-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-06,"17:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783790","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0406-4-C/results/933783790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-04-07 00:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0406-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-06,"17:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783793","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0406-4-C/results/933783793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-04-07 00:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0407-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-07,"16:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783833","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0407-4-C/results/933783833/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-04-07 23:35:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900751-0407-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-07,"16:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783836",NA,"as N","Nitrogen","Dissolved","0.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900751-0407-4-C/results/933783836/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-04-07 23:35:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0517-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-17,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783842","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0517-4-C/results/933783842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-05-18 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0517-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-17,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783845",NA,"as N","Nitrogen","Dissolved","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0517-4-C/results/933783845/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:02","STORET",7,NA,2021-05-18 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0518-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-18,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783885","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0518-4-C/results/933783885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-05-19 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0518-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-18,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783888",NA,"as N","Nitrogen","Dissolved","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0518-4-C/results/933783888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-05-19 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0519-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-19,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783894","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0519-4-C/results/933783894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-05-20 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900751-0519-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-19,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783897",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900751-0519-4-C/results/933783897/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-05-20 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0607-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-07,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783903","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0607-4-C/results/933783903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-06-07 16:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0607-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-07,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783906",NA,"as N","Nitrogen","Dissolved","0.119","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0607-4-C/results/933783906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-06-07 16:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.119,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0608-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-08,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783946","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0608-4-C/results/933783946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-06-08 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0608-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-08,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783949","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0608-4-C/results/933783949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-06-08 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0609-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-09,"08:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783972","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0609-4-C/results/933783972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-06-09 15:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900751-0609-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-09,"08:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783975","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900751-0609-4-C/results/933783975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-06-09 15:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4900751-0621-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-21,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933783998","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4900751-0621-4-C/results/933783998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-06-21 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4900751-0621-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-21,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784001",NA,"as N","Nitrogen","Dissolved","0.091","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4900751-0621-4-C/results/933784001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:03","STORET",7,NA,2021-06-21 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.091,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4900751-0622-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-22,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784024","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4900751-0622-4-C/results/933784024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-06-23 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4900751-0622-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-22,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784027",NA,"as N","Nitrogen","Dissolved","0.099","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4900751-0622-4-C/results/933784027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-06-23 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.099,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4900751-0706-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-06,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784067","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4900751-0706-4-C/results/933784067/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-07-06 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4900751-0706-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-06,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784070","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4900751-0706-4-C/results/933784070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-07-06 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4900751-0708-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784110","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4900751-0708-4-C/results/933784110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-07-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4900751-0708-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784113","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4900751-0708-4-C/results/933784113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-07-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-19,"17:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784136","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0719-4-C/results/933784136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-07-20 00:20:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-19,"17:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784139","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0719-4-C/results/933784139/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-07-20 00:20:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-20,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784179","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0720-4-C/results/933784179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-07-20 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-20,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784182","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0720-4-C/results/933784182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:04","STORET",7,NA,2021-07-20 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0721-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-21,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784188","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0721-4-C/results/933784188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-07-21 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900751-0721-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-21,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784191","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900751-0721-4-C/results/933784191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-07-21 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0810-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-10,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784197","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0810-4-C/results/933784197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-11 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0810-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-10,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784200","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0810-4-C/results/933784200/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-11 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0811-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-11,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784239","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0811-4-C/results/933784239/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-11 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0811-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-11,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784242","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0811-4-C/results/933784242/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-11 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0812-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-12,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784265","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0812-4-C/results/933784265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-12 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900751-0812-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-12,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784268","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900751-0812-4-C/results/933784268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-12 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900751-0823-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-23,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784291",NA,"as N","Nitrogen","Total","0.1","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900751-0823-4-C/results/933784291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-23 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.1,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900751-0823-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-23,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784294","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900751-0823-4-C/results/933784294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-23 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900751-0823-4/1-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-23,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784317","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900751-0823-4%2F1-C/results/933784317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-24 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4900751-0823-4/1-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-23,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784320",NA,"as N","Nitrogen","Dissolved","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4900751-0823-4%2F1-C/results/933784320/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-08-24 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0921-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-21,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784343",NA,"as N","Nitrogen","Total","0.14","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0921-4-C/results/933784343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-09-22 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.14,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0921-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-21,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784346","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0921-4-C/results/933784346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:05","STORET",7,NA,2021-09-22 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0922-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-22,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784386","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0922-4-C/results/933784386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-09-23 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0922-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-22,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784389","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0922-4-C/results/933784389/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-09-23 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0923-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-23,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784395","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0923-4-C/results/933784395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-09-23 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900751-0923-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-23,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784398","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900751-0923-4-C/results/933784398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-09-23 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0405-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-05,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784404","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0405-4-C/results/933784404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-04-06 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0405-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-05,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784407","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0405-4-C/results/933784407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-04-06 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0406-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-06,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784430","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0406-4-C/results/933784430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-04-07 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0406-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-06,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784433","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0406-4-C/results/933784433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-04-07 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0407-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784490","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0407-4-C/results/933784490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-04-07 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4900753-0407-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784493",NA,"as N","Nitrogen","Dissolved","0.327","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4900753-0407-4-C/results/933784493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:06","STORET",7,NA,2021-04-07 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.327,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0503-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-03,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784499","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0503-4-C/results/933784499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-05-03 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0503-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-03,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784502","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0503-4-C/results/933784502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-05-03 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0504-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-04,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784508","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0504-4-C/results/933784508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-05-05 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0504-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-04,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784511","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0504-4-C/results/933784511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-05-05 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0505-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-05,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784551","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0505-4-C/results/933784551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-05-05 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4900753-0505-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-05,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784554","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4900753-0505-4-C/results/933784554/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-05-05 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0607-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-07,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784560","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0607-4-C/results/933784560/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-06-08 02:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0607-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-07,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784563","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0607-4-C/results/933784563/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-06-08 02:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0608-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-08,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784586","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0608-4-C/results/933784586/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-06-08 23:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0608-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-08,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784589",NA,"as N","Nitrogen","Dissolved","0.102","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0608-4-C/results/933784589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-06-08 23:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.102,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0611-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-11,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784629","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0611-4-C/results/933784629/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-06-11 16:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4900753-0611-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-11,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784632","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4900753-0611-4-C/results/933784632/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:07","STORET",7,NA,2021-06-11 16:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-19,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784655","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0719-4-C/results/933784655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-07-20 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-19,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784658","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0719-4-C/results/933784658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-07-20 00:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-20,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784698","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0720-4-C/results/933784698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-07-21 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-20,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784701",NA,"as N","Nitrogen","Dissolved","0.181","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0720-4-C/results/933784701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-07-21 01:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.181,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0721-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-21,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784707","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0721-4-C/results/933784707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-07-21 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4900753-0721-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-21,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784710","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4900753-0721-4-C/results/933784710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-07-21 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0809-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-09,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784716","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0809-4-C/results/933784716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-08-10 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0809-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-09,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784719",NA,"as N","Nitrogen","Dissolved","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0809-4-C/results/933784719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-08-10 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0810-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-10,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784742","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0810-4-C/results/933784742/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-08-10 23:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0810-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-10,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784745",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0810-4-C/results/933784745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-08-10 23:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0811-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-11,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784784","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0811-4-C/results/933784784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-08-11 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4900753-0811-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-11,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784787","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4900753-0811-4-C/results/933784787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:08","STORET",7,NA,2021-08-11 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0927-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-27,"18:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784810","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0927-4-C/results/933784810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-28 01:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0927-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-27,"18:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784813","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0927-4-C/results/933784813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-28 01:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0928-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784819","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0928-4-C/results/933784819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0928-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-28,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784822","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0928-4-C/results/933784822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-29 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0929-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-29,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784862","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0929-4-C/results/933784862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-29 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4900753-0929-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-29,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900753","EQUIPMENT BLANK Bear River Watershed Crew 2",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784865","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4900753-0929-4-C/results/933784865/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-29 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-25,"14:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784875","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C/results/933784875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-05-25 21:59:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-25,"14:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784878","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4900754-0525-2-C/results/933784878/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-05-25 21:59:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-21,"17:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784888",NA,"as N","Nitrogen","Total","0.126","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C/results/933784888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-06-22 00:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.126,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-21,"17:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784891","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4900754-0621-2-C/results/933784891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-06-22 00:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-26,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784901","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C/results/933784901/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-07-26 23:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-26,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784904","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4900754-0726-2-C/results/933784904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-07-26 23:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-01,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784914",NA,"as N","Nitrogen","Total","0.164","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C/results/933784914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-01 21:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.164,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-01,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784917",NA,"as N","Nitrogen","Dissolved","0.119","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4900754-0901-2-C/results/933784917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-01 21:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.119,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-27,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784927","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C/results/933784927/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-27 19:25:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-27,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784930",NA,"as N","Nitrogen","Dissolved","0.083","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4900754-0927-2-C/results/933784930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-09-27 19:25:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.083,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-25,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784940","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C/results/933784940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-05-25 20:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-25,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784943","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4900755-0525-4-C/results/933784943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:09","STORET",7,NA,2021-05-25 20:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-21,"13:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784953",NA,"as N","Nitrogen","Total","0.095","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C/results/933784953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-06-21 20:31:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.095,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-21,"13:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784956","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4900755-0621-4-C/results/933784956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-06-21 20:31:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-26,"13:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784965","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C/results/933784965/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-07-26 20:08:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-26,"13:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784968","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4900755-0726-4-C/results/933784968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-07-26 20:08:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-01,"15:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784977","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C/results/933784977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-09-01 22:43:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-01,"15:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784980","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4900755-0901-4-C/results/933784980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-09-01 22:43:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-27,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784990","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C/results/933784990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-09-27 22:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-27,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933784993",NA,"as N","Nitrogen","Dissolved","0.131","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4900755-0927-4-C/results/933784993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-09-27 22:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.131,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901050-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785055",NA,"as N","Nitrogen","Total","0.646","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901050-0405-4-C/results/933785055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-04-05 18:15:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.646,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901050-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785058",NA,"as N","Nitrogen","Dissolved","0.506","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901050-0405-4-C/results/933785058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-04-05 18:15:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.506,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901050-0517-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-17,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785081",NA,"as N","Nitrogen","Total","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901050-0517-4-C/results/933785081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-05-17 17:50:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901050-0517-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-17,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785084",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901050-0517-4-C/results/933785084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-05-17 17:50:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901050-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785090",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901050-0607-4-C/results/933785090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-06-07 18:05:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901050-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785093",NA,"as N","Nitrogen","Dissolved","0.843","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901050-0607-4-C/results/933785093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:10","STORET",7,NA,2021-06-07 18:05:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.843,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901050-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785116",NA,"as N","Nitrogen","Total","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901050-0719-4-C/results/933785116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-07-19 18:25:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901050-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785119",NA,"as N","Nitrogen","Dissolved","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901050-0719-4-C/results/933785119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-07-19 18:25:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901050-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785125",NA,"as N","Nitrogen","Total","1.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901050-0810-4-C/results/933785125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-08-10 16:50:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.96,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901050-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785128",NA,"as N","Nitrogen","Dissolved","1.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901050-0810-4-C/results/933785128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-08-10 16:50:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901050-0921-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-21,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785150",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901050-0921-4-C/results/933785150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-09-21 16:45:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901050-0921-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-21,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901050","BEAR R NEAR CORINNE AT U83 XING Replicate of 4901100",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785153",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901050-0921-4-C/results/933785153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-09-21 16:45:00,NA,"River/Stream","Replicate of 4901100","16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901100-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785159",NA,"as N","Nitrogen","Total","0.664","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901100-0405-4-C/results/933785159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-04-05 18:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.664,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901100-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785162",NA,"as N","Nitrogen","Dissolved","0.527","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901100-0405-4-C/results/933785162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-04-05 18:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.527,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901100-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785185",NA,"as N","Nitrogen","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901100-0517-4-C/results/933785185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-05-17 17:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901100-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785188",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901100-0517-4-C/results/933785188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-05-17 17:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901100-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785194",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901100-0607-4-C/results/933785194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-06-07 17:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901100-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785197",NA,"as N","Nitrogen","Dissolved","0.867","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901100-0607-4-C/results/933785197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-06-07 17:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.867,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901100-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785220",NA,"as N","Nitrogen","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901100-0706-4-C/results/933785220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-07-06 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901100-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785223",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901100-0706-4-C/results/933785223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:11","STORET",7,NA,2021-07-06 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901100-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785246",NA,"as N","Nitrogen","Total","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901100-0719-4-C/results/933785246/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-07-19 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901100-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785249",NA,"as N","Nitrogen","Dissolved","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901100-0719-4-C/results/933785249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-07-19 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901100-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785255",NA,"as N","Nitrogen","Total","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901100-0810-4-C/results/933785255/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-08-10 16:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901100-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785258",NA,"as N","Nitrogen","Dissolved","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901100-0810-4-C/results/933785258/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-08-10 16:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901100-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785280",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901100-0921-4-C/results/933785280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-09-21 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901100-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901100","BEAR R NEAR CORINNE AT U83 XING",NA,NA,NA,NA,"41.5458200000","-112.0961400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785283",NA,"as N","Nitrogen","Dissolved","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901100-0921-4-C/results/933785283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-09-21 16:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5458200000","-112.0961400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.54582,-112.09614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901180-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785289",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901180-0405-4-C/results/933785289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-04-05 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901180-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785292",NA,"as N","Nitrogen","Dissolved","0.974","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901180-0405-4-C/results/933785292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-04-05 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.974,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901180-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785332",NA,"as N","Nitrogen","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901180-0517-4-C/results/933785332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-05-17 16:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901180-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785335",NA,"as N","Nitrogen","Dissolved","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901180-0517-4-C/results/933785335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-05-17 16:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901180-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785375",NA,"as N","Nitrogen","Total","2.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901180-0607-4-C/results/933785375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-06-07 16:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901180-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785378",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901180-0607-4-C/results/933785378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:12","STORET",7,NA,2021-06-07 16:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901180-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785418",NA,"as N","Nitrogen","Total","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901180-0719-4-C/results/933785418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-07-19 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901180-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785421",NA,"as N","Nitrogen","Dissolved","2.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901180-0719-4-C/results/933785421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-07-19 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901180-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785427",NA,"as N","Nitrogen","Total","4.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901180-0810-4-C/results/933785427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-08-10 15:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901180-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785430",NA,"as N","Nitrogen","Dissolved","4.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901180-0810-4-C/results/933785430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-08-10 15:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901180-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785469",NA,"as N","Nitrogen","Total","4.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901180-0921-4-C/results/933785469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-09-21 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901180-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901180","BLACK SLOUGH BL BRIGHAM CY WWTP @ FOREST RD XING",NA,NA,NA,NA,"41.5096600000","-112.0774500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785472",NA,"as N","Nitrogen","Dissolved","5.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901180-0921-4-C/results/933785472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-09-21 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5096600000","-112.0774500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.50966,-112.07745,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901190-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785513",NA,"as N","Nitrogen","Total","0.394","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901190-0405-4-C/results/933785513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-04-05 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.394,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901190-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785516",NA,"as N","Nitrogen","Dissolved","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901190-0405-4-C/results/933785516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-04-05 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901190-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785556",NA,"as N","Nitrogen","Total","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901190-0517-4-C/results/933785556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-05-17 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901190-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785559",NA,"as N","Nitrogen","Dissolved","0.494","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901190-0517-4-C/results/933785559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:13","STORET",7,NA,2021-05-17 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.494,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901190-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785600",NA,"as N","Nitrogen","Total","0.543","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901190-0607-4-C/results/933785600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:14","STORET",7,NA,2021-06-07 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.543,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901190-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785603",NA,"as N","Nitrogen","Dissolved","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901190-0607-4-C/results/933785603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:14","STORET",7,NA,2021-06-07 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901190-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785644",NA,"as N","Nitrogen","Total","0.552","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901190-0622-4-C/results/933785644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:14","STORET",7,NA,2021-06-22 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.552,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901190-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785647",NA,"as N","Nitrogen","Dissolved","0.495","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901190-0622-4-C/results/933785647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:14","STORET",7,NA,2021-06-22 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.495,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901190-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785688",NA,"as N","Nitrogen","Total","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901190-0810-4-C/results/933785688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:14","STORET",7,NA,2021-08-10 15:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901190-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785691",NA,"as N","Nitrogen","Dissolved","0.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901190-0810-4-C/results/933785691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:14","STORET",7,NA,2021-08-10 15:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4901190-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785730",NA,"as N","Nitrogen","Total","0.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4901190-0823-4-C/results/933785730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:15","STORET",7,NA,2021-08-23 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4901190-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785733",NA,"as N","Nitrogen","Dissolved","0.891","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4901190-0823-4-C/results/933785733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:15","STORET",7,NA,2021-08-23 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.891,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901200-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785757",NA,"as N","Nitrogen","Total","2.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901200-0405-4-C/results/933785757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:15","STORET",7,NA,2021-04-05 17:40:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901200-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785760",NA,"as N","Nitrogen","Dissolved","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901200-0405-4-C/results/933785760/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:15","STORET",7,NA,2021-04-05 17:40:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901200-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785801",NA,"as N","Nitrogen","Total","3.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901200-0517-4-C/results/933785801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:15","STORET",7,NA,2021-05-17 17:20:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901200-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785804",NA,"as N","Nitrogen","Dissolved","3.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901200-0517-4-C/results/933785804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:15","STORET",7,NA,2021-05-17 17:20:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901200-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785845",NA,"as N","Nitrogen","Total","3.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901200-0607-4-C/results/933785845/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:15","STORET",7,NA,2021-06-07 17:25:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901200-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785848",NA,"as N","Nitrogen","Dissolved","3.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901200-0607-4-C/results/933785848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:15","STORET",7,NA,2021-06-07 17:25:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901200-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785889",NA,"as N","Nitrogen","Total","6.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901200-0622-4-C/results/933785889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:15","STORET",7,NA,2021-06-22 16:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901200-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785892",NA,"as N","Nitrogen","Dissolved","6.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901200-0622-4-C/results/933785892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:16","STORET",7,NA,2021-06-22 16:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901200-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785933",NA,"as N","Nitrogen","Total","9.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901200-0719-4-C/results/933785933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:16","STORET",7,NA,2021-07-19 17:50:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901200-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785936",NA,"as N","Nitrogen","Dissolved","8.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901200-0719-4-C/results/933785936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:16","STORET",7,NA,2021-07-19 17:50:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901200-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785977",NA,"as N","Nitrogen","Total","18.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901200-0810-4-C/results/933785977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:16","STORET",7,NA,2021-08-10 16:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901200-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933785980",NA,"as N","Nitrogen","Dissolved","18.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901200-0810-4-C/results/933785980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:16","STORET",7,NA,2021-08-10 16:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901200-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"08:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786020",NA,"as N","Nitrogen","Total","21.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901200-0921-4-C/results/933786020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:16","STORET",7,NA,2021-09-21 15:35:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901200-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"08:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901200","BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5242200000","-112.0454200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786023",NA,"as N","Nitrogen","Dissolved","21.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901200-0921-4-C/results/933786023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:16","STORET",7,NA,2021-09-21 15:35:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.5242200000","-112.0454200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.52422,-112.04542,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901225-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786063",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901225-0405-4-C/results/933786063/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:17","STORET",7,NA,2021-04-05 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901225-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786066",NA,"as N","Nitrogen","Dissolved","0.877","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901225-0405-4-C/results/933786066/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:17","STORET",7,NA,2021-04-05 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.877,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901225-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786106",NA,"as N","Nitrogen","Total","3.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901225-0517-4-C/results/933786106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:17","STORET",7,NA,2021-05-17 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901225-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786109",NA,"as N","Nitrogen","Dissolved","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901225-0517-4-C/results/933786109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:17","STORET",7,NA,2021-05-17 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901225-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786149",NA,"as N","Nitrogen","Total","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901225-0607-4-C/results/933786149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:17","STORET",7,NA,2021-06-07 17:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901225-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786152",NA,"as N","Nitrogen","Dissolved","3.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901225-0607-4-C/results/933786152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:17","STORET",7,NA,2021-06-07 17:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901225-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786192",NA,"as N","Nitrogen","Total","4.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901225-0622-4-C/results/933786192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:17","STORET",7,NA,2021-06-22 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901225-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786195",NA,"as N","Nitrogen","Dissolved","4.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901225-0622-4-C/results/933786195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:17","STORET",7,NA,2021-06-22 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901225-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786235",NA,"as N","Nitrogen","Total","8.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901225-0719-4-C/results/933786235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:18","STORET",7,NA,2021-07-19 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901225-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786238",NA,"as N","Nitrogen","Dissolved","8.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901225-0719-4-C/results/933786238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:18","STORET",7,NA,2021-07-19 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901225-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786278",NA,"as N","Nitrogen","Total","18.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901225-0810-4-C/results/933786278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:18","STORET",7,NA,2021-08-10 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901225-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786281",NA,"as N","Nitrogen","Dissolved","18.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901225-0810-4-C/results/933786281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:18","STORET",7,NA,2021-08-10 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901225-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786320",NA,"as N","Nitrogen","Total","19.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901225-0921-4-C/results/933786320/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:18","STORET",7,NA,2021-09-21 15:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901225-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901225","Box Elder Ck BL Confluence Brigham City Discharge",NA,NA,NA,NA,"41.5244000000","-112.0578000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786323",NA,"as N","Nitrogen","Dissolved","21.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901225-0921-4-C/results/933786323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:18","STORET",7,NA,2021-09-21 15:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5244000000","-112.0578000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.5244,-112.0578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901431-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786363",NA,"as N","Nitrogen","Total","6.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901431-0405-4-C/results/933786363/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-04-05 20:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901431-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786366",NA,"as N","Nitrogen","Dissolved","4.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901431-0405-4-C/results/933786366/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-04-05 20:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901431-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786388",NA,"as N","Nitrogen","Total","4.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901431-0517-4-C/results/933786388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-05-17 19:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.79,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901431-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786391",NA,"as N","Nitrogen","Dissolved","3.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901431-0517-4-C/results/933786391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-05-17 19:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.98,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901431-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786397",NA,"as N","Nitrogen","Total","6.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901431-0607-4-C/results/933786397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-06-07 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901431-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786400",NA,"as N","Nitrogen","Dissolved","5.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901431-0607-4-C/results/933786400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-06-07 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901431-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786423",NA,"as N","Nitrogen","Total","4.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901431-0719-4-C/results/933786423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-07-19 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901431-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786426",NA,"as N","Nitrogen","Dissolved","4.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901431-0719-4-C/results/933786426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-07-19 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901431-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786432",NA,"as N","Nitrogen","Total","2.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901431-0810-4-C/results/933786432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-08-10 18:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.96,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901431-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786435",NA,"as N","Nitrogen","Dissolved","3.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901431-0810-4-C/results/933786435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-08-10 18:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901431-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786457",NA,"as N","Nitrogen","Total","2.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901431-0921-4-C/results/933786457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-09-21 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901431-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901431","SALT CK AT 4600 NORTH",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786460",NA,"as N","Nitrogen","Dissolved","2.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901431-0921-4-C/results/933786460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-09-21 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.81,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901432-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786466",NA,"as N","Nitrogen","Total","6.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901432-0405-4-C/results/933786466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-04-05 20:15:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",6.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901432-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786469",NA,"as N","Nitrogen","Dissolved","6.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901432-0405-4-C/results/933786469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-04-05 20:15:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",6.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901432-0517-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786492",NA,"as N","Nitrogen","Total","4.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901432-0517-4-C/results/933786492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-05-17 19:20:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901432-0517-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786495",NA,"as N","Nitrogen","Dissolved","4.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901432-0517-4-C/results/933786495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-05-17 19:20:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901432-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786501",NA,"as N","Nitrogen","Total","5.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901432-0607-4-C/results/933786501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-06-07 19:25:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",5.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901432-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786504",NA,"as N","Nitrogen","Dissolved","5.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901432-0607-4-C/results/933786504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:19","STORET",7,NA,2021-06-07 19:25:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",5.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901432-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786527",NA,"as N","Nitrogen","Total","4.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901432-0719-4-C/results/933786527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-07-19 20:05:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901432-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786530",NA,"as N","Nitrogen","Dissolved","4.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901432-0719-4-C/results/933786530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-07-19 20:05:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901432-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786536",NA,"as N","Nitrogen","Total","2.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901432-0810-4-C/results/933786536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-08-10 18:35:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901432-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786539",NA,"as N","Nitrogen","Dissolved","2.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901432-0810-4-C/results/933786539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-08-10 18:35:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901432-0921-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-21,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786561",NA,"as N","Nitrogen","Total","2.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901432-0921-4-C/results/933786561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-09-21 18:50:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901432-0921-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-21,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901432","SALT CK AT 4600 NORTH Replicate of 4901431",NA,NA,NA,NA,"41.5933500000","-112.0866400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786564",NA,"as N","Nitrogen","Dissolved","2.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901432-0921-4-C/results/933786564/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-09-21 18:50:00,NA,"River/Stream","Replicate of 4901431","16010204",NA,NA,NA,NA,"41.5933500000","-112.0866400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.59335,-112.08664,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901600-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786570",NA,"as N","Nitrogen","Total","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901600-0405-4-C/results/933786570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-04-05 19:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901600-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786573",NA,"as N","Nitrogen","Dissolved","0.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901600-0405-4-C/results/933786573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-04-05 19:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901600-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786596",NA,"as N","Nitrogen","Total","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901600-0517-4-C/results/933786596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-05-17 18:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901600-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786599",NA,"as N","Nitrogen","Dissolved","0.462","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901600-0517-4-C/results/933786599/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-05-17 18:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.462,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901600-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786605",NA,"as N","Nitrogen","Total","0.704","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901600-0607-4-C/results/933786605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-06-07 19:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.704,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901600-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786608",NA,"as N","Nitrogen","Dissolved","0.893","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901600-0607-4-C/results/933786608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-06-07 19:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.893,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901600-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786631",NA,"as N","Nitrogen","Total","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901600-0719-4-C/results/933786631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-07-19 19:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901600-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786634",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901600-0719-4-C/results/933786634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-07-19 19:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901600-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786640",NA,"as N","Nitrogen","Total","0.895","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901600-0810-4-C/results/933786640/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-08-10 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.895,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901600-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786643",NA,"as N","Nitrogen","Dissolved","0.878","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901600-0810-4-C/results/933786643/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:20","STORET",7,NA,2021-08-10 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.878,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901600-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786665",NA,"as N","Nitrogen","Total","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901600-0921-4-C/results/933786665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-09-21 18:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.869,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901600-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901600","BEAR R S OF BEAR R CITY",NA,NA,NA,NA,"41.6148400000","-112.1183300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786668",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901600-0921-4-C/results/933786668/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-09-21 18:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6148400000","-112.1183300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.61484,-112.11833,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901700-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786674",NA,"as N","Nitrogen","Total","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901700-0405-4-C/results/933786674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-04-05 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901700-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786677",NA,"as N","Nitrogen","Dissolved","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901700-0405-4-C/results/933786677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-04-05 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901700-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786700",NA,"as N","Nitrogen","Total","0.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901700-0517-4-C/results/933786700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-05-17 19:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901700-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786703",NA,"as N","Nitrogen","Dissolved","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901700-0517-4-C/results/933786703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-05-17 19:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901700-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786709",NA,"as N","Nitrogen","Total","0.771","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901700-0607-4-C/results/933786709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-06-07 19:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.771,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901700-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786712",NA,"as N","Nitrogen","Dissolved","0.956","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901700-0607-4-C/results/933786712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-06-07 19:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.956,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901700-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786735",NA,"as N","Nitrogen","Total","4.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901700-0719-4-C/results/933786735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-07-19 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901700-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786738",NA,"as N","Nitrogen","Dissolved","4.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901700-0719-4-C/results/933786738/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-07-19 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901700-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786744",NA,"as N","Nitrogen","Total","0.697","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901700-0810-4-C/results/933786744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-08-10 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.697,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901700-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786747",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901700-0810-4-C/results/933786747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-08-10 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901700-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786769",NA,"as N","Nitrogen","Total","0.643","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901700-0921-4-C/results/933786769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-09-21 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.643,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901700-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901700","BEAR R AT I-15 XING 2 MI NE OF HONEYVILLE",NA,NA,NA,NA,"41.6516000000","-112.1138400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786772",NA,"as N","Nitrogen","Dissolved","0.977","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901700-0921-4-C/results/933786772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-09-21 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6516000000","-112.1138400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.977,"MG/L","Numeric","Not Reviewed","Uncensored",41.6516,-112.11384,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901730-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786778",NA,"as N","Nitrogen","Total","0.648","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901730-0405-4-C/results/933786778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-04-05 21:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.648,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901730-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786781",NA,"as N","Nitrogen","Dissolved","0.579","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901730-0405-4-C/results/933786781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-04-05 21:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.579,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901730-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786804",NA,"as N","Nitrogen","Total","0.462","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901730-0517-4-C/results/933786804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-05-17 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.462,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901730-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786807",NA,"as N","Nitrogen","Dissolved","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901730-0517-4-C/results/933786807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:21","STORET",7,NA,2021-05-17 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901730-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786813",NA,"as N","Nitrogen","Total","0.628","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901730-0607-4-C/results/933786813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-06-07 21:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.628,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901730-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786816",NA,"as N","Nitrogen","Dissolved","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901730-0607-4-C/results/933786816/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-06-07 21:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901730-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786839",NA,"as N","Nitrogen","Total","0.706","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901730-0719-4-C/results/933786839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-07-19 21:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.706,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901730-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786842",NA,"as N","Nitrogen","Dissolved","0.649","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901730-0719-4-C/results/933786842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-07-19 21:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.649,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901730-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786848",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901730-0810-4-C/results/933786848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-08-10 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901730-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786851",NA,"as N","Nitrogen","Dissolved","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901730-0810-4-C/results/933786851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-08-10 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901730-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786873",NA,"as N","Nitrogen","Total","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901730-0921-4-C/results/933786873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-09-21 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901730-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901730","Bear River @ SR 102",NA,NA,NA,NA,"41.7132500000","-112.1170500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786876",NA,"as N","Nitrogen","Dissolved","0.584","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901730-0921-4-C/results/933786876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-09-21 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7132500000","-112.1170500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.584,"MG/L","Numeric","Not Reviewed","Uncensored",41.71325,-112.11705,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901790-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786882",NA,"as N","Nitrogen","Total","0.812","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901790-0406-4-C/results/933786882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-04-06 16:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.812,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901790-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786885",NA,"as N","Nitrogen","Dissolved","0.693","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901790-0406-4-C/results/933786885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-04-06 16:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.693,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901790-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786908",NA,"as N","Nitrogen","Total","0.483","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901790-0518-4-C/results/933786908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-05-18 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.483,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901790-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786911",NA,"as N","Nitrogen","Dissolved","0.427","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901790-0518-4-C/results/933786911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-05-18 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.427,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901790-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786917",NA,"as N","Nitrogen","Total","0.639","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901790-0608-4-C/results/933786917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-06-08 16:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.639,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901790-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786920",NA,"as N","Nitrogen","Dissolved","0.654","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901790-0608-4-C/results/933786920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-06-08 16:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.654,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901790-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786943",NA,"as N","Nitrogen","Total","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901790-0720-4-C/results/933786943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:22","STORET",7,NA,2021-07-20 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901790-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786946",NA,"as N","Nitrogen","Dissolved","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901790-0720-4-C/results/933786946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-07-20 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901790-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786952",NA,"as N","Nitrogen","Total","0.489","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901790-0811-4-C/results/933786952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-08-11 15:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.489,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901790-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786955",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901790-0811-4-C/results/933786955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-08-11 15:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901790-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786978",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901790-0922-4-C/results/933786978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-09-22 16:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901790-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901790","BEAR R. AT HAMPTON'S FORD XING",NA,NA,NA,NA,"41.7868900000","-112.1063700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786981",NA,"as N","Nitrogen","Dissolved","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901790-0922-4-C/results/933786981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-09-22 16:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7868900000","-112.1063700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",41.78689,-112.10637,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901930-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786987",NA,"as N","Nitrogen","Total","0.427","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901930-0518-4-C/results/933786987/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-05-18 17:00:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.427,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901930-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786990",NA,"as N","Nitrogen","Dissolved","0.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901930-0518-4-C/results/933786990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-05-18 17:00:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901930-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786996",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901930-0608-4-C/results/933786996/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-06-08 16:35:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901930-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933786999",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901930-0608-4-C/results/933786999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-06-08 16:35:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901930-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787022",NA,"as N","Nitrogen","Total","0.724","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901930-0622-4-C/results/933787022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-06-22 17:20:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.724,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901930-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787025",NA,"as N","Nitrogen","Dissolved","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901930-0622-4-C/results/933787025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-06-22 17:20:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901930-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787048",NA,"as N","Nitrogen","Total","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901930-0706-4-C/results/933787048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-07-06 17:00:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901930-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787051",NA,"as N","Nitrogen","Dissolved","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901930-0706-4-C/results/933787051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-07-06 17:00:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901930-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787074",NA,"as N","Nitrogen","Total","0.658","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901930-0720-4-C/results/933787074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-07-20 15:50:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.658,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901930-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787077",NA,"as N","Nitrogen","Dissolved","0.901","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901930-0720-4-C/results/933787077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-07-20 15:50:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.901,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901930-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787083",NA,"as N","Nitrogen","Total","0.737","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901930-0811-4-C/results/933787083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-08-11 15:00:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.737,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901930-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787086",NA,"as N","Nitrogen","Dissolved","0.878","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901930-0811-4-C/results/933787086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:23","STORET",7,NA,2021-08-11 15:00:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.878,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4901930-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787109",NA,"as N","Nitrogen","Total","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4901930-0823-4-C/results/933787109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-08-23 16:55:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4901930-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787112",NA,"as N","Nitrogen","Dissolved","0.711","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4901930-0823-4-C/results/933787112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-08-23 16:55:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.711,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901930-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"08:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787135",NA,"as N","Nitrogen","Total","0.533","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901930-0922-4-C/results/933787135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-09-22 15:55:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.533,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901930-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"08:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787138",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901930-0922-4-C/results/933787138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-09-22 15:55:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901950-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787144",NA,"as N","Nitrogen","Total","0.393","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901950-0518-4-C/results/933787144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-05-18 17:40:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.393,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901950-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787147",NA,"as N","Nitrogen","Dissolved","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901950-0518-4-C/results/933787147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-05-18 17:40:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901950-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787153",NA,"as N","Nitrogen","Total","0.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901950-0608-4-C/results/933787153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-06-08 17:28:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901950-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787156",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901950-0608-4-C/results/933787156/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-06-08 17:28:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901950-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787179",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901950-0622-4-C/results/933787179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-06-22 17:40:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4901950-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787182",NA,"as N","Nitrogen","Dissolved","0.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4901950-0622-4-C/results/933787182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-06-22 17:40:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901950-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787205",NA,"as N","Nitrogen","Total","0.771","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901950-0706-4-C/results/933787205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-07-06 17:30:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.771,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4901950-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787208",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4901950-0706-4-C/results/933787208/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-07-06 17:30:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901950-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787231",NA,"as N","Nitrogen","Total","0.546","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901950-0720-4-C/results/933787231/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-07-20 16:40:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.546,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901950-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787234",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901950-0720-4-C/results/933787234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-07-20 16:40:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901950-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787240",NA,"as N","Nitrogen","Total","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901950-0811-4-C/results/933787240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-08-11 15:50:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901950-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787243",NA,"as N","Nitrogen","Dissolved","0.669","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901950-0811-4-C/results/933787243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:24","STORET",7,NA,2021-08-11 15:50:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.669,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901950-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787266",NA,"as N","Nitrogen","Total","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901950-0922-4-C/results/933787266/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-09-22 16:55:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901950-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787269",NA,"as N","Nitrogen","Dissolved","0.718","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901950-0922-4-C/results/933787269/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-09-22 16:55:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.718,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901975-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787275",NA,"as N","Nitrogen","Total","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901975-0406-4-C/results/933787275/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-04-06 16:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901975-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787278",NA,"as N","Nitrogen","Dissolved","2.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901975-0406-4-C/results/933787278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-04-06 16:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901975-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787301",NA,"as N","Nitrogen","Total","2.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901975-0518-4-C/results/933787301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-05-18 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901975-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787304",NA,"as N","Nitrogen","Dissolved","2.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901975-0518-4-C/results/933787304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-05-18 17:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901975-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787310",NA,"as N","Nitrogen","Total","3.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901975-0608-4-C/results/933787310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-06-08 16:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901975-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787313",NA,"as N","Nitrogen","Dissolved","2.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901975-0608-4-C/results/933787313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-06-08 16:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901975-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787336",NA,"as N","Nitrogen","Total","2.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901975-0720-4-C/results/933787336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-07-20 16:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901975-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787339",NA,"as N","Nitrogen","Dissolved","2.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901975-0720-4-C/results/933787339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-07-20 16:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901975-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787345",NA,"as N","Nitrogen","Total","2.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901975-0811-4-C/results/933787345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-08-11 15:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901975-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787348",NA,"as N","Nitrogen","Dissolved","2.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901975-0811-4-C/results/933787348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-08-11 15:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901975-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787371",NA,"as N","Nitrogen","Total","2.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901975-0922-4-C/results/933787371/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-09-22 16:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901975-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901975","WILLOW CK BL BEAVER DAM TOWN AB N CUTLER DAM RD XING",NA,NA,NA,NA,"41.8118700000","-112.0585600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787374",NA,"as N","Nitrogen","Dissolved","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901975-0922-4-C/results/933787374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-09-22 16:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8118700000","-112.0585600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.81187,-112.05856,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901980-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787380",NA,"as N","Nitrogen","Total","0.748","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901980-0406-4-C/results/933787380/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-04-06 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.748,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4901980-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787383",NA,"as N","Nitrogen","Dissolved","0.673","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4901980-0406-4-C/results/933787383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-04-06 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.673,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901980-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787406",NA,"as N","Nitrogen","Total","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901980-0518-4-C/results/933787406/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-05-18 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4901980-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787409",NA,"as N","Nitrogen","Dissolved","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4901980-0518-4-C/results/933787409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-05-18 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901980-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787415",NA,"as N","Nitrogen","Total","0.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901980-0608-4-C/results/933787415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-06-08 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4901980-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787418",NA,"as N","Nitrogen","Dissolved","0.509","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4901980-0608-4-C/results/933787418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:25","STORET",7,NA,2021-06-08 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.509,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901980-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787441",NA,"as N","Nitrogen","Total","0.432","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901980-0720-4-C/results/933787441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-07-20 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.432,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4901980-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787444",NA,"as N","Nitrogen","Dissolved","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4901980-0720-4-C/results/933787444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-07-20 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901980-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787450",NA,"as N","Nitrogen","Total","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901980-0811-4-C/results/933787450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-08-11 15:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4901980-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787453",NA,"as N","Nitrogen","Dissolved","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4901980-0811-4-C/results/933787453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-08-11 15:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901980-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787476",NA,"as N","Nitrogen","Total","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901980-0922-4-C/results/933787476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-09-22 16:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4901980-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901980","BEAR R BL CUTLER RES AT UP L BRIDGE",NA,NA,NA,NA,"41.8340900000","-112.0552300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787479",NA,"as N","Nitrogen","Dissolved","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4901980-0922-4-C/results/933787479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-09-22 16:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8340900000","-112.0552300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",41.83409,-112.05523,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902000-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787485",NA,"as N","Nitrogen","Total","3.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902000-0405-4-C/results/933787485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-04-05 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902000-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787508",NA,"as N","Nitrogen","Total","7.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902000-0517-4-C/results/933787508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-05-17 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902000-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787511",NA,"as N","Nitrogen","Dissolved","8.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902000-0517-4-C/results/933787511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-05-17 18:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902000-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787517",NA,"as N","Nitrogen","Total","5.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902000-0607-4-C/results/933787517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-06-07 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902000-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787520",NA,"as N","Nitrogen","Dissolved","6.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902000-0607-4-C/results/933787520/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-06-07 18:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902000-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787543",NA,"as N","Nitrogen","Total","5.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902000-0719-4-C/results/933787543/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-07-19 18:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902000-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787546",NA,"as N","Nitrogen","Dissolved","5.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902000-0719-4-C/results/933787546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-07-19 18:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902000-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787552",NA,"as N","Nitrogen","Total","6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902000-0810-4-C/results/933787552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-08-10 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902000-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787555",NA,"as N","Nitrogen","Dissolved","6.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902000-0810-4-C/results/933787555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-08-10 17:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902000-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787577",NA,"as N","Nitrogen","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902000-0921-4-C/results/933787577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-09-21 17:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902000-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902000","MALAD R S OF BEAR R CITY",NA,NA,NA,NA,"41.5932700000","-112.1288300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787580",NA,"as N","Nitrogen","Dissolved","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902000-0921-4-C/results/933787580/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-09-21 17:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5932700000","-112.1288300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.59327,-112.12883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902040-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787587",NA,"as N","Nitrogen","Total","2.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902040-0405-4-C/results/933787587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-04-05 19:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.98,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902040-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787590",NA,"as N","Nitrogen","Dissolved","2.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902040-0405-4-C/results/933787590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:26","STORET",7,NA,2021-04-05 19:10:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902040-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787614",NA,"as N","Nitrogen","Total","4.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902040-0517-4-C/results/933787614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-05-17 18:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902040-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787617",NA,"as N","Nitrogen","Dissolved","3.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902040-0517-4-C/results/933787617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-05-17 18:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902040-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787624",NA,"as N","Nitrogen","Total","3.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902040-0607-4-C/results/933787624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-06-07 18:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902040-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787627",NA,"as N","Nitrogen","Dissolved","2.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902040-0607-4-C/results/933787627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-06-07 18:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902040-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787651",NA,"as N","Nitrogen","Total","3.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902040-0719-4-C/results/933787651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-07-19 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902040-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787654",NA,"as N","Nitrogen","Dissolved","3.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902040-0719-4-C/results/933787654/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-07-19 19:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902040-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787661",NA,"as N","Nitrogen","Total","4.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902040-0810-4-C/results/933787661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-08-10 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902040-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787664",NA,"as N","Nitrogen","Dissolved","4.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902040-0810-4-C/results/933787664/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-08-10 17:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.94,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902040-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787687",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902040-0921-4-C/results/933787687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-09-21 17:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902040-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902040","MALAD R AB BEAR R CITY LAGOONS",NA,NA,NA,NA,"41.6091000000","-112.1483900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787690",NA,"as N","Nitrogen","Dissolved","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902040-0921-4-C/results/933787690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-09-21 17:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6091000000","-112.1483900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.6091,-112.14839,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902050-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787696",NA,"as N","Nitrogen","Total","1.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902050-0405-4-C/results/933787696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-04-05 19:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902050-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787699",NA,"as N","Nitrogen","Dissolved","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902050-0405-4-C/results/933787699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-04-05 19:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902050-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787722",NA,"as N","Nitrogen","Total","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902050-0517-4-C/results/933787722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-05-17 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902050-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787725",NA,"as N","Nitrogen","Dissolved","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902050-0517-4-C/results/933787725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-05-17 18:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902050-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787731",NA,"as N","Nitrogen","Total","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902050-0607-4-C/results/933787731/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-06-07 18:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902050-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787734",NA,"as N","Nitrogen","Dissolved","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902050-0607-4-C/results/933787734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-06-07 18:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902050-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787757",NA,"as N","Nitrogen","Total","2.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902050-0719-4-C/results/933787757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-07-19 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902050-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787760",NA,"as N","Nitrogen","Dissolved","2.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902050-0719-4-C/results/933787760/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-07-19 19:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902050-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787766",NA,"as N","Nitrogen","Total","3.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902050-0810-4-C/results/933787766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-08-10 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902050-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787769",NA,"as N","Nitrogen","Dissolved","3.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902050-0810-4-C/results/933787769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:27","STORET",7,NA,2021-08-10 17:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902050-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787791",NA,"as N","Nitrogen","Total","0.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902050-0921-4-C/results/933787791/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-09-21 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902050-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902050","Malad River at 6400 N Xing NW of Bear River City (UT09ST-137)",NA,NA,NA,NA,"41.6237700000","-112.1667200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787794",NA,"as N","Nitrogen","Dissolved","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902050-0921-4-C/results/933787794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-09-21 18:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6237700000","-112.1667200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.62377,-112.16672,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902700-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787800",NA,"as N","Nitrogen","Total","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902700-0405-4-C/results/933787800/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-04-05 20:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902700-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787803",NA,"as N","Nitrogen","Dissolved","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902700-0405-4-C/results/933787803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-04-05 20:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902700-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787826",NA,"as N","Nitrogen","Total","2.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902700-0517-4-C/results/933787826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-05-17 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902700-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787829",NA,"as N","Nitrogen","Dissolved","2.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902700-0517-4-C/results/933787829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-05-17 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902700-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787835",NA,"as N","Nitrogen","Total","3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902700-0607-4-C/results/933787835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-06-07 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902700-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787838",NA,"as N","Nitrogen","Dissolved","2.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902700-0607-4-C/results/933787838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-06-07 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902700-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787861",NA,"as N","Nitrogen","Total","3.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902700-0719-4-C/results/933787861/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-07-19 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902700-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787864",NA,"as N","Nitrogen","Dissolved","3.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902700-0719-4-C/results/933787864/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-07-19 20:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902700-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787870",NA,"as N","Nitrogen","Total","3.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902700-0810-4-C/results/933787870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-08-10 19:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902700-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787873",NA,"as N","Nitrogen","Dissolved","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902700-0810-4-C/results/933787873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-08-10 19:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902700-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787895",NA,"as N","Nitrogen","Total","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902700-0921-4-C/results/933787895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-09-21 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902700-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902700","MALAD R BL TREMONTON WWTP",NA,NA,NA,NA,"41.6971500000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787898",NA,"as N","Nitrogen","Dissolved","2.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902700-0921-4-C/results/933787898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-09-21 20:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.6971500000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.69715,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902710-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787905",NA,"as N","Nitrogen","Total","22.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902710-0405-4-C/results/933787905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-04-05 21:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902710-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787908",NA,"as N","Nitrogen","Dissolved","22.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902710-0405-4-C/results/933787908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-04-05 21:15:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902710-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787931",NA,"as N","Nitrogen","Total","14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902710-0517-4-C/results/933787931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-05-17 20:10:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902710-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787934",NA,"as N","Nitrogen","Dissolved","11.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902710-0517-4-C/results/933787934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-05-17 20:10:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902710-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787941",NA,"as N","Nitrogen","Total","11.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902710-0607-4-C/results/933787941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-06-07 20:40:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902710-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787944",NA,"as N","Nitrogen","Dissolved","9.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902710-0607-4-C/results/933787944/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:28","STORET",7,NA,2021-06-07 20:40:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902710-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787968",NA,"as N","Nitrogen","Total","14.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902710-0719-4-C/results/933787968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-07-19 20:50:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902710-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787971",NA,"as N","Nitrogen","Dissolved","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902710-0719-4-C/results/933787971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-07-19 20:50:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902710-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787978",NA,"as N","Nitrogen","Total","13.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902710-0810-4-C/results/933787978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-08-10 19:45:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902710-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933787981",NA,"as N","Nitrogen","Dissolved","10.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902710-0810-4-C/results/933787981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-08-10 19:45:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902710-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788004",NA,"as N","Nitrogen","Total","10.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902710-0921-4-C/results/933788004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-09-21 19:50:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902710-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902710","TREMONTON WWTP",NA,NA,NA,NA,"41.6984000000","-112.1616200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788007",NA,"as N","Nitrogen","Dissolved","8.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902710-0921-4-C/results/933788007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-09-21 19:50:00,NA,"Facility Other",NA,"16010204",NA,NA,NA,NA,"41.6984000000","-112.1616200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.6984,-112.16162,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902720-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788014",NA,"as N","Nitrogen","Total","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902720-0405-4-C/results/933788014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-04-05 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902720-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788017",NA,"as N","Nitrogen","Dissolved","0.825","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902720-0405-4-C/results/933788017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-04-05 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.825,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902720-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788041",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902720-0517-4-C/results/933788041/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-05-17 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902720-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788044",NA,"as N","Nitrogen","Dissolved","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902720-0517-4-C/results/933788044/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-05-17 20:15:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902720-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788051",NA,"as N","Nitrogen","Total","2.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902720-0607-4-C/results/933788051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-06-07 20:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902720-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788054",NA,"as N","Nitrogen","Dissolved","2.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902720-0607-4-C/results/933788054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-06-07 20:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902720-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788078",NA,"as N","Nitrogen","Total","3.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902720-0719-4-C/results/933788078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-07-19 21:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902720-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788081",NA,"as N","Nitrogen","Dissolved","2.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902720-0719-4-C/results/933788081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-07-19 21:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902720-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788088",NA,"as N","Nitrogen","Total","2.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902720-0810-4-C/results/933788088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-08-10 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902720-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788091",NA,"as N","Nitrogen","Dissolved","3.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902720-0810-4-C/results/933788091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:29","STORET",7,NA,2021-08-10 20:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902720-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788114",NA,"as N","Nitrogen","Total","2.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902720-0921-4-C/results/933788114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-09-21 20:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902720-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902720","MALAD R AB TREMONTON WWTP",NA,NA,NA,NA,"41.7117900000","-112.1609800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788117",NA,"as N","Nitrogen","Dissolved","2.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902720-0921-4-C/results/933788117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-09-21 20:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.7117900000","-112.1609800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.71179,-112.16098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902900-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788123",NA,"as N","Nitrogen","Total","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902900-0405-4-C/results/933788123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-04-05 22:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902900-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788126",NA,"as N","Nitrogen","Dissolved","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902900-0405-4-C/results/933788126/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-04-05 22:05:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902900-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788149",NA,"as N","Nitrogen","Total","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902900-0517-4-C/results/933788149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-05-17 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902900-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788152",NA,"as N","Nitrogen","Dissolved","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902900-0517-4-C/results/933788152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-05-17 21:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902900-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788158",NA,"as N","Nitrogen","Total","0.563","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902900-0607-4-C/results/933788158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-06-07 21:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.563,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902900-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788161",NA,"as N","Nitrogen","Dissolved","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902900-0607-4-C/results/933788161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-06-07 21:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902900-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788184",NA,"as N","Nitrogen","Total","0.546","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902900-0719-4-C/results/933788184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-07-19 21:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.546,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902900-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788187",NA,"as N","Nitrogen","Dissolved","0.748","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902900-0719-4-C/results/933788187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-07-19 21:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.748,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902900-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788193",NA,"as N","Nitrogen","Total","0.573","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902900-0810-4-C/results/933788193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-08-10 20:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.573,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902900-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788196",NA,"as N","Nitrogen","Dissolved","0.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902900-0810-4-C/results/933788196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-08-10 20:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902900-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788218",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902900-0921-4-C/results/933788218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-09-21 21:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902900-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902900","Malad River S of Plymouth at SR13/U191 xing (UT09ST-157)",NA,NA,NA,NA,"41.8384200000","-112.1473700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788221",NA,"as N","Nitrogen","Dissolved","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902900-0921-4-C/results/933788221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-09-21 21:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8384200000","-112.1473700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",41.83842,-112.14737,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902940-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788227",NA,"as N","Nitrogen","Total","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902940-0405-4-C/results/933788227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-04-05 22:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902940-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788230",NA,"as N","Nitrogen","Dissolved","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902940-0405-4-C/results/933788230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-04-05 22:50:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902940-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788253",NA,"as N","Nitrogen","Total","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902940-0517-4-C/results/933788253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-05-17 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902940-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788256",NA,"as N","Nitrogen","Dissolved","0.521","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902940-0517-4-C/results/933788256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:30","STORET",7,NA,2021-05-17 21:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.521,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902940-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788262",NA,"as N","Nitrogen","Total","0.572","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902940-0607-4-C/results/933788262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-06-07 22:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.572,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902940-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788265",NA,"as N","Nitrogen","Dissolved","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902940-0607-4-C/results/933788265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-06-07 22:40:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902940-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"15:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788288",NA,"as N","Nitrogen","Total","0.502","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902940-0719-4-C/results/933788288/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-07-19 22:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.502,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902940-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"15:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788291",NA,"as N","Nitrogen","Dissolved","0.575","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902940-0719-4-C/results/933788291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-07-19 22:35:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.575,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902940-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788297",NA,"as N","Nitrogen","Total","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902940-0810-4-C/results/933788297/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-08-10 21:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902940-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788300",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902940-0810-4-C/results/933788300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-08-10 21:45:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902940-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788322",NA,"as N","Nitrogen","Total","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902940-0921-4-C/results/933788322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-09-21 22:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902940-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902940","MALAD RIVER EAST OF PORTAGE",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788325",NA,"as N","Nitrogen","Dissolved","0.752","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902940-0921-4-C/results/933788325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-09-21 22:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.752,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902941-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788331",NA,"as N","Nitrogen","Total","0.533","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902941-0405-4-C/results/933788331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-04-05 23:00:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.533,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4902941-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788334",NA,"as N","Nitrogen","Dissolved","0.434","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4902941-0405-4-C/results/933788334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-04-05 23:00:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.434,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902941-0517-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-17,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788356",NA,"as N","Nitrogen","Total","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902941-0517-4-C/results/933788356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-05-17 21:40:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4902941-0517-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-17,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788359",NA,"as N","Nitrogen","Dissolved","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4902941-0517-4-C/results/933788359/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-05-17 21:40:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902941-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788365",NA,"as N","Nitrogen","Total","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902941-0607-4-C/results/933788365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-06-07 22:50:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4902941-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788368",NA,"as N","Nitrogen","Dissolved","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4902941-0607-4-C/results/933788368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:31","STORET",7,NA,2021-06-07 22:50:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902941-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788391",NA,"as N","Nitrogen","Total","0.492","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902941-0719-4-C/results/933788391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-07-19 22:40:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.492,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4902941-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788394",NA,"as N","Nitrogen","Dissolved","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4902941-0719-4-C/results/933788394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-07-19 22:40:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902941-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788400",NA,"as N","Nitrogen","Total","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902941-0810-4-C/results/933788400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-08-10 21:50:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4902941-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788403",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4902941-0810-4-C/results/933788403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-08-10 21:50:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902941-0921-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-21,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788425",NA,"as N","Nitrogen","Total","0.388","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902941-0921-4-C/results/933788425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-09-21 22:25:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.388,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4902941-0921-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-21,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4902941","MALAD RIVER EAST OF PORTAGE Replicate of 4902940",NA,NA,NA,NA,"41.9763100000","-112.2160700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788428",NA,"as N","Nitrogen","Dissolved","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4902941-0921-4-C/results/933788428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-09-21 22:25:00,NA,"River/Stream","Replicate of 4902940","16010204",NA,NA,NA,NA,"41.9763100000","-112.2160700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",41.97631,-112.21607,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903030-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788434",NA,"as N","Nitrogen","Total","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903030-0406-4-C/results/933788434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-04-06 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903030-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788437",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903030-0406-4-C/results/933788437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-04-06 21:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903030-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788460",NA,"as N","Nitrogen","Total","0.601","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903030-0518-4-C/results/933788460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-05-18 21:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.601,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903030-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903030","NEWTON CK AT QUIGLEY XING 2 BLOCKS NORTH OF U23",NA,NA,NA,NA,"41.8668700000","-111.9810000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788463",NA,"as N","Nitrogen","Dissolved","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903030-0518-4-C/results/933788463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-05-18 21:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8668700000","-111.9810000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",41.86687,-111.981,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903060-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788469",NA,"as N","Nitrogen","Total","4.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903060-0406-4-C/results/933788469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-04-06 22:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903060-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788472",NA,"as N","Nitrogen","Dissolved","4.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903060-0406-4-C/results/933788472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-04-06 22:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903060-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788495",NA,"as N","Nitrogen","Total","3.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903060-0518-4-C/results/933788495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-05-18 21:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903060-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788498",NA,"as N","Nitrogen","Dissolved","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903060-0518-4-C/results/933788498/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-05-18 21:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903060-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788504",NA,"as N","Nitrogen","Total","4.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903060-0622-4-C/results/933788504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-06-22 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903060-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788507",NA,"as N","Nitrogen","Dissolved","4.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903060-0622-4-C/results/933788507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:32","STORET",7,NA,2021-06-22 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903060-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788530",NA,"as N","Nitrogen","Total","4.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903060-0811-4-C/results/933788530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:33","STORET",7,NA,2021-08-11 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903060-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788533",NA,"as N","Nitrogen","Dissolved","4.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903060-0811-4-C/results/933788533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:33","STORET",7,NA,2021-08-11 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903060-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788556",NA,"as N","Nitrogen","Total","2.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903060-0823-4-C/results/933788556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:33","STORET",7,NA,2021-08-23 17:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903060-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788559",NA,"as N","Nitrogen","Dissolved","3.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903060-0823-4-C/results/933788559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:33","STORET",7,NA,2021-08-23 17:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903080-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788582",NA,"as N","Nitrogen","Total","5.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903080-0406-4-C/results/933788582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:33","STORET",7,NA,2021-04-06 21:51:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903080-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788585",NA,"as N","Nitrogen","Dissolved","5.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903080-0406-4-C/results/933788585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:33","STORET",7,NA,2021-04-06 21:51:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903080-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788608",NA,"as N","Nitrogen","Total","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903080-0518-4-C/results/933788608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:33","STORET",7,NA,2021-05-18 21:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903080-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788611",NA,"as N","Nitrogen","Dissolved","3.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903080-0518-4-C/results/933788611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-05-18 21:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903080-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788617",NA,"as N","Nitrogen","Total","3.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903080-0823-4-C/results/933788617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-08-23 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903080-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788620",NA,"as N","Nitrogen","Dissolved","4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903080-0823-4-C/results/933788620/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-08-23 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903100","NEWTON CREEK AB CUTLER RESERVOIR",NA,NA,NA,NA,"41.8388200000","-111.9718900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788647",NA,"as N","Nitrogen","Total","5.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C/results/933788647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-15 18:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8388200000","-111.9718900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.83882,-111.97189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903100","NEWTON CREEK AB CUTLER RESERVOIR",NA,NA,NA,NA,"41.8388200000","-111.9718900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788651",NA,"as N","Nitrogen","Dissolved","5.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903100-0615-4-C/results/933788651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-15 18:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8388200000","-111.9718900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.83882,-111.97189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788678",NA,"as N","Nitrogen","Total","0.457","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C/results/933788678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 19:05:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.457,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788682",NA,"as N","Nitrogen","Dissolved","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-2-C/results/933788682/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 19:05:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C","Sample-Routine","Water",NA,2021-06-14,"12:10:00","MST",NA,NA,NA,"AboveThermoclin","6.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788687",NA,"as N","Nitrogen","Total","0.422","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C/results/933788687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 19:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.422,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",6.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C","Sample-Routine","Water",NA,2021-06-14,"12:10:00","MST",NA,NA,NA,"AboveThermoclin","6.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788691",NA,"as N","Nitrogen","Dissolved","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-23-C/results/933788691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 19:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",6.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C","Sample-Routine","Water",NA,2021-06-14,"12:15:00","MST",NA,NA,NA,"BelowThermoclin","8.96","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788696",NA,"as N","Nitrogen","Total","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C/results/933788696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 19:15:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",8.96,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C","Sample-Routine","Water",NA,2021-06-14,"12:15:00","MST",NA,NA,NA,"BelowThermoclin","8.96","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788700",NA,"as N","Nitrogen","Dissolved","0.413","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-27-C/results/933788700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 19:15:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.413,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",8.96,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,"Bottom","12.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788705",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C/results/933788705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 19:20:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",12.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,"Bottom","12.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788709",NA,"as N","Nitrogen","Dissolved","0.949","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903130-0614-29-C/results/933788709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 19:20:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.949,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",12.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903140","NEWTON RES MIDLAKE 02",NA,NA,NA,NA,"41.9066000000","-111.9830100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788736",NA,"as N","Nitrogen","Total","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C/results/933788736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 18:45:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.9066000000","-111.9830100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",41.9066,-111.98301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903140","NEWTON RES MIDLAKE 02",NA,NA,NA,NA,"41.9066000000","-111.9830100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788740",NA,"as N","Nitrogen","Dissolved","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903140-0614-2-C/results/933788740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 18:45:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.9066000000","-111.9830100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",41.9066,-111.98301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:50:00","MST",NA,NA,NA,"Bottom","8.94","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903140","NEWTON RES MIDLAKE 02",NA,NA,NA,NA,"41.9066000000","-111.9830100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788745",NA,"as N","Nitrogen","Total","0.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C/results/933788745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 18:50:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.9066000000","-111.9830100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.9066,-111.98301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",8.94,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:50:00","MST",NA,NA,NA,"Bottom","8.94","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903140","NEWTON RES MIDLAKE 02",NA,NA,NA,NA,"41.9066000000","-111.9830100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788749",NA,"as N","Nitrogen","Dissolved","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903140-0614-29-C/results/933788749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 18:50:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.9066000000","-111.9830100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",41.9066,-111.98301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",8.94,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903150","NEWTON RES UPPER LAKE 03",NA,NA,NA,NA,"41.9121500000","-111.9930100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788759",NA,"as N","Nitrogen","Total","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C/results/933788759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:34","STORET",7,NA,2021-06-14 18:30:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.9121500000","-111.9930100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",41.91215,-111.99301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903150","NEWTON RES UPPER LAKE 03",NA,NA,NA,NA,"41.9121500000","-111.9930100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788763",NA,"as N","Nitrogen","Dissolved","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903150-0614-2-C/results/933788763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-06-14 18:30:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.9121500000","-111.9930100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",41.91215,-111.99301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:35:00","MST",NA,NA,NA,"Bottom","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903150","NEWTON RES UPPER LAKE 03",NA,NA,NA,NA,"41.9121500000","-111.9930100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788768",NA,"as N","Nitrogen","Total","0.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C/results/933788768/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-06-14 18:35:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.9121500000","-111.9930100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.91215,-111.99301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:35:00","MST",NA,NA,NA,"Bottom","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903150","NEWTON RES UPPER LAKE 03",NA,NA,NA,NA,"41.9121500000","-111.9930100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788772",NA,"as N","Nitrogen","Dissolved","0.482","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903150-0614-29-C/results/933788772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-06-14 18:35:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.9121500000","-111.9930100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.482,"MG/L","Numeric","Not Reviewed","Uncensored",41.91215,-111.99301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903180-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788778",NA,"as N","Nitrogen","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903180-0406-4-C/results/933788778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-04-06 22:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903180-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788781",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903180-0406-4-C/results/933788781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-04-06 22:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903180-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788804",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903180-0518-4-C/results/933788804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-05-18 21:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903180-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788807",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903180-0518-4-C/results/933788807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-05-18 21:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903180-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788813",NA,"as N","Nitrogen","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903180-0608-4-C/results/933788813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-06-08 21:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903180-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788816",NA,"as N","Nitrogen","Dissolved","1.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903180-0608-4-C/results/933788816/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-06-08 21:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903180-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788839",NA,"as N","Nitrogen","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903180-0720-4-C/results/933788839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-07-20 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903180-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788842",NA,"as N","Nitrogen","Dissolved","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903180-0720-4-C/results/933788842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-07-20 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903180-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788848",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903180-0811-4-C/results/933788848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-08-11 19:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903180-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788851",NA,"as N","Nitrogen","Dissolved","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903180-0811-4-C/results/933788851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-08-11 19:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903180-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788874",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903180-0823-4-C/results/933788874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-08-23 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903180-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788877",NA,"as N","Nitrogen","Dissolved","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903180-0823-4-C/results/933788877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:35","STORET",7,NA,2021-08-23 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903180-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788900",NA,"as N","Nitrogen","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903180-0922-4-C/results/933788900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-09-22 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903180-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903180","CLARKSTON CK AT 600 SOUTH AND 600 EAST",NA,NA,NA,NA,"41.9075900000","-112.0314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788903",NA,"as N","Nitrogen","Dissolved","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903180-0922-4-C/results/933788903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-09-22 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9075900000","-112.0314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.90759,-112.03145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903190-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"15:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788909",NA,"as N","Nitrogen","Total","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903190-0406-4-C/results/933788909/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-04-06 22:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903190-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"15:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788912",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903190-0406-4-C/results/933788912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-04-06 22:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903190-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788935",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903190-0518-4-C/results/933788935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-05-18 21:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903190-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788938",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903190-0518-4-C/results/933788938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-05-18 21:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903190-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788944",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903190-0608-4-C/results/933788944/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-06-08 21:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903190-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788947",NA,"as N","Nitrogen","Dissolved","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903190-0608-4-C/results/933788947/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-06-08 21:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788974",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C/results/933788974/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-06-14 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933788978",NA,"as N","Nitrogen","Dissolved","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903190-0614-4-C/results/933788978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-06-14 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903190-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789001",NA,"as N","Nitrogen","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903190-0720-4-C/results/933789001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-07-20 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903190-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789004",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903190-0720-4-C/results/933789004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-07-20 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903190-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789010",NA,"as N","Nitrogen","Total","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903190-0811-4-C/results/933789010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-08-11 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903190-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789013",NA,"as N","Nitrogen","Dissolved","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903190-0811-4-C/results/933789013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-08-11 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903190-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789036",NA,"as N","Nitrogen","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903190-0922-4-C/results/933789036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-09-22 20:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903190-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789039",NA,"as N","Nitrogen","Dissolved","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903190-0922-4-C/results/933789039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:36","STORET",7,NA,2021-09-22 20:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903191-0406-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789045",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903191-0406-4-C/results/933789045/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-04-06 21:40:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903191-0406-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789048",NA,"as N","Nitrogen","Dissolved","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903191-0406-4-C/results/933789048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-04-06 21:40:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903191-0518-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-18,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789071",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903191-0518-4-C/results/933789071/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-05-18 21:50:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903191-0518-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-18,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789074",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903191-0518-4-C/results/933789074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-05-18 21:50:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903191-0608-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789080",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903191-0608-4-C/results/933789080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-06-08 22:00:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903191-0608-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789083",NA,"as N","Nitrogen","Dissolved","1.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903191-0608-4-C/results/933789083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-06-08 22:00:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903191-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789106",NA,"as N","Nitrogen","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903191-0720-4-C/results/933789106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-07-20 20:50:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903191-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789109",NA,"as N","Nitrogen","Dissolved","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903191-0720-4-C/results/933789109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-07-20 20:50:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903191-0811-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-11,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789115",NA,"as N","Nitrogen","Total","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903191-0811-4-C/results/933789115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-08-11 20:15:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903191-0811-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-11,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789118",NA,"as N","Nitrogen","Dissolved","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903191-0811-4-C/results/933789118/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-08-11 20:15:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903191-0922-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-22,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789141",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903191-0922-4-C/results/933789141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-09-22 20:30:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903191-0922-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-22,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903191","CLARKSTON CK AT U142 XING Replicate of 4903190",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789144",NA,"as N","Nitrogen","Dissolved","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903191-0922-4-C/results/933789144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-09-22 20:30:00,NA,"River/Stream","Replicate of 4903190","16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903200-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789150",NA,"as N","Nitrogen","Total","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903200-0406-4-C/results/933789150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-04-06 23:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903200-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789153",NA,"as N","Nitrogen","Dissolved","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903200-0406-4-C/results/933789153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-04-06 23:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903200-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789176",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903200-0518-4-C/results/933789176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-05-18 22:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903200-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789179",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903200-0518-4-C/results/933789179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-05-18 22:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903200-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789185",NA,"as N","Nitrogen","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903200-0608-4-C/results/933789185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-06-08 22:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903200-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789188",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903200-0608-4-C/results/933789188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:37","STORET",7,NA,2021-06-08 22:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903200-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789211",NA,"as N","Nitrogen","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903200-0720-4-C/results/933789211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-07-20 21:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903200-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789214",NA,"as N","Nitrogen","Dissolved","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903200-0720-4-C/results/933789214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-07-20 21:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903200-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789220",NA,"as N","Nitrogen","Total","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903200-0811-4-C/results/933789220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-08-11 20:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903200-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789223",NA,"as N","Nitrogen","Dissolved","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903200-0811-4-C/results/933789223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-08-11 20:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903200-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789246",NA,"as N","Nitrogen","Total","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903200-0922-4-C/results/933789246/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-09-22 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903200-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903200","CLARKSTON CK AT 500 NORTH IN CLARKSTON",NA,NA,NA,NA,"41.9290600000","-112.0446300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789249",NA,"as N","Nitrogen","Dissolved","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903200-0922-4-C/results/933789249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-09-22 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9290600000","-112.0446300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.92906,-112.04463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903260-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789255",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903260-0406-4-C/results/933789255/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-04-06 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903260-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789258",NA,"as N","Nitrogen","Dissolved","0.973","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903260-0406-4-C/results/933789258/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-04-06 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.973,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903260-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789281",NA,"as N","Nitrogen","Total","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903260-0518-4-C/results/933789281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-05-18 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903260-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789284",NA,"as N","Nitrogen","Dissolved","0.753","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903260-0518-4-C/results/933789284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-05-18 18:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.753,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903260-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789290",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903260-0608-4-C/results/933789290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-06-08 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903260-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789293",NA,"as N","Nitrogen","Dissolved","0.906","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903260-0608-4-C/results/933789293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-06-08 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.906,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789320",NA,"as N","Nitrogen","Total","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C/results/933789320/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-06-15 19:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789324",NA,"as N","Nitrogen","Dissolved","0.534","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4903260-0615-4-C/results/933789324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:38","STORET",7,NA,2021-06-15 19:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.534,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903260-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789347",NA,"as N","Nitrogen","Total","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903260-0622-4-C/results/933789347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-06-22 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903260-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789350",NA,"as N","Nitrogen","Dissolved","0.686","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903260-0622-4-C/results/933789350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-06-22 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.686,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903260-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789373",NA,"as N","Nitrogen","Total","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903260-0720-4-C/results/933789373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-07-20 17:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903260-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789376",NA,"as N","Nitrogen","Dissolved","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903260-0720-4-C/results/933789376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-07-20 17:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903260-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789382",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903260-0811-4-C/results/933789382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-08-11 16:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903260-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789385",NA,"as N","Nitrogen","Dissolved","0.577","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903260-0811-4-C/results/933789385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-08-11 16:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.577,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789412",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C/results/933789412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-09-14 20:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789416",NA,"as N","Nitrogen","Dissolved","0.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4903260-0914-4-C/results/933789416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-09-14 20:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903260-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789439",NA,"as N","Nitrogen","Total","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903260-0922-4-C/results/933789439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-09-22 17:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903260-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789442",NA,"as N","Nitrogen","Dissolved","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903260-0922-4-C/results/933789442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-09-22 17:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903400-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789448",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903400-0406-4-C/results/933789448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-04-06 20:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903400-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789451",NA,"as N","Nitrogen","Dissolved","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903400-0406-4-C/results/933789451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:39","STORET",7,NA,2021-04-06 20:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903400-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789474",NA,"as N","Nitrogen","Total","0.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903400-0518-4-C/results/933789474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-05-18 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903400-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789477",NA,"as N","Nitrogen","Dissolved","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903400-0518-4-C/results/933789477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-05-18 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903400-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789483",NA,"as N","Nitrogen","Total","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903400-0608-4-C/results/933789483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-06-08 20:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903400-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789486",NA,"as N","Nitrogen","Dissolved","0.887","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903400-0608-4-C/results/933789486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-06-08 20:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.887,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903400-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789509",NA,"as N","Nitrogen","Total","0.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903400-0720-4-C/results/933789509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-07-20 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903400-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789512",NA,"as N","Nitrogen","Dissolved","0.473","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903400-0720-4-C/results/933789512/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-07-20 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.473,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903400-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789518",NA,"as N","Nitrogen","Total","0.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903400-0811-4-C/results/933789518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-08-11 18:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903400-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789521",NA,"as N","Nitrogen","Dissolved","0.774","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903400-0811-4-C/results/933789521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-08-11 18:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.774,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903400-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789544",NA,"as N","Nitrogen","Total","0.491","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903400-0922-4-C/results/933789544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-09-22 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.491,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903400-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903400","BEAR R BL CNFL / SUMMIT CK AT 2400 WEST",NA,NA,NA,NA,"41.8363200000","-111.8935600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789547",NA,"as N","Nitrogen","Dissolved","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903400-0922-4-C/results/933789547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-09-22 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363200000","-111.8935600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",41.83632,-111.89356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903500-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789553",NA,"as N","Nitrogen","Total","0.665","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903500-0406-4-C/results/933789553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-04-06 19:43:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.665,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903500-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789556",NA,"as N","Nitrogen","Dissolved","0.651","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903500-0406-4-C/results/933789556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-04-06 19:43:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.651,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903500-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789579",NA,"as N","Nitrogen","Total","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903500-0518-4-C/results/933789579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-05-18 20:26:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903500-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789582",NA,"as N","Nitrogen","Dissolved","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903500-0518-4-C/results/933789582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-05-18 20:26:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903500-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789588",NA,"as N","Nitrogen","Total","1.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903500-0622-4-C/results/933789588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-06-22 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903500-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789591",NA,"as N","Nitrogen","Dissolved","1.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903500-0622-4-C/results/933789591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-06-22 19:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903500-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789614",NA,"as N","Nitrogen","Total","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903500-0823-4-C/results/933789614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:40","STORET",7,NA,2021-08-23 18:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903500-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789617",NA,"as N","Nitrogen","Dissolved","2.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903500-0823-4-C/results/933789617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-08-23 18:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903501-0406-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-06,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789640",NA,"as N","Nitrogen","Total","0.643","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903501-0406-4-C/results/933789640/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-04-06 19:50:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.643,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903501-0406-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-06,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789643",NA,"as N","Nitrogen","Dissolved","0.654","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903501-0406-4-C/results/933789643/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-04-06 19:50:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.654,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903501-0518-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-18,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789666",NA,"as N","Nitrogen","Total","0.535","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903501-0518-4-C/results/933789666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-05-18 20:25:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.535,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903501-0518-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-18,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789669",NA,"as N","Nitrogen","Dissolved","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903501-0518-4-C/results/933789669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-05-18 20:25:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903501-0622-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-22,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789675",NA,"as N","Nitrogen","Total","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903501-0622-4-C/results/933789675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-06-22 19:15:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4903501-0622-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-22,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789678",NA,"as N","Nitrogen","Dissolved","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4903501-0622-4-C/results/933789678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-06-22 19:15:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903501-0823-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-23,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789701",NA,"as N","Nitrogen","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903501-0823-4-C/results/933789701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-08-23 18:40:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903501-0823-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-23,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789704",NA,"as N","Nitrogen","Dissolved","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903501-0823-4-C/results/933789704/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-08-23 18:40:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903504-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789727",NA,"as N","Nitrogen","Total","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903504-0406-4-C/results/933789727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-04-06 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903504-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789730",NA,"as N","Nitrogen","Dissolved","0.335","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903504-0406-4-C/results/933789730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-04-06 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.335,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903504-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789753",NA,"as N","Nitrogen","Total","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903504-0518-4-C/results/933789753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-05-18 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903504-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789756",NA,"as N","Nitrogen","Dissolved","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903504-0518-4-C/results/933789756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:41","STORET",7,NA,2021-05-18 20:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903504-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789762",NA,"as N","Nitrogen","Total","0.128","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903504-0823-4-C/results/933789762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-08-23 18:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.128,"MG/L","Numeric","Pass","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4903504-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789765",NA,"as N","Nitrogen","Dissolved","0.407","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4903504-0823-4-C/results/933789765/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-08-23 18:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.407,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903507-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789788",NA,"as N","Nitrogen","Total","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903507-0406-4-C/results/933789788/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-04-06 19:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903507-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789791",NA,"as N","Nitrogen","Dissolved","0.336","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903507-0406-4-C/results/933789791/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-04-06 19:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.336,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903507-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789814",NA,"as N","Nitrogen","Total","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903507-0518-4-C/results/933789814/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-05-18 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903507-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789817",NA,"as N","Nitrogen","Dissolved","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903507-0518-4-C/results/933789817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-05-18 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903507-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789823",NA,"as N","Nitrogen","Total","0.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903507-0608-4-C/results/933789823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-06-08 19:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903507-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789826",NA,"as N","Nitrogen","Dissolved","0.685","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903507-0608-4-C/results/933789826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-06-08 19:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.685,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903507-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789849",NA,"as N","Nitrogen","Total","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903507-0720-4-C/results/933789849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-07-20 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903507-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789852",NA,"as N","Nitrogen","Dissolved","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903507-0720-4-C/results/933789852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-07-20 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903507-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789858",NA,"as N","Nitrogen","Total","0.961","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903507-0811-4-C/results/933789858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-08-11 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.961,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903507-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789861",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903507-0811-4-C/results/933789861/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-08-11 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903507-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789884",NA,"as N","Nitrogen","Total","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903507-0922-4-C/results/933789884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-09-22 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903507-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903507","Summit Creek at 200 East crossing in Smithfield",NA,NA,NA,NA,"41.8378300000","-111.8270800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789887",NA,"as N","Nitrogen","Dissolved","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903507-0922-4-C/results/933789887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-09-22 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8378300000","-111.8270800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",41.83783,-111.82708,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903510-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789893",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903510-0406-4-C/results/933789893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-04-06 18:43:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903510-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789896",NA,"as N","Nitrogen","Dissolved","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903510-0406-4-C/results/933789896/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-04-06 18:43:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903510-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789919",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903510-0518-4-C/results/933789919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-05-18 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903510-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789922",NA,"as N","Nitrogen","Dissolved","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903510-0518-4-C/results/933789922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-05-18 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903510-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789928",NA,"as N","Nitrogen","Total","0.166","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903510-0608-4-C/results/933789928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-06-08 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.166,"MG/L","Numeric","Pass","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903510-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789931",NA,"as N","Nitrogen","Dissolved","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903510-0608-4-C/results/933789931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:42","STORET",7,NA,2021-06-08 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903510-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789954",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903510-0720-4-C/results/933789954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-07-20 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903510-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789957",NA,"as N","Nitrogen","Dissolved","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903510-0720-4-C/results/933789957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-07-20 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903510-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789963",NA,"as N","Nitrogen","Total","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903510-0811-4-C/results/933789963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-08-11 17:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903510-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789966",NA,"as N","Nitrogen","Dissolved","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903510-0811-4-C/results/933789966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-08-11 17:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903510-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789989",NA,"as N","Nitrogen","Total","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903510-0922-4-C/results/933789989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-09-22 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903510-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903510","SUMMIT CK @ USFS BNDY",NA,NA,NA,NA,"41.8696800000","-111.7579700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933789992",NA,"as N","Nitrogen","Dissolved","0.153","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903510-0922-4-C/results/933789992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-09-22 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8696800000","-111.7579700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.153,"MG/L","Numeric","Pass","Uncensored",41.86968,-111.75797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903699-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790015",NA,"as N","Nitrogen","Total","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903699-0407-4-C/results/933790015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-04-07 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903699-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790018",NA,"as N","Nitrogen","Dissolved","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903699-0407-4-C/results/933790018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-04-07 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903699-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790024",NA,"as N","Nitrogen","Total","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903699-0519-4-C/results/933790024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-05-19 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903699-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790027",NA,"as N","Nitrogen","Dissolved","0.507","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903699-0519-4-C/results/933790027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-05-19 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.507,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903699-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790033",NA,"as N","Nitrogen","Total","0.693","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903699-0609-4-C/results/933790033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-06-09 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.693,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903699-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790036",NA,"as N","Nitrogen","Dissolved","0.718","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903699-0609-4-C/results/933790036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-06-09 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.718,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903699-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790059",NA,"as N","Nitrogen","Total","0.821","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903699-0721-4-C/results/933790059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-07-21 16:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.821,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903699-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903699","CUB R @ RITEWOOD EGG BRIDGE (UP-GRADIENT)",NA,NA,NA,NA,"41.9104000000","-111.8752000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790062",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903699-0721-4-C/results/933790062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-07-21 16:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9104000000","-111.8752000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.9104,-111.8752,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903770-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790069",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903770-0407-4-C/results/933790069/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-04-07 20:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903770-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790072",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903770-0407-4-C/results/933790072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-04-07 20:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903770-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790096",NA,"as N","Nitrogen","Total","0.298","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903770-0519-4-C/results/933790096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-05-19 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.298,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903770-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790099",NA,"as N","Nitrogen","Dissolved","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903770-0519-4-C/results/933790099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-05-19 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903770-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790106",NA,"as N","Nitrogen","Total","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903770-0609-4-C/results/933790106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-06-09 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903770-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790109",NA,"as N","Nitrogen","Dissolved","0.546","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903770-0609-4-C/results/933790109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-06-09 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.546,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4903770-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790132",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4903770-0706-4-C/results/933790132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-07-06 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4903770-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790135",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4903770-0706-4-C/results/933790135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:43","STORET",7,NA,2021-07-06 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903770-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790159",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903770-0721-4-C/results/933790159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:44","STORET",7,NA,2021-07-21 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903770-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790162",NA,"as N","Nitrogen","Dissolved","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903770-0721-4-C/results/933790162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:44","STORET",7,NA,2021-07-21 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903770-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790169",NA,"as N","Nitrogen","Total","1.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903770-0812-4-C/results/933790169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:44","STORET",7,NA,2021-08-12 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903770-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790172",NA,"as N","Nitrogen","Dissolved","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903770-0812-4-C/results/933790172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:44","STORET",7,NA,2021-08-12 17:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903770-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790196",NA,"as N","Nitrogen","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903770-0923-4-C/results/933790196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:44","STORET",7,NA,2021-09-23 19:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903770-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903770","CUB R AT U61 XING",NA,NA,NA,NA,"41.9761200000","-111.8278300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790199",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903770-0923-4-C/results/933790199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:44","STORET",7,NA,2021-09-23 19:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9761200000","-111.8278300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.97612,-111.82783,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903820-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790325",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903820-0407-4-C/results/933790325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-04-07 17:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903820-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790328",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903820-0407-4-C/results/933790328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-04-07 17:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903820-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790334",NA,"as N","Nitrogen","Total","0.624","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903820-0519-4-C/results/933790334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-05-19 17:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.624,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903820-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790337",NA,"as N","Nitrogen","Dissolved","0.596","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903820-0519-4-C/results/933790337/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-05-19 17:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.596,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903820-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790343",NA,"as N","Nitrogen","Total","0.604","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903820-0609-4-C/results/933790343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-06-09 17:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.604,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903820-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790346",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903820-0609-4-C/results/933790346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-06-09 17:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903820-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790369",NA,"as N","Nitrogen","Total","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903820-0721-4-C/results/933790369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-07-21 16:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903820-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790372",NA,"as N","Nitrogen","Dissolved","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903820-0721-4-C/results/933790372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-07-21 16:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903820-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790378",NA,"as N","Nitrogen","Total","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903820-0812-4-C/results/933790378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-08-12 15:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903820-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790381",NA,"as N","Nitrogen","Dissolved","0.856","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903820-0812-4-C/results/933790381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-08-12 15:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.856,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903820-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790404",NA,"as N","Nitrogen","Total","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903820-0923-4-C/results/933790404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-09-23 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903820-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903820","BEAR R W OF RICHMOND AT U142 XING",NA,NA,NA,NA,"41.9221500000","-111.9069000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790407",NA,"as N","Nitrogen","Dissolved","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903820-0923-4-C/results/933790407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-09-23 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9221500000","-111.9069000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",41.92215,-111.9069,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903950-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790413",NA,"as N","Nitrogen","Total","3.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903950-0406-4-C/results/933790413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-04-06 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.98,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4903950-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790416",NA,"as N","Nitrogen","Dissolved","4.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4903950-0406-4-C/results/933790416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-04-06 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903950-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790439",NA,"as N","Nitrogen","Total","0.945","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903950-0504-4-C/results/933790439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-05-04 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.945,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4903950-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790442",NA,"as N","Nitrogen","Dissolved","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4903950-0504-4-C/results/933790442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-05-04 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903950-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790448",NA,"as N","Nitrogen","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903950-0608-4-C/results/933790448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-06-08 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4903950-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790451",NA,"as N","Nitrogen","Dissolved","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4903950-0608-4-C/results/933790451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-06-08 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903950-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790474",NA,"as N","Nitrogen","Total","3.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903950-0720-4-C/results/933790474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-07-20 21:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4903950-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790477",NA,"as N","Nitrogen","Dissolved","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4903950-0720-4-C/results/933790477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-07-20 21:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903950-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790483",NA,"as N","Nitrogen","Total","7.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903950-0810-4-C/results/933790483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-08-10 20:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4903950-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790486",NA,"as N","Nitrogen","Dissolved","7.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4903950-0810-4-C/results/933790486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:45","STORET",7,NA,2021-08-10 20:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.94,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903950-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790508",NA,"as N","Nitrogen","Total","3.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903950-0929-4-C/results/933790508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-09-29 17:52:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4903950-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903950","HYRUM SLOUGH AT ISLAND RD XING",NA,NA,NA,NA,"41.6926300000","-111.8981400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790511",NA,"as N","Nitrogen","Dissolved","3.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4903950-0929-4-C/results/933790511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-09-29 17:52:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6926300000","-111.8981400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.69263,-111.89814,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904110-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790517",NA,"as N","Nitrogen","Total","2.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904110-0407-4-C/results/933790517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-04-07 16:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904110-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790520",NA,"as N","Nitrogen","Dissolved","2.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904110-0407-4-C/results/933790520/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-04-07 16:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904110-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790543",NA,"as N","Nitrogen","Total","0.922","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904110-0610-4-C/results/933790543/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-06-10 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.922,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904110-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790546",NA,"as N","Nitrogen","Dissolved","0.873","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904110-0610-4-C/results/933790546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-06-10 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.873,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904110-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790569",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904110-0721-4-C/results/933790569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-07-21 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904110-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790572",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904110-0721-4-C/results/933790572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-07-21 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904110-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790578",NA,"as N","Nitrogen","Total","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904110-0811-4-C/results/933790578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-08-11 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904110-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790581",NA,"as N","Nitrogen","Dissolved","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904110-0811-4-C/results/933790581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-08-11 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904110-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790604",NA,"as N","Nitrogen","Total","0.649","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904110-0823-4-C/results/933790604/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-08-23 21:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.649,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904110-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790607",NA,"as N","Nitrogen","Dissolved","0.875","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904110-0823-4-C/results/933790607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-08-23 21:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.875,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904110-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790630",NA,"as N","Nitrogen","Total","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904110-0929-4-C/results/933790630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-09-29 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904110-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904110","HYRUM SLOUGH AT 300 NORTH IN HYRUM",NA,NA,NA,NA,"41.6403900000","-111.8501700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790633",NA,"as N","Nitrogen","Dissolved","2.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904110-0929-4-C/results/933790633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-09-29 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6403900000","-111.8501700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.64039,-111.85017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904200-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904200","CITY CK 3/4 MI W OF US91 AT CR XING",NA,NA,NA,NA,"41.9168700000","-111.8293900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790639",NA,"as N","Nitrogen","Total","0.645","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904200-0407-4-C/results/933790639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-04-07 18:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9168700000","-111.8293900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.645,"MG/L","Numeric","Not Reviewed","Uncensored",41.91687,-111.82939,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904200-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904200","CITY CK 3/4 MI W OF US91 AT CR XING",NA,NA,NA,NA,"41.9168700000","-111.8293900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790642",NA,"as N","Nitrogen","Dissolved","0.691","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904200-0407-4-C/results/933790642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:46","STORET",7,NA,2021-04-07 18:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9168700000","-111.8293900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.691,"MG/L","Numeric","Not Reviewed","Uncensored",41.91687,-111.82939,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904240-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790683",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904240-0407-4-C/results/933790683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-04-07 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904240-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790686",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904240-0407-4-C/results/933790686/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-04-07 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904240-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790693",NA,"as N","Nitrogen","Total","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904240-0519-4-C/results/933790693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-05-19 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904240-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790696",NA,"as N","Nitrogen","Dissolved","0.418","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904240-0519-4-C/results/933790696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-05-19 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.418,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904240-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790703",NA,"as N","Nitrogen","Total","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904240-0609-4-C/results/933790703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-06-09 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904240-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790706",NA,"as N","Nitrogen","Dissolved","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904240-0609-4-C/results/933790706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-06-09 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904240-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790730",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904240-0721-4-C/results/933790730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-07-21 17:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904240-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790733",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904240-0721-4-C/results/933790733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-07-21 17:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904240-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790740",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904240-0812-4-C/results/933790740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-08-12 16:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904240-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790743",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904240-0812-4-C/results/933790743/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-08-12 16:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904240-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790767",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904240-0923-4-C/results/933790767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-09-23 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904240-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904240","CUB R AT CASPER ICE CREAM RD",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790770",NA,"as N","Nitrogen","Dissolved","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904240-0923-4-C/results/933790770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-09-23 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904241-0407-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-07,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790776",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904241-0407-4-C/results/933790776/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-04-07 18:45:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904241-0407-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-07,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790779",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904241-0407-4-C/results/933790779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-04-07 18:45:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904241-0519-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-19,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790802",NA,"as N","Nitrogen","Total","0.394","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904241-0519-4-C/results/933790802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-05-19 17:45:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.394,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904241-0519-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-19,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790805",NA,"as N","Nitrogen","Dissolved","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904241-0519-4-C/results/933790805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-05-19 17:45:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904241-0609-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790811",NA,"as N","Nitrogen","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904241-0609-4-C/results/933790811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-06-09 18:30:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904241-0609-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790814",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904241-0609-4-C/results/933790814/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-06-09 18:30:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904241-0721-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-21,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790837",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904241-0721-4-C/results/933790837/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-07-21 17:20:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904241-0721-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-21,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790840",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904241-0721-4-C/results/933790840/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:47","STORET",7,NA,2021-07-21 17:20:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904241-0812-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-12,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790846",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904241-0812-4-C/results/933790846/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-08-12 16:40:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904241-0812-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-12,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790849",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904241-0812-4-C/results/933790849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-08-12 16:40:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904241-0923-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-23,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790872",NA,"as N","Nitrogen","Total","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904241-0923-4-C/results/933790872/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-09-23 18:50:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904241-0923-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-23,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904241","CUB R AT CASPER ICE CREAM RD Replicate of 4904240",NA,NA,NA,NA,"41.9436700000","-111.8380100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790875",NA,"as N","Nitrogen","Dissolved","1.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904241-0923-4-C/results/933790875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-09-23 18:50:00,NA,"River/Stream","Replicate of 4904240","16010202",NA,NA,NA,NA,"41.9436700000","-111.8380100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.94367,-111.83801,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904250-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790898",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904250-0407-4-C/results/933790898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-04-07 17:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904250-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790901",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904250-0407-4-C/results/933790901/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-04-07 17:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904250-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790907",NA,"as N","Nitrogen","Total","0.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904250-0519-4-C/results/933790907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-05-19 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904250-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790910",NA,"as N","Nitrogen","Dissolved","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904250-0519-4-C/results/933790910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-05-19 17:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904250-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790916",NA,"as N","Nitrogen","Total","0.742","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904250-0609-4-C/results/933790916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-06-09 17:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.742,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904250-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790919",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904250-0609-4-C/results/933790919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-06-09 17:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904250-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790942",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904250-0721-4-C/results/933790942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-07-21 16:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904250-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790945",NA,"as N","Nitrogen","Dissolved","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904250-0721-4-C/results/933790945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-07-21 16:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904250-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790951",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904250-0812-4-C/results/933790951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-08-12 16:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904250-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790954",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904250-0812-4-C/results/933790954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-08-12 16:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904250-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790977",NA,"as N","Nitrogen","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904250-0923-4-C/results/933790977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-09-23 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904250-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904250","CUB R AT U142 XING",NA,NA,NA,NA,"41.9249200000","-111.8511700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933790980",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904250-0923-4-C/results/933790980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-09-23 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9249200000","-111.8511700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.92492,-111.85117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904300-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904300","HIGH CK @ U91 XING",NA,NA,NA,NA,"41.9568700000","-111.8130100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791003",NA,"as N","Nitrogen","Total","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904300-0407-4-C/results/933791003/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-04-07 19:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",41.95687,-111.81301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904300-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904300","HIGH CK @ U91 XING",NA,NA,NA,NA,"41.9568700000","-111.8130100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791006",NA,"as N","Nitrogen","Dissolved","0.355","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904300-0407-4-C/results/933791006/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-04-07 19:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.355,"MG/L","Numeric","Not Reviewed","Uncensored",41.95687,-111.81301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904300-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904300","HIGH CK @ U91 XING",NA,NA,NA,NA,"41.9568700000","-111.8130100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791012",NA,"as N","Nitrogen","Total","0.264","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904300-0519-4-C/results/933791012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-05-19 18:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.264,"MG/L","Numeric","Not Reviewed","Uncensored",41.95687,-111.81301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904300-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904300","HIGH CK @ U91 XING",NA,NA,NA,NA,"41.9568700000","-111.8130100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791015",NA,"as N","Nitrogen","Dissolved","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904300-0519-4-C/results/933791015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-05-19 18:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",41.95687,-111.81301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904300-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904300","HIGH CK @ U91 XING",NA,NA,NA,NA,"41.9568700000","-111.8130100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791021",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904300-0609-4-C/results/933791021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:48","STORET",7,NA,2021-06-09 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9568700000","-111.8130100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",41.95687,-111.81301,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904310-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791061",NA,"as N","Nitrogen","Total","0.516","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904310-0407-4-C/results/933791061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-04-07 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.516,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904310-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791064",NA,"as N","Nitrogen","Dissolved","0.647","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904310-0407-4-C/results/933791064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-04-07 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.647,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904310-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791070",NA,"as N","Nitrogen","Total","0.504","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904310-0519-4-C/results/933791070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-05-19 20:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.504,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904310-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791073",NA,"as N","Nitrogen","Dissolved","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904310-0519-4-C/results/933791073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-05-19 20:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904310-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791079",NA,"as N","Nitrogen","Total","0.906","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904310-0609-4-C/results/933791079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-06-09 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.906,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904310-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791082",NA,"as N","Nitrogen","Dissolved","0.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904310-0609-4-C/results/933791082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-06-09 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904310-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791105",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904310-0823-4-C/results/933791105/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-08-23 19:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904310-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791108",NA,"as N","Nitrogen","Dissolved","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904310-0823-4-C/results/933791108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-08-23 19:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904330-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791131",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904330-0519-4-C/results/933791131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-05-19 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904330-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791134",NA,"as N","Nitrogen","Dissolved","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904330-0519-4-C/results/933791134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-05-19 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904330-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791140",NA,"as N","Nitrogen","Total","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904330-0609-4-C/results/933791140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-06-09 19:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904330-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791143",NA,"as N","Nitrogen","Dissolved","0.195","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904330-0609-4-C/results/933791143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-06-09 19:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Pass","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904330-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791166",NA,"as N","Nitrogen","Total","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904330-0622-4-C/results/933791166/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-06-22 21:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904330-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791169",NA,"as N","Nitrogen","Dissolved","0.414","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904330-0622-4-C/results/933791169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-06-22 21:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.414,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4904330-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791192",NA,"as N","Nitrogen","Total","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4904330-0706-4-C/results/933791192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-07-06 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4904330-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791195",NA,"as N","Nitrogen","Dissolved","0.674","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4904330-0706-4-C/results/933791195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:49","STORET",7,NA,2021-07-06 19:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.674,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904330-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791218",NA,"as N","Nitrogen","Total","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904330-0721-4-C/results/933791218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-07-21 17:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904330-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791221",NA,"as N","Nitrogen","Dissolved","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904330-0721-4-C/results/933791221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-07-21 17:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904330-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791227",NA,"as N","Nitrogen","Total","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904330-0812-4-C/results/933791227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-08-12 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904330-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791230",NA,"as N","Nitrogen","Dissolved","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904330-0812-4-C/results/933791230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-08-12 17:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904330-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791253",NA,"as N","Nitrogen","Total","0.126","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904330-0823-4-C/results/933791253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-08-23 19:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.126,"MG/L","Numeric","Pass","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904330-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791256",NA,"as N","Nitrogen","Dissolved","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904330-0823-4-C/results/933791256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-08-23 19:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904330-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791279",NA,"as N","Nitrogen","Total","0.145","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904330-0923-4-C/results/933791279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-09-23 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.145,"MG/L","Numeric","Pass","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904330-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904330","HIGH CK @ USFS BNDY",NA,NA,NA,NA,"41.9764000000","-111.7562700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791282",NA,"as N","Nitrogen","Dissolved","0.116","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904330-0923-4-C/results/933791282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-09-23 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9764000000","-111.7562700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.116,"MG/L","Numeric","Pass","Uncensored",41.9764,-111.75627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904340-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"12:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791305",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904340-0407-4-C/results/933791305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-04-07 19:28:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904340-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"12:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791308",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904340-0407-4-C/results/933791308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-04-07 19:28:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904340-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791315",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904340-0519-4-C/results/933791315/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-05-19 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904340-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791318",NA,"as N","Nitrogen","Dissolved","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904340-0519-4-C/results/933791318/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-05-19 19:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904340-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791324",NA,"as N","Nitrogen","Total","0.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904340-0609-4-C/results/933791324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-06-09 19:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904340-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791327",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904340-0609-4-C/results/933791327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-06-09 19:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904340-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791351",NA,"as N","Nitrogen","Total","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904340-0721-4-C/results/933791351/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-07-21 18:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904340-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791354",NA,"as N","Nitrogen","Dissolved","1.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904340-0721-4-C/results/933791354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-07-21 18:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.79,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904340-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791360",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904340-0812-4-C/results/933791360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-08-12 17:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904340-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791363",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904340-0812-4-C/results/933791363/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:50","STORET",7,NA,2021-08-12 17:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904340-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791387",NA,"as N","Nitrogen","Total","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904340-0923-4-C/results/933791387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-09-23 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904340-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904340","CUB R @ 800 South ab High Creek",NA,NA,NA,NA,"41.9613200000","-111.8318900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791390",NA,"as N","Nitrogen","Dissolved","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904340-0923-4-C/results/933791390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-09-23 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9613200000","-111.8318900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.96132,-111.83189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904490-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791396",NA,"as N","Nitrogen","Total","0.991","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904490-0406-4-C/results/933791396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-04-06 17:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.991,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904490-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791399",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904490-0406-4-C/results/933791399/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-04-06 17:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904490-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791422",NA,"as N","Nitrogen","Total","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904490-0518-4-C/results/933791422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-05-18 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904490-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791425",NA,"as N","Nitrogen","Dissolved","0.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904490-0518-4-C/results/933791425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-05-18 18:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904490-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791431",NA,"as N","Nitrogen","Total","0.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904490-0608-4-C/results/933791431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-06-08 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904490-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791434",NA,"as N","Nitrogen","Dissolved","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904490-0608-4-C/results/933791434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-06-08 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904490-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791457",NA,"as N","Nitrogen","Total","0.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904490-0622-4-C/results/933791457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-06-22 18:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904490-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791460",NA,"as N","Nitrogen","Dissolved","0.879","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904490-0622-4-C/results/933791460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-06-22 18:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.879,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904490-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791483",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904490-0720-4-C/results/933791483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-07-20 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904490-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791486",NA,"as N","Nitrogen","Dissolved","0.619","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904490-0720-4-C/results/933791486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-07-20 17:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.619,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904490-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791492",NA,"as N","Nitrogen","Total","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904490-0811-4-C/results/933791492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-08-11 16:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904490-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791495",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904490-0811-4-C/results/933791495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-08-11 16:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904490-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791518",NA,"as N","Nitrogen","Total","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904490-0922-4-C/results/933791518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-09-22 17:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904490-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904490","BEAR R .3 MI NNW OF BENSON SCHOOL,0.1 MI S OF BRIDGE 22",NA,NA,NA,NA,"41.8007600000","-111.9096700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791521",NA,"as N","Nitrogen","Dissolved","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904490-0922-4-C/results/933791521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-09-22 17:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8007600000","-111.9096700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",41.80076,-111.90967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904510-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791527",NA,"as N","Nitrogen","Total","2.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904510-0406-4-C/results/933791527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-04-06 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.79,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904510-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791530",NA,"as N","Nitrogen","Dissolved","2.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904510-0406-4-C/results/933791530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-04-06 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904510-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791553",NA,"as N","Nitrogen","Total","4.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904510-0518-4-C/results/933791553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-05-18 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904510-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791556",NA,"as N","Nitrogen","Dissolved","4.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904510-0518-4-C/results/933791556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-05-18 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.96,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904510-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791562",NA,"as N","Nitrogen","Total","2.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904510-0608-4-C/results/933791562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-06-08 18:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904510-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791565",NA,"as N","Nitrogen","Dissolved","2.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904510-0608-4-C/results/933791565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:51","STORET",7,NA,2021-06-08 18:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904510-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791588",NA,"as N","Nitrogen","Total","2.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904510-0622-4-C/results/933791588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-06-22 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904510-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791591",NA,"as N","Nitrogen","Dissolved","2.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904510-0622-4-C/results/933791591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-06-22 18:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904510-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791614",NA,"as N","Nitrogen","Total","3.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904510-0720-4-C/results/933791614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-07-20 17:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904510-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791617",NA,"as N","Nitrogen","Dissolved","3.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904510-0720-4-C/results/933791617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-07-20 17:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904510-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791623",NA,"as N","Nitrogen","Total","3.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904510-0811-4-C/results/933791623/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-08-11 16:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904510-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791626",NA,"as N","Nitrogen","Dissolved","3.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904510-0811-4-C/results/933791626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-08-11 16:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904510-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791649",NA,"as N","Nitrogen","Total","0.839","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904510-0922-4-C/results/933791649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-09-22 17:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.839,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904510-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904510","HOPKINS SLOUGH OUTLET TO BEAR R .5MI N BENSON SCHOOL 20",NA,NA,NA,NA,"41.8013900000","-111.8917400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791652",NA,"as N","Nitrogen","Dissolved","0.832","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904510-0922-4-C/results/933791652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-09-22 17:50:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8013900000","-111.8917400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.832,"MG/L","Numeric","Not Reviewed","Uncensored",41.80139,-111.89174,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904720-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791658",NA,"as N","Nitrogen","Total","2.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904720-0406-4-C/results/933791658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-04-06 21:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904720-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791661",NA,"as N","Nitrogen","Dissolved","2.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904720-0406-4-C/results/933791661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-04-06 21:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904720-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791684",NA,"as N","Nitrogen","Total","0.868","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904720-0518-4-C/results/933791684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-05-18 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.868,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904720-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791687",NA,"as N","Nitrogen","Dissolved","0.914","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904720-0518-4-C/results/933791687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-05-18 20:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.914,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904720-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791693",NA,"as N","Nitrogen","Total","6.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904720-0608-4-C/results/933791693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-06-08 20:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904720-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791696",NA,"as N","Nitrogen","Dissolved","6.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904720-0608-4-C/results/933791696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-06-08 20:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904720-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791719",NA,"as N","Nitrogen","Total","0.919","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904720-0622-4-C/results/933791719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-06-22 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.919,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904720-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791722",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904720-0622-4-C/results/933791722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-06-22 19:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904720-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791745",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904720-0720-4-C/results/933791745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-07-20 19:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904720-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791748",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904720-0720-4-C/results/933791748/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-07-20 19:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904720-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791754",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904720-0811-4-C/results/933791754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-08-11 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904720-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791757",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904720-0811-4-C/results/933791757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:52","STORET",7,NA,2021-08-11 19:10:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904720-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791780",NA,"as N","Nitrogen","Total","3.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904720-0922-4-C/results/933791780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-09-22 19:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904720-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904720","CLAY SLOUGH AB BEAR R @ CR XING",NA,NA,NA,NA,"41.8307600000","-111.9418900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791783",NA,"as N","Nitrogen","Dissolved","2.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904720-0922-4-C/results/933791783/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-09-22 19:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8307600000","-111.9418900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.83076,-111.94189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904724-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791789",NA,"as N","Nitrogen","Total","3.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904724-0406-4-C/results/933791789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-04-06 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904724-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791792",NA,"as N","Nitrogen","Dissolved","2.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904724-0406-4-C/results/933791792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-04-06 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904724-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791815",NA,"as N","Nitrogen","Total","9.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904724-0518-4-C/results/933791815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-05-18 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904724-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791818",NA,"as N","Nitrogen","Dissolved","10.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904724-0518-4-C/results/933791818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-05-18 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904724-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791824",NA,"as N","Nitrogen","Total","6.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904724-0608-4-C/results/933791824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-06-08 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904724-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791827",NA,"as N","Nitrogen","Dissolved","6.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904724-0608-4-C/results/933791827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-06-08 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904724-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791850",NA,"as N","Nitrogen","Total","8.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904724-0622-4-C/results/933791850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-06-22 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904724-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791853",NA,"as N","Nitrogen","Dissolved","8.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904724-0622-4-C/results/933791853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-06-22 19:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904724-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791876",NA,"as N","Nitrogen","Total","3.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904724-0720-4-C/results/933791876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-07-20 19:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904724-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791879",NA,"as N","Nitrogen","Dissolved","2.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904724-0720-4-C/results/933791879/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-07-20 19:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904724-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791885",NA,"as N","Nitrogen","Total","9.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904724-0811-4-C/results/933791885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-08-11 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904724-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791888",NA,"as N","Nitrogen","Dissolved","3.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904724-0811-4-C/results/933791888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-08-11 18:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904724-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791911",NA,"as N","Nitrogen","Total","3.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904724-0823-4-C/results/933791911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-08-23 18:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904724-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791914",NA,"as N","Nitrogen","Dissolved","2.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904724-0823-4-C/results/933791914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-08-23 18:25:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904724-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791937",NA,"as N","Nitrogen","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904724-0922-4-C/results/933791937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-09-22 19:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904724-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904724","Clay Slough at SR-218 (6200 N) crossing",NA,NA,NA,NA,"41.8451100000","-111.9329200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791940",NA,"as N","Nitrogen","Dissolved","3.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904724-0922-4-C/results/933791940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-09-22 19:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8451100000","-111.9329200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.84511,-111.93292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904726-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791946",NA,"as N","Nitrogen","Total","2.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904726-0406-4-C/results/933791946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-04-06 20:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.78,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904726-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791949",NA,"as N","Nitrogen","Dissolved","2.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904726-0406-4-C/results/933791949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:53","STORET",7,NA,2021-04-06 20:55:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904726-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791972",NA,"as N","Nitrogen","Total","5.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904726-0518-4-C/results/933791972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-05-18 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904726-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791975",NA,"as N","Nitrogen","Dissolved","5.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904726-0518-4-C/results/933791975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-05-18 20:40:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904726-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791981",NA,"as N","Nitrogen","Total","4.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904726-0608-4-C/results/933791981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-06-08 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904726-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933791984",NA,"as N","Nitrogen","Dissolved","4.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904726-0608-4-C/results/933791984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-06-08 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904726-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792007",NA,"as N","Nitrogen","Total","3.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904726-0622-4-C/results/933792007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-06-22 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4904726-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792010",NA,"as N","Nitrogen","Dissolved","4.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4904726-0622-4-C/results/933792010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-06-22 20:00:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904726-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792033",NA,"as N","Nitrogen","Total","4.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904726-0823-4-C/results/933792033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-08-23 18:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.79,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904726-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792036",NA,"as N","Nitrogen","Dissolved","4.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904726-0823-4-C/results/933792036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-08-23 18:05:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.82,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904740-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792059",NA,"as N","Nitrogen","Total","15.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904740-0406-4-C/results/933792059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-04-06 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904740-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792062",NA,"as N","Nitrogen","Dissolved","15.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904740-0406-4-C/results/933792062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-04-06 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904740-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792085",NA,"as N","Nitrogen","Total","5.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904740-0504-4-C/results/933792085/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-05-04 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904740-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792088",NA,"as N","Nitrogen","Dissolved","5.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904740-0504-4-C/results/933792088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-05-04 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904740-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792094",NA,"as N","Nitrogen","Total","9.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904740-0608-4-C/results/933792094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-06-08 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904740-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792097",NA,"as N","Nitrogen","Dissolved","9.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904740-0608-4-C/results/933792097/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-06-08 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904740-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792120",NA,"as N","Nitrogen","Total","2.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904740-0720-4-C/results/933792120/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-07-20 21:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904740-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792123",NA,"as N","Nitrogen","Dissolved","2.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904740-0720-4-C/results/933792123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-07-20 21:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904740-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792129",NA,"as N","Nitrogen","Total","24.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904740-0810-4-C/results/933792129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-08-10 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",24.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904740-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792132",NA,"as N","Nitrogen","Dissolved","25.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904740-0810-4-C/results/933792132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:54","STORET",7,NA,2021-08-10 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",25.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904740-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"11:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792154",NA,"as N","Nitrogen","Total","15.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904740-0928-4-C/results/933792154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-09-28 18:41:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904740-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"11:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904740","SPRING CK 1/2 MI S US89 XING SC-3",NA,NA,NA,NA,"41.6642700000","-111.8906600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792157",NA,"as N","Nitrogen","Dissolved","15.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904740-0928-4-C/results/933792157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-09-28 18:41:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6642700000","-111.8906600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.66427,-111.89066,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904770-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792180",NA,"as N","Nitrogen","Total","37.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904770-0407-4-C/results/933792180/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-04-07 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",37.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904770-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792183",NA,"as N","Nitrogen","Dissolved","37.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904770-0407-4-C/results/933792183/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-04-07 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",37.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904770-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792189",NA,"as N","Nitrogen","Total","19.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904770-0505-4-C/results/933792189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-05-05 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904770-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792192",NA,"as N","Nitrogen","Dissolved","19.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904770-0505-4-C/results/933792192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-05-05 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904770-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792198",NA,"as N","Nitrogen","Total","34.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904770-0610-4-C/results/933792198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-06-10 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",34.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904770-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792201",NA,"as N","Nitrogen","Dissolved","34.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904770-0610-4-C/results/933792201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-06-10 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",34.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904770-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792224",NA,"as N","Nitrogen","Total","4.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904770-0721-4-C/results/933792224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-07-21 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904770-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792227",NA,"as N","Nitrogen","Dissolved","4.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904770-0721-4-C/results/933792227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-07-21 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904770-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792233",NA,"as N","Nitrogen","Total","79.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904770-0811-4-C/results/933792233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-08-11 19:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",79.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904770-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792236",NA,"as N","Nitrogen","Dissolved","77.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904770-0811-4-C/results/933792236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-08-11 19:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",77.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904770-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792259",NA,"as N","Nitrogen","Total","15.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904770-0929-4-C/results/933792259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-09-29 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904770-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904770","SPRING CK SC-6",NA,NA,NA,NA,"41.6579900000","-111.8796700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792262",NA,"as N","Nitrogen","Dissolved","16.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904770-0929-4-C/results/933792262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-09-29 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6579900000","-111.8796700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.65799,-111.87967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904800-0406-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-06,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792268",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904800-0406-4-C/results/933792268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-04-06 18:35:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904800-0406-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-06,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792271",NA,"as N","Nitrogen","Dissolved","0.961","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904800-0406-4-C/results/933792271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-04-06 18:35:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.961,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904800-0504-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-04,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792294",NA,"as N","Nitrogen","Total","0.673","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904800-0504-4-C/results/933792294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-05-04 18:10:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.673,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904800-0504-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-04,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792297",NA,"as N","Nitrogen","Dissolved","0.999","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904800-0504-4-C/results/933792297/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-05-04 18:10:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.999,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904800-0608-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-08,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792303",NA,"as N","Nitrogen","Total","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904800-0608-4-C/results/933792303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-06-08 18:20:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904800-0608-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-08,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792306",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904800-0608-4-C/results/933792306/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-06-08 18:20:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904800-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792329",NA,"as N","Nitrogen","Total","0.737","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904800-0720-4-C/results/933792329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:55","STORET",7,NA,2021-07-20 20:00:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.737,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904800-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792332",NA,"as N","Nitrogen","Dissolved","0.757","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904800-0720-4-C/results/933792332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-07-20 20:00:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.757,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904800-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792338",NA,"as N","Nitrogen","Total","0.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904800-0810-4-C/results/933792338/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-08-10 18:50:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904800-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792341",NA,"as N","Nitrogen","Dissolved","0.835","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904800-0810-4-C/results/933792341/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-08-10 18:50:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.835,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904800-0929-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-29,"09:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792363",NA,"as N","Nitrogen","Total","0.976","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904800-0929-4-C/results/933792363/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-09-29 16:42:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.976,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904800-0929-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-29,"09:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904800","LITTLE BEAR R @ CR376 XING (MENDON RD) Replicate of 4905000",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792366",NA,"as N","Nitrogen","Dissolved","0.978","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904800-0929-4-C/results/933792366/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-09-29 16:42:00,NA,"River/Stream","Replicate of 4905000","16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.978,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904810-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792373",NA,"as N","Nitrogen","Total","8.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904810-0407-4-C/results/933792373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-04-07 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904810-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792376",NA,"as N","Nitrogen","Dissolved","8.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904810-0407-4-C/results/933792376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-04-07 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904810-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792400",NA,"as N","Nitrogen","Total","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904810-0505-4-C/results/933792400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-05-05 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904810-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792403",NA,"as N","Nitrogen","Dissolved","2.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904810-0505-4-C/results/933792403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-05-05 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904810-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792409",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904810-0610-4-C/results/933792409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-06-10 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904810-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792412",NA,"as N","Nitrogen","Dissolved","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904810-0610-4-C/results/933792412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-06-10 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904810-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792436",NA,"as N","Nitrogen","Total","8.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904810-0721-4-C/results/933792436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-07-21 16:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904810-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792439",NA,"as N","Nitrogen","Dissolved","8.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904810-0721-4-C/results/933792439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-07-21 16:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904810-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792446",NA,"as N","Nitrogen","Total","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904810-0811-4-C/results/933792446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-08-11 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904810-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792449",NA,"as N","Nitrogen","Dissolved","2.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904810-0811-4-C/results/933792449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-08-11 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904810-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"12:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792473",NA,"as N","Nitrogen","Total","4.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904810-0929-4-C/results/933792473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-09-29 19:13:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904810-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"12:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904810","SPRING CK SC-9",NA,NA,NA,NA,"41.6520000000","-111.8794200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792476",NA,"as N","Nitrogen","Dissolved","4.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904810-0929-4-C/results/933792476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-09-29 19:13:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6520000000","-111.8794200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.652,-111.87942,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904840-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904840","DITCH AB EA MILLER SC-12",NA,NA,NA,NA,"41.6555700000","-111.8690300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792483",NA,"as N","Nitrogen","Total","3.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904840-0505-4-C/results/933792483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-05-05 16:50:00,NA,"Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.65557,-111.86903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904840-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904840","DITCH AB EA MILLER SC-12",NA,NA,NA,NA,"41.6555700000","-111.8690300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792486",NA,"as N","Nitrogen","Dissolved","3.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904840-0505-4-C/results/933792486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-05-05 16:50:00,NA,"Canal Drainage",NA,"16010203",NA,NA,NA,NA,"41.6555700000","-111.8690300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.65557,-111.86903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904870-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792492",NA,"as N","Nitrogen","Total","4.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904870-0406-4-C/results/933792492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-04-06 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904870-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792495",NA,"as N","Nitrogen","Dissolved","4.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904870-0406-4-C/results/933792495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:56","STORET",7,NA,2021-04-06 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904870-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792518",NA,"as N","Nitrogen","Total","0.502","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904870-0504-4-C/results/933792518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-05-04 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.502,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904870-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792521",NA,"as N","Nitrogen","Dissolved","0.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904870-0504-4-C/results/933792521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-05-04 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904870-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792527",NA,"as N","Nitrogen","Total","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904870-0608-4-C/results/933792527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-06-08 20:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904870-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792530",NA,"as N","Nitrogen","Dissolved","0.496","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904870-0608-4-C/results/933792530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-06-08 20:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.496,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904870-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792553",NA,"as N","Nitrogen","Total","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904870-0810-4-C/results/933792553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-08-10 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904870-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792556",NA,"as N","Nitrogen","Dissolved","0.487","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904870-0810-4-C/results/933792556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-08-10 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.487,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904870-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792578",NA,"as N","Nitrogen","Total","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904870-0823-4-C/results/933792578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-08-23 21:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4904870-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792581",NA,"as N","Nitrogen","Dissolved","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4904870-0823-4-C/results/933792581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-08-23 21:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904870-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"11:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792604",NA,"as N","Nitrogen","Total","0.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904870-0928-4-C/results/933792604/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-09-28 18:28:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904870-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"11:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904870","HYRUM SLOUGH @ NIBLEY COLLEGE WARD XING",NA,NA,NA,NA,"41.6752500000","-111.8750200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792607",NA,"as N","Nitrogen","Dissolved","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904870-0928-4-C/results/933792607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-09-28 18:28:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6752500000","-111.8750200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.67525,-111.87502,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904900-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792613",NA,"as N","Nitrogen","Total","2.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904900-0406-4-C/results/933792613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-04-06 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"5999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904900-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792616",NA,"as N","Nitrogen","Dissolved","2.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904900-0406-4-C/results/933792616/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-04-06 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904900-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792639",NA,"as N","Nitrogen","Total","0.933","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904900-0504-4-C/results/933792639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-05-04 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.933,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904900-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792642",NA,"as N","Nitrogen","Dissolved","0.988","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904900-0504-4-C/results/933792642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-05-04 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.988,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904900-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792648",NA,"as N","Nitrogen","Total","0.933","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904900-0608-4-C/results/933792648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-06-08 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.933,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904900-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792651",NA,"as N","Nitrogen","Dissolved","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904900-0608-4-C/results/933792651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-06-08 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904900-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792674",NA,"as N","Nitrogen","Total","0.581","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904900-0720-4-C/results/933792674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-07-20 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.581,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904900-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792677",NA,"as N","Nitrogen","Dissolved","0.645","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904900-0720-4-C/results/933792677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-07-20 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.645,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904900-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792683",NA,"as N","Nitrogen","Total","3.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904900-0810-4-C/results/933792683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-08-10 18:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904900-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792686",NA,"as N","Nitrogen","Dissolved","3.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904900-0810-4-C/results/933792686/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:57","STORET",7,NA,2021-08-10 18:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904900-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792708",NA,"as N","Nitrogen","Total","2.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904900-0928-4-C/results/933792708/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-09-28 21:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904900-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904900","SPRING CK @ CR 376 (MENDON) XING",NA,NA,NA,NA,"41.7207200000","-111.9273100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792711",NA,"as N","Nitrogen","Dissolved","2.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904900-0928-4-C/results/933792711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-09-28 21:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7207200000","-111.9273100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.72072,-111.92731,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904920-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792717",NA,"as N","Nitrogen","Total","11.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904920-0406-4-C/results/933792717/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-04-06 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904920-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792720",NA,"as N","Nitrogen","Dissolved","11.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904920-0406-4-C/results/933792720/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-04-06 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904920-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792743",NA,"as N","Nitrogen","Total","2.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904920-0504-4-C/results/933792743/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-05-04 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904920-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792746",NA,"as N","Nitrogen","Dissolved","2.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904920-0504-4-C/results/933792746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-05-04 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904920-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792752",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904920-0608-4-C/results/933792752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-06-08 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904920-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792755",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904920-0608-4-C/results/933792755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-06-08 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904920-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792778",NA,"as N","Nitrogen","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904920-0720-4-C/results/933792778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-07-20 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904920-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792781",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904920-0720-4-C/results/933792781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-07-20 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904920-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792787",NA,"as N","Nitrogen","Total","8.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904920-0810-4-C/results/933792787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-08-10 19:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904920-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792790",NA,"as N","Nitrogen","Dissolved","8.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904920-0810-4-C/results/933792790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-08-10 19:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904920-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792812",NA,"as N","Nitrogen","Total","5.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904920-0929-4-C/results/933792812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-09-29 17:47:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904920-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904920","S FK SPRING CK E OF PELICAN POND @ RD XING",NA,NA,NA,NA,"41.6924300000","-111.9132800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792815",NA,"as N","Nitrogen","Dissolved","5.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904920-0929-4-C/results/933792815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-09-29 17:47:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6924300000","-111.9132800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.69243,-111.91328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904940-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792821",NA,"as N","Nitrogen","Total","19.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904940-0406-4-C/results/933792821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-04-06 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904940-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792824",NA,"as N","Nitrogen","Dissolved","17.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904940-0406-4-C/results/933792824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-04-06 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904940-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792847",NA,"as N","Nitrogen","Total","5.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904940-0504-4-C/results/933792847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-05-04 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904940-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792850",NA,"as N","Nitrogen","Dissolved","5.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904940-0504-4-C/results/933792850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-05-04 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904940-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792856",NA,"as N","Nitrogen","Total","11.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904940-0608-4-C/results/933792856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-06-08 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904940-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792859",NA,"as N","Nitrogen","Dissolved","11.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904940-0608-4-C/results/933792859/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:58","STORET",7,NA,2021-06-08 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904940-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792882",NA,"as N","Nitrogen","Total","1.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904940-0720-4-C/results/933792882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-07-20 21:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904940-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792885",NA,"as N","Nitrogen","Dissolved","2.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904940-0720-4-C/results/933792885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-07-20 21:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904940-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792891",NA,"as N","Nitrogen","Total","25.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904940-0810-4-C/results/933792891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-08-10 20:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",25.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904940-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792894",NA,"as N","Nitrogen","Dissolved","25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904940-0810-4-C/results/933792894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-08-10 20:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",25,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904940-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"11:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792916",NA,"as N","Nitrogen","Total","13.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904940-0929-4-C/results/933792916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-09-29 18:11:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904940-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"11:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904940","S FK SPRING CK @ US 89 XING",NA,NA,NA,NA,"41.6679800000","-111.8905100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792919",NA,"as N","Nitrogen","Dissolved","14.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904940-0929-4-C/results/933792919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-09-29 18:11:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6679800000","-111.8905100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.66798,-111.89051,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904943-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792942",NA,"as N","Nitrogen","Total","3.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904943-0407-4-C/results/933792942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-04-07 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904943-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792945",NA,"as N","Nitrogen","Dissolved","3.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904943-0407-4-C/results/933792945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-04-07 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904943-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792951",NA,"as N","Nitrogen","Total","3.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904943-0505-4-C/results/933792951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-05-05 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904943-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792954",NA,"as N","Nitrogen","Dissolved","3.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904943-0505-4-C/results/933792954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-05-05 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.96,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904943-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792960",NA,"as N","Nitrogen","Total","2.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904943-0610-4-C/results/933792960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-06-10 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904943-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792963",NA,"as N","Nitrogen","Dissolved","2.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904943-0610-4-C/results/933792963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-06-10 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904943-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792986",NA,"as N","Nitrogen","Total","3.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904943-0721-4-C/results/933792986/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-07-21 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904943-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792989",NA,"as N","Nitrogen","Dissolved","3.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904943-0721-4-C/results/933792989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-07-21 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904943-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792995",NA,"as N","Nitrogen","Total","2.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904943-0811-4-C/results/933792995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-08-11 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904943-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933792998",NA,"as N","Nitrogen","Dissolved","2.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904943-0811-4-C/results/933792998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-08-11 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904943-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793021",NA,"as N","Nitrogen","Total","4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904943-0929-4-C/results/933793021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-09-29 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904943-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904943","S FK SPRING CK W OF HYRUM WWTP AT END OF RD",NA,NA,NA,NA,"41.6541000000","-111.8888400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793024",NA,"as N","Nitrogen","Dissolved","4.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904943-0929-4-C/results/933793024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-09-29 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6541000000","-111.8888400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.6541,-111.88884,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904965-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793030",NA,"as N","Nitrogen","Total","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904965-0406-4-C/results/933793030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-04-06 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904965-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793033",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904965-0406-4-C/results/933793033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:15:59","STORET",7,NA,2021-04-06 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904965-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793056",NA,"as N","Nitrogen","Total","0.832","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904965-0504-4-C/results/933793056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-05-04 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.832,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904965-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793059",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904965-0504-4-C/results/933793059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-05-04 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904965-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793065",NA,"as N","Nitrogen","Total","0.839","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904965-0608-4-C/results/933793065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-06-08 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.839,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904965-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793068",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904965-0608-4-C/results/933793068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-06-08 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904965-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793091",NA,"as N","Nitrogen","Total","0.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904965-0720-4-C/results/933793091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-07-20 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904965-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793094",NA,"as N","Nitrogen","Dissolved","0.644","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904965-0720-4-C/results/933793094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-07-20 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.644,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904965-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793100",NA,"as N","Nitrogen","Total","4.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904965-0810-4-C/results/933793100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-08-10 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904965-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793103",NA,"as N","Nitrogen","Dissolved","4.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904965-0810-4-C/results/933793103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-08-10 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904965-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793125",NA,"as N","Nitrogen","Total","3.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904965-0929-4-C/results/933793125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-09-29 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904965-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904965","Spring Ck BL confluence Hyrum Slough at 1800 S xing",NA,NA,NA,NA,"41.6999100000","-111.9026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793128",NA,"as N","Nitrogen","Dissolved","3.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904965-0929-4-C/results/933793128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-09-29 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6999100000","-111.9026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.69991,-111.90267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904990-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793134",NA,"as N","Nitrogen","Total","0.975","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904990-0406-4-C/results/933793134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-04-06 19:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.975,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4904990-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793137",NA,"as N","Nitrogen","Dissolved","0.891","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4904990-0406-4-C/results/933793137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-04-06 19:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.891,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904990-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793160",NA,"as N","Nitrogen","Total","0.884","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904990-0504-4-C/results/933793160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-05-04 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.884,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4904990-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793163",NA,"as N","Nitrogen","Dissolved","0.951","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4904990-0504-4-C/results/933793163/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-05-04 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.951,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904990-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793169",NA,"as N","Nitrogen","Total","0.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904990-0608-4-C/results/933793169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-06-08 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4904990-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793172",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4904990-0608-4-C/results/933793172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-06-08 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904990-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793195",NA,"as N","Nitrogen","Total","0.873","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904990-0720-4-C/results/933793195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-07-20 20:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.873,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4904990-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793198",NA,"as N","Nitrogen","Dissolved","0.898","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4904990-0720-4-C/results/933793198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-07-20 20:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.898,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904990-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793204",NA,"as N","Nitrogen","Total","0.898","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904990-0810-4-C/results/933793204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-08-10 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.898,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4904990-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793207",NA,"as N","Nitrogen","Dissolved","0.886","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4904990-0810-4-C/results/933793207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-08-10 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.886,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904990-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793229",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904990-0929-4-C/results/933793229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:00","STORET",7,NA,2021-09-29 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4904990-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904990","SPRING CK 1 1/3 MI N OF COLLEGE WARD @ CR XING",NA,NA,NA,NA,"41.6979900000","-111.8810500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793232",NA,"as N","Nitrogen","Dissolved","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4904990-0929-4-C/results/933793232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-09-29 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6979900000","-111.8810500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.69799,-111.88105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905000-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793238",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905000-0406-4-C/results/933793238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-04-06 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905000-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793241",NA,"as N","Nitrogen","Dissolved","0.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905000-0406-4-C/results/933793241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-04-06 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905000-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793264",NA,"as N","Nitrogen","Total","0.658","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905000-0504-4-C/results/933793264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-05-04 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.658,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905000-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793267",NA,"as N","Nitrogen","Dissolved","0.651","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905000-0504-4-C/results/933793267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-05-04 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.651,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905000-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793273",NA,"as N","Nitrogen","Total","0.861","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905000-0608-4-C/results/933793273/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-06-08 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.861,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905000-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793276",NA,"as N","Nitrogen","Dissolved","0.785","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905000-0608-4-C/results/933793276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-06-08 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.785,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793303",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C/results/933793303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-06-15 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793307",NA,"as N","Nitrogen","Dissolved","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4905000-0615-4-C/results/933793307/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-06-15 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905000-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793330",NA,"as N","Nitrogen","Total","0.743","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905000-0720-4-C/results/933793330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-07-20 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.743,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905000-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793333",NA,"as N","Nitrogen","Dissolved","0.749","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905000-0720-4-C/results/933793333/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-07-20 19:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.749,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905000-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793339",NA,"as N","Nitrogen","Total","0.755","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905000-0810-4-C/results/933793339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-08-10 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.755,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905000-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793342",NA,"as N","Nitrogen","Dissolved","0.888","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905000-0810-4-C/results/933793342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-08-10 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.888,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793368",NA,"as N","Nitrogen","Total","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C/results/933793368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-09-14 20:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793372",NA,"as N","Nitrogen","Dissolved","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905000-0914-4-C/results/933793372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-09-14 20:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905000-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793395",NA,"as N","Nitrogen","Total","0.892","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905000-0929-4-C/results/933793395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-09-29 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.892,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905000-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793398",NA,"as N","Nitrogen","Dissolved","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905000-0929-4-C/results/933793398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-09-29 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905040-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793404",NA,"as N","Nitrogen","Total","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905040-0406-4-C/results/933793404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-04-06 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905040-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793407",NA,"as N","Nitrogen","Dissolved","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905040-0406-4-C/results/933793407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:01","STORET",7,NA,2021-04-06 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905400-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793427",NA,"as N","Nitrogen","Dissolved","0.495","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905400-0406-4-C/results/933793427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-04-06 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.495,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905400-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793433",NA,"as N","Nitrogen","Total","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905400-0406-4-C/results/933793433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-04-06 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905040-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793456",NA,"as N","Nitrogen","Total","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905040-0504-4-C/results/933793456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-05-04 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905040-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793459",NA,"as N","Nitrogen","Dissolved","0.704","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905040-0504-4-C/results/933793459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-05-04 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.704,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905040-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793465",NA,"as N","Nitrogen","Total","0.474","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905040-0608-4-C/results/933793465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-06-08 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.474,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905040-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793468",NA,"as N","Nitrogen","Dissolved","0.521","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905040-0608-4-C/results/933793468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-06-08 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.521,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793495",NA,"as N","Nitrogen","Total","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C/results/933793495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-06-15 20:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793499",NA,"as N","Nitrogen","Dissolved","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4905040-0615-4-C/results/933793499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-06-15 20:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905040-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793522",NA,"as N","Nitrogen","Total","2.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905040-0622-4-C/results/933793522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-06-22 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905040-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793528",NA,"as N","Nitrogen","Total","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905040-0720-4-C/results/933793528/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-07-20 19:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905040-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793531",NA,"as N","Nitrogen","Dissolved","1.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905040-0720-4-C/results/933793531/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-07-20 19:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905040-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793537",NA,"as N","Nitrogen","Total","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905040-0810-4-C/results/933793537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-08-10 18:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905040-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793540",NA,"as N","Nitrogen","Dissolved","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905040-0810-4-C/results/933793540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-08-10 18:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905040-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793562",NA,"as N","Nitrogen","Total","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905040-0824-4-C/results/933793562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-08-24 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793572",NA,"as N","Nitrogen","Total","0.753","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C/results/933793572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-09-14 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.753,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793576",NA,"as N","Nitrogen","Dissolved","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905040-0914-4-C/results/933793576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:02","STORET",7,NA,2021-09-14 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905040-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"14:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793599",NA,"as N","Nitrogen","Total","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905040-0928-4-C/results/933793599/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-09-28 21:34:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905040-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"14:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793602",NA,"as N","Nitrogen","Dissolved","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905040-0928-4-C/results/933793602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-09-28 21:34:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905050-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793608",NA,"as N","Nitrogen","Total","11.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905050-0406-4-C/results/933793608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-04-06 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905050-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793611",NA,"as N","Nitrogen","Dissolved","11.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905050-0406-4-C/results/933793611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-04-06 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905050-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793651",NA,"as N","Nitrogen","Total","6.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905050-0504-4-C/results/933793651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-05-04 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905050-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793654",NA,"as N","Nitrogen","Dissolved","6.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905050-0504-4-C/results/933793654/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-05-04 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.78,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905050-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793694",NA,"as N","Nitrogen","Total","2.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905050-0608-4-C/results/933793694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-06-08 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905050-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793697",NA,"as N","Nitrogen","Dissolved","2.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905050-0608-4-C/results/933793697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-06-08 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905050-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793771",NA,"as N","Nitrogen","Total","0.743","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905050-0720-4-C/results/933793771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-07-20 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.743,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905050-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793774",NA,"as N","Nitrogen","Dissolved","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905050-0720-4-C/results/933793774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-07-20 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905050-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793780",NA,"as N","Nitrogen","Total","2.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905050-0810-4-C/results/933793780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-08-10 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905050-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793783",NA,"as N","Nitrogen","Dissolved","2.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905050-0810-4-C/results/933793783/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:03","STORET",7,NA,2021-08-10 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905050-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793822",NA,"as N","Nitrogen","Total","0.427","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905050-0928-4-C/results/933793822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:04","STORET",7,NA,2021-09-28 21:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.427,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905050-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905050","Swift Slough @ CR XING bl Cnfl/ Logan Lagoons Effluent",NA,NA,NA,NA,"41.7708100000","-111.9118600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793825",NA,"as N","Nitrogen","Dissolved","0.475","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905050-0928-4-C/results/933793825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:04","STORET",7,NA,2021-09-28 21:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7708100000","-111.9118600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.475,"MG/L","Numeric","Not Reviewed","Uncensored",41.77081,-111.91186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905052-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793866",NA,"as N","Nitrogen","Total","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905052-0406-4-C/results/933793866/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:04","STORET",7,NA,2021-04-06 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905052-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793869",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905052-0406-4-C/results/933793869/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:04","STORET",7,NA,2021-04-06 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905052-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793910",NA,"as N","Nitrogen","Total","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905052-0504-4-C/results/933793910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:04","STORET",7,NA,2021-05-04 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905052-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793913",NA,"as N","Nitrogen","Dissolved","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905052-0504-4-C/results/933793913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:04","STORET",7,NA,2021-05-04 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905052-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793954",NA,"as N","Nitrogen","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905052-0608-4-C/results/933793954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:04","STORET",7,NA,2021-06-08 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905052-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933793957",NA,"as N","Nitrogen","Dissolved","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905052-0608-4-C/results/933793957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:04","STORET",7,NA,2021-06-08 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905052-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794033",NA,"as N","Nitrogen","Total","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905052-0720-4-C/results/933794033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:05","STORET",7,NA,2021-07-20 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905052-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794036",NA,"as N","Nitrogen","Dissolved","0.692","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905052-0720-4-C/results/933794036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:05","STORET",7,NA,2021-07-20 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.692,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905052-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794043",NA,"as N","Nitrogen","Total","2.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905052-0810-4-C/results/933794043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:05","STORET",7,NA,2021-08-10 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905052-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794046",NA,"as N","Nitrogen","Dissolved","2.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905052-0810-4-C/results/933794046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:05","STORET",7,NA,2021-08-10 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905052-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"13:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794086",NA,"as N","Nitrogen","Total","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905052-0928-4-C/results/933794086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:05","STORET",7,NA,2021-09-28 20:54:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905052-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"13:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905052","Swift Slough ab Logan Lagoons 002 outfall",NA,NA,NA,NA,"41.7714200000","-111.9110600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794089",NA,"as N","Nitrogen","Dissolved","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905052-0928-4-C/results/933794089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:05","STORET",7,NA,2021-09-28 20:54:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7714200000","-111.9110600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",41.77142,-111.91106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905070-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794130",NA,"as N","Nitrogen","Total","22.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905070-0406-4-C/results/933794130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:05","STORET",7,NA,2021-04-06 17:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905070-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794133",NA,"as N","Nitrogen","Dissolved","21.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905070-0406-4-C/results/933794133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:05","STORET",7,NA,2021-04-06 17:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905070-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794174",NA,"as N","Nitrogen","Total","16.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905070-0504-4-C/results/933794174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-05-04 16:15:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905070-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794177",NA,"as N","Nitrogen","Dissolved","15.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905070-0504-4-C/results/933794177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-05-04 16:15:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905070-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794217",NA,"as N","Nitrogen","Total","15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905070-0608-4-C/results/933794217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-06-08 16:45:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905070-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794220",NA,"as N","Nitrogen","Dissolved","14.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905070-0608-4-C/results/933794220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-06-08 16:45:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905070-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794261",NA,"as N","Nitrogen","Total","16.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905070-0706-4-C/results/933794261/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-07-06 17:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905070-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794264",NA,"as N","Nitrogen","Dissolved","17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905070-0706-4-C/results/933794264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-07-06 17:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905070-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794339",NA,"as N","Nitrogen","Total","16.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905070-0720-4-C/results/933794339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-07-20 18:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905070-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794342",NA,"as N","Nitrogen","Dissolved","16.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905070-0720-4-C/results/933794342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-07-20 18:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905070-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794349",NA,"as N","Nitrogen","Total","14.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905070-0810-4-C/results/933794349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-08-10 17:15:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905070-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794352",NA,"as N","Nitrogen","Dissolved","15.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905070-0810-4-C/results/933794352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:06","STORET",7,NA,2021-08-10 17:15:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905070-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"13:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794392",NA,"as N","Nitrogen","Total","16.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905070-0928-4-C/results/933794392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:07","STORET",7,NA,2021-09-28 20:22:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905070-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"13:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905070","LOGAN LAGOONS 001",NA,NA,NA,NA,"41.7397300000","-111.8994400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794395",NA,"as N","Nitrogen","Dissolved","16.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905070-0928-4-C/results/933794395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:07","STORET",7,NA,2021-09-28 20:22:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7397300000","-111.8994400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.73973,-111.89944,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905078-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794436",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905078-0406-4-C/results/933794436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:07","STORET",7,NA,2021-04-06 17:30:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905078-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794439",NA,"as N","Nitrogen","Dissolved","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905078-0406-4-C/results/933794439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:07","STORET",7,NA,2021-04-06 17:30:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905078-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794480",NA,"as N","Nitrogen","Total","0.501","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905078-0504-4-C/results/933794480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:07","STORET",7,NA,2021-05-04 16:30:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.501,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905078-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794483",NA,"as N","Nitrogen","Dissolved","0.711","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905078-0504-4-C/results/933794483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:07","STORET",7,NA,2021-05-04 16:30:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.711,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905078-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794524",NA,"as N","Nitrogen","Total","0.264","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905078-0608-4-C/results/933794524/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:07","STORET",7,NA,2021-06-08 16:30:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.264,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905078-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794527",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905078-0608-4-C/results/933794527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:07","STORET",7,NA,2021-06-08 16:30:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905078-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794568",NA,"as N","Nitrogen","Total","11.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905078-0706-4-C/results/933794568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:08","STORET",7,NA,2021-07-06 18:00:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905078-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794571",NA,"as N","Nitrogen","Dissolved","11.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905078-0706-4-C/results/933794571/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:08","STORET",7,NA,2021-07-06 18:00:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905078-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794646",NA,"as N","Nitrogen","Total","7.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905078-0720-4-C/results/933794646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:08","STORET",7,NA,2021-07-20 18:25:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905078-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794649",NA,"as N","Nitrogen","Dissolved","7.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905078-0720-4-C/results/933794649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:08","STORET",7,NA,2021-07-20 18:25:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905078-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794656",NA,"as N","Nitrogen","Total","6.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905078-0810-4-C/results/933794656/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:08","STORET",7,NA,2021-08-10 17:25:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905078-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794659",NA,"as N","Nitrogen","Dissolved","7.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905078-0810-4-C/results/933794659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:08","STORET",7,NA,2021-08-10 17:25:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905078-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"13:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794699",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905078-0928-4-C/results/933794699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:08","STORET",7,NA,2021-09-28 20:32:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905078-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"13:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905078","Receiving stream ab Logan Lagoons at 2600 W Xing",NA,NA,NA,NA,"41.7382600000","-111.8971000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794702",NA,"as N","Nitrogen","Dissolved","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905078-0928-4-C/results/933794702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:08","STORET",7,NA,2021-09-28 20:32:00,NA,"Canal Transport",NA,"16010203",NA,NA,NA,NA,"41.7382600000","-111.8971000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",41.73826,-111.8971,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905090-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794743",NA,"as N","Nitrogen","Total","16.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905090-0406-4-C/results/933794743/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-04-06 17:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905090-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794746",NA,"as N","Nitrogen","Dissolved","16.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905090-0406-4-C/results/933794746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-04-06 17:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905090-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794787",NA,"as N","Nitrogen","Total","11.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905090-0504-4-C/results/933794787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-05-04 16:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905090-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794790",NA,"as N","Nitrogen","Dissolved","11.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905090-0504-4-C/results/933794790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-05-04 16:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905090-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794831",NA,"as N","Nitrogen","Total","6.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905090-0608-4-C/results/933794831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-06-08 17:00:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905090-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905090","Logan Lagoons 002",NA,NA,NA,NA,"41.7710500000","-111.9111300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794834",NA,"as N","Nitrogen","Dissolved","6.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905090-0608-4-C/results/933794834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-06-08 17:00:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.7710500000","-111.9111300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.77105,-111.91113,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905135-0622-4-C","Quality Control Sample-Field Blank","Water",NA,2021-06-22,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905135","Logan River watershed nonpoint source QA/QC blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794874","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905135-0622-4-C/results/933794874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-06-22 19:35:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905135-0824-4-C","Quality Control Sample-Field Blank","Water",NA,2021-08-24,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905135","Logan River watershed nonpoint source QA/QC blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794880","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905135-0824-4-C/results/933794880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-08-24 20:50:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905137-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905137","Logan River AB boat launch near SR 30 at 3600 West",NA,NA,NA,NA,"41.7430900000","-111.9198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794886",NA,"as N","Nitrogen","Total","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905137-0622-4-C/results/933794886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-06-22 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.74309,-111.91986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905137-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905137","Logan River AB boat launch near SR 30 at 3600 West",NA,NA,NA,NA,"41.7430900000","-111.9198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794892",NA,"as N","Nitrogen","Total","0.676","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905137-0824-4-C/results/933794892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-08-24 20:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.676,"MG/L","Numeric","Not Reviewed","Uncensored",41.74309,-111.91986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905140-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794898",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905140-0622-4-C/results/933794898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:09","STORET",7,NA,2021-06-22 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794906",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C/results/933794906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-22 17:24:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794909",NA,"as N","Nitrogen","Dissolved","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905140-0622-4-C/results/933794909/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-22 17:24:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905140-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794933",NA,"as N","Nitrogen","Total","0.453","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905140-0824-4-C/results/933794933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-08-24 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.453,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905142-0622-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-22,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794939",NA,"as N","Nitrogen","Total","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905142-0622-4-C/results/933794939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-22 17:30:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905142-0824-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-24,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794945",NA,"as N","Nitrogen","Total","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905142-0824-4-C/results/933794945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-08-24 18:45:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905188-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794951",NA,"as N","Nitrogen","Total","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905188-0622-4-C/results/933794951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-22 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"11:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794959",NA,"as N","Nitrogen","Total","0.798","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C/results/933794959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-23 18:17:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.798,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"11:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794962",NA,"as N","Nitrogen","Dissolved","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905188-0623-4-C/results/933794962/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-23 18:17:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905188-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794986",NA,"as N","Nitrogen","Total","0.698","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905188-0824-4-C/results/933794986/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-08-24 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.698,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905192-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794992",NA,"as N","Nitrogen","Total","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905192-0622-4-C/results/933794992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-22 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905192-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933794998",NA,"as N","Nitrogen","Total","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905192-0824-4-C/results/933794998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-08-24 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C","Sample-Routine","Water",NA,2021-09-07,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795006",NA,"as N","Nitrogen","Total","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C/results/933795006/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-09-07 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C","Sample-Routine","Water",NA,2021-09-07,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795009",NA,"as N","Nitrogen","Dissolved","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905192-0907-4-C/results/933795009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-09-07 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795034",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C/results/933795034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-21 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795037",NA,"as N","Nitrogen","Dissolved","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905195-0621-4-C/results/933795037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-21 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905195-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795061",NA,"as N","Nitrogen","Total","0.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905195-0622-4-C/results/933795061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-22 15:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905195-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795067",NA,"as N","Nitrogen","Total","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905195-0824-4-C/results/933795067/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-08-24 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905198-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795073",NA,"as N","Nitrogen","Total","0.118","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905198-0622-4-C/results/933795073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:10","STORET",7,NA,2021-06-22 15:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.118,"MG/L","Numeric","Pass","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905198-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795079",NA,"as N","Nitrogen","Total","0.177","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905198-0824-4-C/results/933795079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-08-24 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.177,"MG/L","Numeric","Pass","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795087",NA,"as N","Nitrogen","Total","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C/results/933795087/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-09-01 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795090",NA,"as N","Nitrogen","Dissolved","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905198-0901-4-C/results/933795090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-09-01 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905200-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795114",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905200-0405-4-C/results/933795114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-04-05 22:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905200-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795117",NA,"as N","Nitrogen","Dissolved","0.379","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905200-0405-4-C/results/933795117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-04-05 22:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.379,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905200-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795140",NA,"as N","Nitrogen","Total","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905200-0504-4-C/results/933795140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-05-04 15:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905200-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795143",NA,"as N","Nitrogen","Dissolved","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905200-0504-4-C/results/933795143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-05-04 15:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905200-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795149",NA,"as N","Nitrogen","Total","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905200-0608-4-C/results/933795149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-06-08 16:08:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905200-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795152",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905200-0608-4-C/results/933795152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-06-08 16:08:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905200-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795175",NA,"as N","Nitrogen","Total","0.171","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905200-0720-4-C/results/933795175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-07-20 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.171,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905200-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795178",NA,"as N","Nitrogen","Dissolved","0.147","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905200-0720-4-C/results/933795178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-07-20 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.147,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905200-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795184",NA,"as N","Nitrogen","Total","0.128","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905200-0810-4-C/results/933795184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-08-10 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.128,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905200-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795187",NA,"as N","Nitrogen","Dissolved","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905200-0810-4-C/results/933795187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-08-10 16:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905200-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"12:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795209",NA,"as N","Nitrogen","Total","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905200-0928-4-C/results/933795209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-09-28 19:52:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905200-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"12:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905200","LOGAN R AT MOUTH OF CANYON",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795212",NA,"as N","Nitrogen","Dissolved","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905200-0928-4-C/results/933795212/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-09-28 19:52:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905301-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795218",NA,"as N","Nitrogen","Total","0.206","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905301-0405-4-C/results/933795218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-04-05 22:50:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.206,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905301-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795221",NA,"as N","Nitrogen","Dissolved","0.196","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905301-0405-4-C/results/933795221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-04-05 22:50:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.196,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905301-0504-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-04,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795244",NA,"as N","Nitrogen","Total","0.303","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905301-0504-4-C/results/933795244/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-05-04 16:00:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.303,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905301-0504-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-04,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795247",NA,"as N","Nitrogen","Dissolved","0.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905301-0504-4-C/results/933795247/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-05-04 16:00:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905301-0608-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-08,"09:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795253",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905301-0608-4-C/results/933795253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-06-08 16:11:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905301-0608-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-08,"09:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795256",NA,"as N","Nitrogen","Dissolved","0.206","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905301-0608-4-C/results/933795256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:11","STORET",7,NA,2021-06-08 16:11:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.206,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905301-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795279",NA,"as N","Nitrogen","Total","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905301-0720-4-C/results/933795279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-07-20 17:05:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905301-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795282",NA,"as N","Nitrogen","Dissolved","0.509","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905301-0720-4-C/results/933795282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-07-20 17:05:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.509,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905301-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795288",NA,"as N","Nitrogen","Total","0.137","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905301-0810-4-C/results/933795288/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-08-10 16:45:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.137,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905301-0810-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-10,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795291",NA,"as N","Nitrogen","Dissolved","0.144","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905301-0810-4-C/results/933795291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-08-10 16:45:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.144,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905301-0928-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-28,"12:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795313",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905301-0928-4-C/results/933795313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-09-28 19:56:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905301-0928-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-28,"12:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905301","LOGAN R AT MOUTH OF CANYON Replicate of 4905200",NA,NA,NA,NA,"41.7435600000","-111.7845000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795316",NA,"as N","Nitrogen","Dissolved","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905301-0928-4-C/results/933795316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-09-28 19:56:00,NA,"River/Stream","Replicate of 4905200","16010203",NA,NA,NA,NA,"41.7435600000","-111.7845000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",41.74356,-111.7845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905400-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795322",NA,"as N","Nitrogen","Total","0.641","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905400-0504-4-C/results/933795322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-05-04 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.641,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905400-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795325",NA,"as N","Nitrogen","Dissolved","0.874","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905400-0504-4-C/results/933795325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-05-04 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.874,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905400-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795331",NA,"as N","Nitrogen","Total","0.723","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905400-0608-4-C/results/933795331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-06-08 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.723,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905400-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795334",NA,"as N","Nitrogen","Dissolved","0.931","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905400-0608-4-C/results/933795334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-06-08 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.931,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210622-4905400-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795357",NA,"as N","Nitrogen","Total","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210622-4905400-0622-4-C/results/933795357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-06-22 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C","Sample-Routine","Water",NA,2021-06-24,"12:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795365",NA,"as N","Nitrogen","Total","0.216","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C/results/933795365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-06-24 19:49:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.216,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C","Sample-Routine","Water",NA,2021-06-24,"12:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795368",NA,"as N","Nitrogen","Dissolved","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4905400-0624-4-C/results/933795368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-06-24 19:49:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905400-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795392",NA,"as N","Nitrogen","Total","0.197","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905400-0720-4-C/results/933795392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-07-20 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.197,"MG/L","Numeric","Pass","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905400-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795395",NA,"as N","Nitrogen","Dissolved","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905400-0720-4-C/results/933795395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-07-20 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905400-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795401",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905400-0810-4-C/results/933795401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-08-10 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905400-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795404",NA,"as N","Nitrogen","Dissolved","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905400-0810-4-C/results/933795404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-08-10 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV210824-4905400-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795426",NA,"as N","Nitrogen","Total","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV210824-4905400-0824-4-C/results/933795426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-08-24 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905400-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795432",NA,"as N","Nitrogen","Total","0.336","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905400-0929-4-C/results/933795432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-09-29 17:04:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.336,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905400-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"10:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795435",NA,"as N","Nitrogen","Dissolved","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905400-0929-4-C/results/933795435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:12","STORET",7,NA,2021-09-29 17:04:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905440-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795441",NA,"as N","Nitrogen","Total","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905440-0406-4-C/results/933795441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-04-06 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905440-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795444",NA,"as N","Nitrogen","Dissolved","0.679","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905440-0406-4-C/results/933795444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-04-06 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.679,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905440-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795467",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905440-0504-4-C/results/933795467/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-05-04 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905440-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795470",NA,"as N","Nitrogen","Dissolved","0.679","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905440-0504-4-C/results/933795470/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-05-04 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.679,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905440-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795476",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905440-0608-4-C/results/933795476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-06-08 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905440-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795479",NA,"as N","Nitrogen","Dissolved","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905440-0608-4-C/results/933795479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-06-08 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905440-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795502",NA,"as N","Nitrogen","Total","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905440-0720-4-C/results/933795502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-07-20 22:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905440-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795505",NA,"as N","Nitrogen","Dissolved","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905440-0720-4-C/results/933795505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-07-20 22:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905440-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795511",NA,"as N","Nitrogen","Total","0.105","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905440-0811-4-C/results/933795511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-08-11 16:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.105,"MG/L","Numeric","Pass","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905440-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795514",NA,"as N","Nitrogen","Dissolved","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905440-0811-4-C/results/933795514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-08-11 16:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905440-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795537",NA,"as N","Nitrogen","Total","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905440-0928-4-C/results/933795537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-09-28 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905440-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905440","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795540",NA,"as N","Nitrogen","Dissolved","0.222","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905440-0928-4-C/results/933795540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-09-28 17:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.222,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905441-0406-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-06,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795546",NA,"as N","Nitrogen","Total","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905441-0406-4-C/results/933795546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-04-06 21:15:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905441-0406-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-06,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795549",NA,"as N","Nitrogen","Dissolved","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905441-0406-4-C/results/933795549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-04-06 21:15:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905441-0504-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-04,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795572",NA,"as N","Nitrogen","Total","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905441-0504-4-C/results/933795572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-05-04 21:10:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905441-0504-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-04,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795575",NA,"as N","Nitrogen","Dissolved","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905441-0504-4-C/results/933795575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-05-04 21:10:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905441-0608-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-08,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795581",NA,"as N","Nitrogen","Total","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905441-0608-4-C/results/933795581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-06-08 21:00:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905441-0608-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-08,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795584",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905441-0608-4-C/results/933795584/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:13","STORET",7,NA,2021-06-08 21:00:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905441-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"15:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795607",NA,"as N","Nitrogen","Total","0.139","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905441-0720-4-C/results/933795607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-07-20 22:35:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.139,"MG/L","Numeric","Pass","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905441-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"15:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795610",NA,"as N","Nitrogen","Dissolved","0.527","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905441-0720-4-C/results/933795610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-07-20 22:35:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.527,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905441-0811-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-11,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795616",NA,"as N","Nitrogen","Total","0.105","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905441-0811-4-C/results/933795616/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-08-11 16:30:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.105,"MG/L","Numeric","Pass","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905441-0811-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-11,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795619",NA,"as N","Nitrogen","Dissolved","0.103","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905441-0811-4-C/results/933795619/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-08-11 16:30:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.103,"MG/L","Numeric","Pass","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905441-0928-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-28,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795642",NA,"as N","Nitrogen","Total","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905441-0928-4-C/results/933795642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-09-28 17:55:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905441-0928-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-28,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905441","BLACKSMITH FK R AT MOUTH OF CANYON AT U101 XING Replicate of 4905440",NA,NA,NA,NA,"41.6265900000","-111.8007800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795645",NA,"as N","Nitrogen","Dissolved","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905441-0928-4-C/results/933795645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-09-28 17:55:00,NA,"River/Stream","Replicate of 4905440","16010203",NA,NA,NA,NA,"41.6265900000","-111.8007800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",41.62659,-111.80078,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905520-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795669",NA,"as N","Nitrogen","Total","4.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905520-0407-4-C/results/933795669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-04-07 17:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905520-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795672",NA,"as N","Nitrogen","Dissolved","4.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905520-0407-4-C/results/933795672/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-04-07 17:10:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905520-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795679",NA,"as N","Nitrogen","Total","7.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905520-0505-4-C/results/933795679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-05-05 17:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905520-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905520","HYRUM WWTP",NA,NA,NA,NA,"41.6520200000","-111.8807200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795682",NA,"as N","Nitrogen","Dissolved","7.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905520-0505-4-C/results/933795682/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-05-05 17:40:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6520200000","-111.8807200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.65202,-111.88072,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905540-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795706",NA,"as N","Nitrogen","Total","45.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905540-0407-4-C/results/933795706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-04-07 16:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",45.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905540-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795709",NA,"as N","Nitrogen","Dissolved","45.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905540-0407-4-C/results/933795709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-04-07 16:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",45.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905540-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795716",NA,"as N","Nitrogen","Total","36.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905540-0505-4-C/results/933795716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-05-05 16:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",36.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905540-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795719",NA,"as N","Nitrogen","Dissolved","36.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905540-0505-4-C/results/933795719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-05-05 16:30:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",36.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905540-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795726",NA,"as N","Nitrogen","Total","37.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905540-0610-4-C/results/933795726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-06-10 17:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",37.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905540-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795729",NA,"as N","Nitrogen","Dissolved","38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905540-0610-4-C/results/933795729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-06-10 17:50:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",38,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905540-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795753",NA,"as N","Nitrogen","Total","132","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905540-0811-4-C/results/933795753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-08-11 19:05:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",132,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905540-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795756",NA,"as N","Nitrogen","Dissolved","128","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905540-0811-4-C/results/933795756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-08-11 19:05:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",128,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905540-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"11:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795780",NA,"as N","Nitrogen","Total","96.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905540-0929-4-C/results/933795780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-09-29 18:44:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",96.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905540-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"11:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905540","E. A. MILLER CO. EFFLUENT",NA,NA,NA,NA,"41.6556700000","-111.8689400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795783",NA,"as N","Nitrogen","Dissolved","97.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905540-0929-4-C/results/933795783/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:14","STORET",7,NA,2021-09-29 18:44:00,NA,"Facility Other",NA,"16010203",NA,NA,NA,NA,"41.6556700000","-111.8689400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",97.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.65567,-111.86894,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905580-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795807",NA,"as N","Nitrogen","Total","0.993","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905580-0407-4-C/results/933795807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-04-07 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.993,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905580-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795810",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905580-0407-4-C/results/933795810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-04-07 18:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905580-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795817",NA,"as N","Nitrogen","Total","0.736","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905580-0505-4-C/results/933795817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-05-05 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.736,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905580-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795820",NA,"as N","Nitrogen","Dissolved","0.854","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905580-0505-4-C/results/933795820/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-05-05 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.854,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905580-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795826",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905580-0610-4-C/results/933795826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-06-10 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905580-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795829",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905580-0610-4-C/results/933795829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-06-10 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905580-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795852",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905580-0811-4-C/results/933795852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-08-11 21:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905580-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795855",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905580-0811-4-C/results/933795855/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-08-11 21:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905580-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795878",NA,"as N","Nitrogen","Total","0.817","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905580-0823-4-C/results/933795878/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-08-23 22:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.817,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905580-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795881",NA,"as N","Nitrogen","Dissolved","0.975","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905580-0823-4-C/results/933795881/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-08-23 22:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.975,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905590-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795904",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905590-0407-4-C/results/933795904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-04-07 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905590-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795907",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905590-0407-4-C/results/933795907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-04-07 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905590-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795930",NA,"as N","Nitrogen","Total","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905590-0505-4-C/results/933795930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-05-05 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.869,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905590-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795933",NA,"as N","Nitrogen","Dissolved","0.963","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905590-0505-4-C/results/933795933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-05-05 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.963,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905590-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795939",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905590-0610-4-C/results/933795939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-06-10 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905590-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795942",NA,"as N","Nitrogen","Dissolved","0.979","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905590-0610-4-C/results/933795942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-06-10 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.979,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905590-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795965",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905590-0811-4-C/results/933795965/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-08-11 21:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905590-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795968",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905590-0811-4-C/results/933795968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:15","STORET",7,NA,2021-08-11 21:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905590-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795991",NA,"as N","Nitrogen","Total","0.922","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905590-0823-4-C/results/933795991/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-08-23 22:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.922,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905590-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933795994",NA,"as N","Nitrogen","Dissolved","0.964","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905590-0823-4-C/results/933795994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-08-23 22:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.964,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905630-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796034",NA,"as N","Nitrogen","Total","0.514","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905630-0407-4-C/results/933796034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-04-07 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.514,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905630-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796037",NA,"as N","Nitrogen","Dissolved","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905630-0407-4-C/results/933796037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-04-07 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905630-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796043",NA,"as N","Nitrogen","Total","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905630-0505-4-C/results/933796043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-05-05 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905630-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796046",NA,"as N","Nitrogen","Dissolved","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905630-0505-4-C/results/933796046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-05-05 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905630-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796052",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905630-0610-4-C/results/933796052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-06-10 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905630-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796055",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905630-0610-4-C/results/933796055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-06-10 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905630-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796061",NA,"as N","Nitrogen","Total","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905630-0721-4-C/results/933796061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-07-21 17:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905630-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796064",NA,"as N","Nitrogen","Dissolved","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905630-0721-4-C/results/933796064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-07-21 17:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905630-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796070",NA,"as N","Nitrogen","Total","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905630-0811-4-C/results/933796070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-08-11 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905630-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796073",NA,"as N","Nitrogen","Dissolved","0.965","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905630-0811-4-C/results/933796073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-08-11 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.965,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905630-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"13:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796096",NA,"as N","Nitrogen","Total","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905630-0929-4-C/results/933796096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-09-29 20:08:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905630-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"13:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905630","LITTLE BEAR R NR WELLSVILLE @SR101 XING",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796099",NA,"as N","Nitrogen","Dissolved","0.603","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905630-0929-4-C/results/933796099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-09-29 20:08:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.603,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905631-0407-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-07,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796122",NA,"as N","Nitrogen","Total","0.548","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905631-0407-4-C/results/933796122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-04-07 17:50:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.548,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905631-0407-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-07,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796125",NA,"as N","Nitrogen","Dissolved","0.657","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905631-0407-4-C/results/933796125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-04-07 17:50:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.657,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905631-0505-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-05,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796131",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905631-0505-4-C/results/933796131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-05-05 18:40:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905631-0505-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-05,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796134",NA,"as N","Nitrogen","Dissolved","0.647","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905631-0505-4-C/results/933796134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-05-05 18:40:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.647,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905631-0610-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-10,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796140",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905631-0610-4-C/results/933796140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-06-10 19:15:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905631-0610-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-10,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796143",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905631-0610-4-C/results/933796143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:16","STORET",7,NA,2021-06-10 19:15:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905631-0721-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-21,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796166",NA,"as N","Nitrogen","Total","0.633","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905631-0721-4-C/results/933796166/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-07-21 17:10:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.633,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905631-0721-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-21,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796169",NA,"as N","Nitrogen","Dissolved","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905631-0721-4-C/results/933796169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-07-21 17:10:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905631-0811-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-11,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796175",NA,"as N","Nitrogen","Total","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905631-0811-4-C/results/933796175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-08-11 20:45:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905631-0811-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-11,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796178",NA,"as N","Nitrogen","Dissolved","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905631-0811-4-C/results/933796178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-08-11 20:45:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905631-0929-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-29,"13:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796201",NA,"as N","Nitrogen","Total","0.405","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905631-0929-4-C/results/933796201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-09-29 20:13:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.405,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905631-0929-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-29,"13:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905631","LITTLE BEAR R NR WELLSVILLE @SR101 XING Replicate of 4905630",NA,NA,NA,NA,"41.6433900000","-111.9172500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796204",NA,"as N","Nitrogen","Dissolved","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905631-0929-4-C/results/933796204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-09-29 20:13:00,NA,"River/Stream","Replicate of 4905630","16010203",NA,NA,NA,NA,"41.6433900000","-111.9172500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",41.64339,-111.91725,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905640-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796227",NA,"as N","Nitrogen","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905640-0407-4-C/results/933796227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-04-07 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905640-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796230",NA,"as N","Nitrogen","Dissolved","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905640-0407-4-C/results/933796230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-04-07 18:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905640-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796236",NA,"as N","Nitrogen","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905640-0505-4-C/results/933796236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-05-05 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905640-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796239",NA,"as N","Nitrogen","Dissolved","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905640-0505-4-C/results/933796239/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-05-05 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905640-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796245",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905640-0610-4-C/results/933796245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-06-10 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905640-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796248",NA,"as N","Nitrogen","Dissolved","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905640-0610-4-C/results/933796248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-06-10 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4905640-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796271",NA,"as N","Nitrogen","Total","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4905640-0622-4-C/results/933796271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-06-22 23:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4905640-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796274",NA,"as N","Nitrogen","Dissolved","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4905640-0622-4-C/results/933796274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-06-22 23:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905640-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796297",NA,"as N","Nitrogen","Total","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905640-0721-4-C/results/933796297/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-07-21 17:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905640-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796300",NA,"as N","Nitrogen","Dissolved","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905640-0721-4-C/results/933796300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-07-21 17:25:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905640-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796306",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905640-0811-4-C/results/933796306/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-08-11 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905640-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796309",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905640-0811-4-C/results/933796309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-08-11 21:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905650-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796330",NA,"as N","Nitrogen","Total","0.803","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905650-0811-4-C/results/933796330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:17","STORET",7,NA,2021-08-11 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.803,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905650-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796335",NA,"as N","Nitrogen","Dissolved","0.935","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905650-0811-4-C/results/933796335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-08-11 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.935,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905640-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796358",NA,"as N","Nitrogen","Total","0.963","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905640-0823-4-C/results/933796358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-08-23 21:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.963,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905640-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796361",NA,"as N","Nitrogen","Dissolved","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905640-0823-4-C/results/933796361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-08-23 21:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.869,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905640-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"13:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796384",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905640-0929-4-C/results/933796384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-09-29 20:33:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905640-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"13:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905640","WELLSVILLE CK AB CNFL/ LITTLE BEAR R",NA,NA,NA,NA,"41.6464000000","-111.9257800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796387",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905640-0929-4-C/results/933796387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-09-29 20:33:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6464000000","-111.9257800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.6464,-111.92578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905650-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796409",NA,"as N","Nitrogen","Dissolved","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905650-0407-4-C/results/933796409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-04-07 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905650-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796415",NA,"as N","Nitrogen","Total","0.524","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905650-0505-4-C/results/933796415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-05-05 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.524,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905650-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796418",NA,"as N","Nitrogen","Dissolved","0.769","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905650-0505-4-C/results/933796418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-05-05 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.769,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905650-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796424",NA,"as N","Nitrogen","Total","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905650-0610-4-C/results/933796424/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-06-10 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905650-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796427",NA,"as N","Nitrogen","Dissolved","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905650-0610-4-C/results/933796427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-06-10 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905650-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796450",NA,"as N","Nitrogen","Total","0.705","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905650-0721-4-C/results/933796450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-07-21 16:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.705,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905650-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796453",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905650-0721-4-C/results/933796453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-07-21 16:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905650-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"12:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796459",NA,"as N","Nitrogen","Total","0.671","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905650-0929-4-C/results/933796459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-09-29 19:53:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.671,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905650-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"12:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905650","LITTLE BEAR R 1MI BL HYRUM RES AT CR XING",NA,NA,NA,NA,"41.6335400000","-111.8905000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796462",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905650-0929-4-C/results/933796462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-09-29 19:53:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6335400000","-111.8905000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",41.63354,-111.8905,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905670-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796468",NA,"as N","Nitrogen","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905670-0406-4-C/results/933796468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-04-06 21:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905670-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796471",NA,"as N","Nitrogen","Dissolved","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905670-0406-4-C/results/933796471/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-04-06 21:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905670-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796494",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905670-0504-4-C/results/933796494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-05-04 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905670-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796497",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905670-0504-4-C/results/933796497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-05-04 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796507",NA,"as N","Nitrogen","Total","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C/results/933796507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-06-01 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796511",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905670-0601-4-C/results/933796511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:18","STORET",7,NA,2021-06-01 20:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905670-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796536",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905670-0720-4-C/results/933796536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-07-20 22:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905670-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796539",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905670-0720-4-C/results/933796539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-07-20 22:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905670-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796545",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905670-0811-4-C/results/933796545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-08-11 16:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905670-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796548",NA,"as N","Nitrogen","Dissolved","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905670-0811-4-C/results/933796548/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-08-11 16:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C","Sample-Routine","Water",NA,2021-09-15,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796575",NA,"as N","Nitrogen","Total","0.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C/results/933796575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-09-15 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C","Sample-Routine","Water",NA,2021-09-15,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796579",NA,"as N","Nitrogen","Dissolved","0.911","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905670-0915-4-C/results/933796579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-09-15 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.911,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905670-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796602",NA,"as N","Nitrogen","Total","0.886","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905670-0928-4-C/results/933796602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-09-28 17:24:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.886,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905670-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905670","LITTLE BEAR R BL WHITE TROUT FARM AT CR XING",NA,NA,NA,NA,"41.5757600000","-111.8543900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796605",NA,"as N","Nitrogen","Dissolved","0.829","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905670-0928-4-C/results/933796605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-09-28 17:24:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5757600000","-111.8543900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.829,"MG/L","Numeric","Not Reviewed","Uncensored",41.57576,-111.85439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905700-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796611",NA,"as N","Nitrogen","Total","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905700-0406-4-C/results/933796611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-04-06 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905700-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796614",NA,"as N","Nitrogen","Dissolved","0.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905700-0406-4-C/results/933796614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-04-06 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905700-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796637",NA,"as N","Nitrogen","Total","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905700-0504-4-C/results/933796637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-05-04 21:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905700-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796640",NA,"as N","Nitrogen","Dissolved","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905700-0504-4-C/results/933796640/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-05-04 21:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905700-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796646",NA,"as N","Nitrogen","Total","0.457","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905700-0608-4-C/results/933796646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-06-08 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.457,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905700-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796649",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905700-0608-4-C/results/933796649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-06-08 21:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905700-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796672",NA,"as N","Nitrogen","Total","0.434","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905700-0720-4-C/results/933796672/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-07-20 23:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.434,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905700-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796675",NA,"as N","Nitrogen","Dissolved","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905700-0720-4-C/results/933796675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-07-20 23:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905700-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796681",NA,"as N","Nitrogen","Total","0.462","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905700-0811-4-C/results/933796681/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-08-11 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.462,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905700-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796684",NA,"as N","Nitrogen","Dissolved","0.543","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905700-0811-4-C/results/933796684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-08-11 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.543,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905700-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796707",NA,"as N","Nitrogen","Total","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905700-0928-4-C/results/933796707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:19","STORET",7,NA,2021-09-28 17:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905700-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905700","LITTLE BEAR R W OF AVON AT CR XING",NA,NA,NA,NA,"41.5360400000","-111.8306400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796710",NA,"as N","Nitrogen","Dissolved","0.276","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905700-0928-4-C/results/933796710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-09-28 17:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5360400000","-111.8306400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.276,"MG/L","Numeric","Not Reviewed","Uncensored",41.53604,-111.83064,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905740-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796716",NA,"as N","Nitrogen","Total","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905740-0406-4-C/results/933796716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-04-06 22:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905740-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796719",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905740-0406-4-C/results/933796719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-04-06 22:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905740-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796742",NA,"as N","Nitrogen","Total","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905740-0504-4-C/results/933796742/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-05-04 22:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905740-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796745",NA,"as N","Nitrogen","Dissolved","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905740-0504-4-C/results/933796745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-05-04 22:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905740-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796751",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905740-0608-4-C/results/933796751/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-06-08 22:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905740-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796754",NA,"as N","Nitrogen","Dissolved","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905740-0608-4-C/results/933796754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-06-08 22:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905740-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796777",NA,"as N","Nitrogen","Total","0.196","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905740-0720-4-C/results/933796777/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-07-20 23:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.196,"MG/L","Numeric","Pass","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905740-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796780",NA,"as N","Nitrogen","Dissolved","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905740-0720-4-C/results/933796780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-07-20 23:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905740-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796786",NA,"as N","Nitrogen","Total","0.129","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905740-0811-4-C/results/933796786/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-08-11 17:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.129,"MG/L","Numeric","Pass","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905740-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905740","S FORK LITTLE BEAR RIVER AB CNFL / E FORK LITTLE BEAR",NA,NA,NA,NA,"41.5146900000","-111.8127900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796789",NA,"as N","Nitrogen","Dissolved","0.086","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905740-0811-4-C/results/933796789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-08-11 17:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5146900000","-111.8127900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.086,"MG/L","Numeric","Pass","Uncensored",41.51469,-111.81279,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905750-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796812",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905750-0406-4-C/results/933796812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-04-06 21:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905750-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796815",NA,"as N","Nitrogen","Dissolved","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905750-0406-4-C/results/933796815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-04-06 21:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905750-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796838",NA,"as N","Nitrogen","Total","0.304","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905750-0504-4-C/results/933796838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-05-04 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.304,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905750-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796841",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905750-0504-4-C/results/933796841/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-05-04 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905750-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796847",NA,"as N","Nitrogen","Total","0.912","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905750-0608-4-C/results/933796847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-06-08 21:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.912,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905750-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796850",NA,"as N","Nitrogen","Dissolved","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905750-0608-4-C/results/933796850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-06-08 21:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905750-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796873",NA,"as N","Nitrogen","Total","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905750-0720-4-C/results/933796873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:20","STORET",7,NA,2021-07-20 23:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905750-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796876",NA,"as N","Nitrogen","Dissolved","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905750-0720-4-C/results/933796876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-07-20 23:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905750-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796882",NA,"as N","Nitrogen","Total","0.172","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905750-0811-4-C/results/933796882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-08-11 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.172,"MG/L","Numeric","Pass","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905750-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796885",NA,"as N","Nitrogen","Dissolved","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905750-0811-4-C/results/933796885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-08-11 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905750-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"09:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796908",NA,"as N","Nitrogen","Total","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905750-0928-4-C/results/933796908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-09-28 16:53:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905750-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"09:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905750","E FK LITTLE BEAR R AB CNFL / S FK LITTLE BEAR R",NA,NA,NA,NA,"41.5296600000","-111.8129900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796911",NA,"as N","Nitrogen","Dissolved","0.125","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905750-0928-4-C/results/933796911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-09-28 16:53:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5296600000","-111.8129900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.125,"MG/L","Numeric","Pass","Uncensored",41.52966,-111.81299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905770-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796917",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905770-0608-4-C/results/933796917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-06-08 22:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905770-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796920",NA,"as N","Nitrogen","Dissolved","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905770-0608-4-C/results/933796920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-06-08 22:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4905770-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796943",NA,"as N","Nitrogen","Total","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4905770-0622-4-C/results/933796943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-06-22 22:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4905770-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796946",NA,"as N","Nitrogen","Dissolved","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4905770-0622-4-C/results/933796946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-06-22 22:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905770-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796969",NA,"as N","Nitrogen","Total","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905770-0706-4-C/results/933796969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-07-06 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4905770-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796972",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4905770-0706-4-C/results/933796972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-07-06 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905770-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796995",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905770-0720-4-C/results/933796995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-07-21 00:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905770-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933796998",NA,"as N","Nitrogen","Dissolved","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905770-0720-4-C/results/933796998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-07-21 00:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905770-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797004",NA,"as N","Nitrogen","Total","0.13","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905770-0811-4-C/results/933797004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-08-11 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.13,"MG/L","Numeric","Pass","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905770-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797007",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905770-0811-4-C/results/933797007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-08-11 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905770-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797030",NA,"as N","Nitrogen","Total","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905770-0823-4-C/results/933797030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:21","STORET",7,NA,2021-08-23 23:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4905770-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797033",NA,"as N","Nitrogen","Dissolved","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4905770-0823-4-C/results/933797033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-08-23 23:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905770-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"09:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797056",NA,"as N","Nitrogen","Total","0.155","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905770-0928-4-C/results/933797056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-09-28 16:12:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.155,"MG/L","Numeric","Pass","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905770-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"09:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797059",NA,"as N","Nitrogen","Dissolved","0.115","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905770-0928-4-C/results/933797059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-09-28 16:12:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.115,"MG/L","Numeric","Pass","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905780-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797065",NA,"as N","Nitrogen","Total","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905780-0406-4-C/results/933797065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-04-06 21:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905780-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797068",NA,"as N","Nitrogen","Dissolved","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905780-0406-4-C/results/933797068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-04-06 21:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905780-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797091",NA,"as N","Nitrogen","Total","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905780-0504-4-C/results/933797091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-05-04 22:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905780-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797094",NA,"as N","Nitrogen","Dissolved","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905780-0504-4-C/results/933797094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-05-04 22:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905780-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797100",NA,"as N","Nitrogen","Total","0.644","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905780-0608-4-C/results/933797100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-06-08 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.644,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905780-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797103",NA,"as N","Nitrogen","Dissolved","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905780-0608-4-C/results/933797103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-06-08 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905780-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"16:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797126",NA,"as N","Nitrogen","Total","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905780-0720-4-C/results/933797126/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-07-20 23:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905780-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"16:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797129",NA,"as N","Nitrogen","Dissolved","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905780-0720-4-C/results/933797129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-07-20 23:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905780-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797135",NA,"as N","Nitrogen","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905780-0811-4-C/results/933797135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-08-11 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905780-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797138",NA,"as N","Nitrogen","Dissolved","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905780-0811-4-C/results/933797138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-08-11 17:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905780-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"09:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797161",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905780-0928-4-C/results/933797161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-09-28 16:36:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905780-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"09:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905780","E FK LITTLE BEAR R BL PORCUPINE RES AT CR XING",NA,NA,NA,NA,"41.5191000000","-111.7504900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797164",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905780-0928-4-C/results/933797164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-09-28 16:36:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5191000000","-111.7504900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",41.5191,-111.75049,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-03,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797174",NA,"as N","Nitrogen","Total","0.205","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C/results/933797174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-06-03 17:45:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.205,"MG/L","Numeric","Not Reviewed","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-03,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797178",NA,"as N","Nitrogen","Dissolved","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-2-C/results/933797178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-06-03 17:45:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C","Sample-Routine","Water",NA,2021-06-03,"10:50:00","MST",NA,NA,NA,"AboveThermoclin","8.03","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797183",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C/results/933797183/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-06-03 17:50:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",8.03,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C","Sample-Routine","Water",NA,2021-06-03,"10:50:00","MST",NA,NA,NA,"AboveThermoclin","8.03","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797187",NA,"as N","Nitrogen","Dissolved","0.115","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-23-C/results/933797187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:22","STORET",7,NA,2021-06-03 17:50:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.115,"MG/L","Numeric","Pass","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",8.03,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C","Sample-Routine","Water",NA,2021-06-03,"10:55:00","MST",NA,NA,NA,"BelowThermoclin","13.03","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797192",NA,"as N","Nitrogen","Total","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C/results/933797192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 17:55:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13.03,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C","Sample-Routine","Water",NA,2021-06-03,"10:55:00","MST",NA,NA,NA,"BelowThermoclin","13.03","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797196",NA,"as N","Nitrogen","Dissolved","0.136","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-27-C/results/933797196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 17:55:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.136,"MG/L","Numeric","Pass","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13.03,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C","Sample-Routine","Water",NA,2021-06-03,"11:00:00","MST",NA,NA,NA,"Bottom","24.52","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797201",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C/results/933797201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 18:00:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",24.52,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C","Sample-Routine","Water",NA,2021-06-03,"11:00:00","MST",NA,NA,NA,"Bottom","24.52","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797205",NA,"as N","Nitrogen","Dissolved","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905790-0603-29-C/results/933797205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 18:00:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",24.52,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797232",NA,"as N","Nitrogen","Total","0.298","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C/results/933797232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-09-13 18:40:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.298,"MG/L","Numeric","Not Reviewed","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797236",NA,"as N","Nitrogen","Dissolved","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905790-0913-2-C/results/933797236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-09-13 18:40:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"11:55:00","MST",NA,NA,NA,"Bottom","10.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797241",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C/results/933797241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-09-13 18:55:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",10.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"11:55:00","MST",NA,NA,NA,"Bottom","10.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905790","PORCUPINE RES AB DAM 01",NA,NA,NA,NA,"41.5188300000","-111.7457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797245",NA,"as N","Nitrogen","Dissolved","0.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905790-0913-29-C/results/933797245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-09-13 18:55:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5188300000","-111.7457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.51883,-111.74577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",10.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-03,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905800","PORCUPINE RES MIDWAY UP LAKE EMAP and 02",NA,NA,NA,NA,"41.5177200000","-111.7324400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797272",NA,"as N","Nitrogen","Total","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C/results/933797272/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 17:05:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5177200000","-111.7324400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",41.51772,-111.73244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-03,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905800","PORCUPINE RES MIDWAY UP LAKE EMAP and 02",NA,NA,NA,NA,"41.5177200000","-111.7324400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797276",NA,"as N","Nitrogen","Dissolved","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905800-0603-2-C/results/933797276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 17:05:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5177200000","-111.7324400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",41.51772,-111.73244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C","Sample-Routine","Water",NA,2021-06-03,"10:10:00","MST",NA,NA,NA,"Bottom","10.03","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905800","PORCUPINE RES MIDWAY UP LAKE EMAP and 02",NA,NA,NA,NA,"41.5177200000","-111.7324400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797281",NA,"as N","Nitrogen","Total","0.138","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C/results/933797281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 17:10:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5177200000","-111.7324400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.138,"MG/L","Numeric","Pass","Uncensored",41.51772,-111.73244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",10.03,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C","Sample-Routine","Water",NA,2021-06-03,"10:10:00","MST",NA,NA,NA,"Bottom","10.03","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905800","PORCUPINE RES MIDWAY UP LAKE EMAP and 02",NA,NA,NA,NA,"41.5177200000","-111.7324400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797285",NA,"as N","Nitrogen","Dissolved","0.146","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905800-0603-29-C/results/933797285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 17:10:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.5177200000","-111.7324400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.146,"MG/L","Numeric","Pass","Uncensored",41.51772,-111.73244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",10.03,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C","Sample-Routine","Water",NA,2021-06-03,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905830","E FK LITTLE BEAR R AB PORCUPINE RES",NA,NA,NA,NA,"41.5182700000","-111.7138200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797295",NA,"as N","Nitrogen","Total","0.163","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C/results/933797295/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5182700000","-111.7138200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.163,"MG/L","Numeric","Pass","Uncensored",41.51827,-111.71382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C","Sample-Routine","Water",NA,2021-06-03,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905830","E FK LITTLE BEAR R AB PORCUPINE RES",NA,NA,NA,NA,"41.5182700000","-111.7138200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797299",NA,"as N","Nitrogen","Dissolved","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4905830-0603-4-C/results/933797299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-06-03 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5182700000","-111.7138200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",41.51827,-111.71382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905830","E FK LITTLE BEAR R AB PORCUPINE RES",NA,NA,NA,NA,"41.5182700000","-111.7138200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797326",NA,"as N","Nitrogen","Total","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C/results/933797326/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-09-13 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5182700000","-111.7138200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",41.51827,-111.71382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905830","E FK LITTLE BEAR R AB PORCUPINE RES",NA,NA,NA,NA,"41.5182700000","-111.7138200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797330",NA,"as N","Nitrogen","Dissolved","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4905830-0913-4-C/results/933797330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-09-13 17:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5182700000","-111.7138200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",41.51827,-111.71382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905940-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797353",NA,"as N","Nitrogen","Total","3.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905940-0407-4-C/results/933797353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:23","STORET",7,NA,2021-04-07 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4905940-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797356",NA,"as N","Nitrogen","Dissolved","3.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4905940-0407-4-C/results/933797356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-04-07 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905940-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797379",NA,"as N","Nitrogen","Total","3.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905940-0505-4-C/results/933797379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-05-05 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4905940-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797382",NA,"as N","Nitrogen","Dissolved","3.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4905940-0505-4-C/results/933797382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-05-05 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905940-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797388",NA,"as N","Nitrogen","Total","2.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905940-0610-4-C/results/933797388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-06-10 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4905940-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797391",NA,"as N","Nitrogen","Dissolved","2.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4905940-0610-4-C/results/933797391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-06-10 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905940-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797414",NA,"as N","Nitrogen","Total","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905940-0721-4-C/results/933797414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-07-21 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4905940-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797417",NA,"as N","Nitrogen","Dissolved","2.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4905940-0721-4-C/results/933797417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-07-21 17:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905940-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797423",NA,"as N","Nitrogen","Total","2.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905940-0811-4-C/results/933797423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-08-11 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4905940-0811-4-C","Sample-Routine","Water",NA,2021-08-11,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797426",NA,"as N","Nitrogen","Dissolved","3.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4905940-0811-4-C/results/933797426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-08-11 20:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905940-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"13:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797449",NA,"as N","Nitrogen","Total","1.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905940-0929-4-C/results/933797449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-09-29 20:21:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.97,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4905940-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"13:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905940","WELLSVILLE CK @ U101 XING",NA,NA,NA,NA,"41.6385400000","-111.9246700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797452",NA,"as N","Nitrogen","Dissolved","2.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4905940-0929-4-C/results/933797452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:24","STORET",7,NA,2021-09-29 20:21:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6385400000","-111.9246700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.63854,-111.92467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4906400-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797668",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4906400-0406-4-C/results/933797668/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:25","STORET",7,NA,2021-04-06 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4906400-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797671",NA,"as N","Nitrogen","Dissolved","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4906400-0406-4-C/results/933797671/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:25","STORET",7,NA,2021-04-06 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4906400-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797694",NA,"as N","Nitrogen","Total","0.705","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4906400-0504-4-C/results/933797694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:25","STORET",7,NA,2021-05-04 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.705,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4906400-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797697",NA,"as N","Nitrogen","Dissolved","0.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4906400-0504-4-C/results/933797697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:26","STORET",7,NA,2021-05-04 20:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4906400-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797703",NA,"as N","Nitrogen","Total","0.809","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4906400-0608-4-C/results/933797703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:26","STORET",7,NA,2021-06-08 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.809,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4906400-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797706",NA,"as N","Nitrogen","Dissolved","0.886","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4906400-0608-4-C/results/933797706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:26","STORET",7,NA,2021-06-08 20:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.886,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4906400-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797729",NA,"as N","Nitrogen","Total","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4906400-0810-4-C/results/933797729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:26","STORET",7,NA,2021-08-10 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4906400-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797732",NA,"as N","Nitrogen","Dissolved","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4906400-0810-4-C/results/933797732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:26","STORET",7,NA,2021-08-10 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4906400-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797754",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4906400-0928-4-C/results/933797754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:26","STORET",7,NA,2021-09-28 18:12:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4906400-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4906400","Blacksmith Fk @ 2900S nr Milleville UT",NA,NA,NA,NA,"41.6800000000","-111.8308400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797757",NA,"as N","Nitrogen","Dissolved","0.996","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4906400-0928-4-C/results/933797757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:26","STORET",7,NA,2021-09-28 18:12:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6800000000","-111.8308400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.996,"MG/L","Numeric","Not Reviewed","Uncensored",41.68,-111.83084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797958",NA,"as N","Nitrogen","Total","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C/results/933797958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:27","STORET",7,NA,2021-06-21 22:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797961",NA,"as N","Nitrogen","Dissolved","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907010-0621-2-C/results/933797961/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:27","STORET",7,NA,2021-06-21 22:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C","Sample-Routine","Water",NA,2021-06-21,"17:15:00","MST",NA,NA,NA,"Bottom","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797965",NA,"as N","Nitrogen","Total","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C/results/933797965/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:27","STORET",7,NA,2021-06-22 00:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C","Sample-Routine","Water",NA,2021-06-21,"17:15:00","MST",NA,NA,NA,"Bottom","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797968",NA,"as N","Nitrogen","Dissolved","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907010-0621-29-C/results/933797968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:27","STORET",7,NA,2021-06-22 00:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-26,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797978",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C/results/933797978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:27","STORET",7,NA,2021-07-26 20:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-26,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797981",NA,"as N","Nitrogen","Dissolved","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907010-0726-2-C/results/933797981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:27","STORET",7,NA,2021-07-26 20:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C","Sample-Routine","Water",NA,2021-07-26,"13:45:00","MST",NA,NA,NA,"Bottom","32.05","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797985",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C/results/933797985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-07-26 20:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",32.05,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C","Sample-Routine","Water",NA,2021-07-26,"13:45:00","MST",NA,NA,NA,"Bottom","32.05","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797988",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907010-0726-29-C/results/933797988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-07-26 20:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",32.05,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"13:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933797998",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C/results/933797998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-01 20:47:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"13:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798001",NA,"as N","Nitrogen","Dissolved","0.196","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907010-0901-2-C/results/933798001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-01 20:47:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.196,"MG/L","Numeric","Pass","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C","Sample-Routine","Water",NA,2021-09-01,"14:08:00","MST",NA,NA,NA,"Bottom","37","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798005",NA,"as N","Nitrogen","Total","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C/results/933798005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-01 21:08:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",37,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C","Sample-Routine","Water",NA,2021-09-01,"14:08:00","MST",NA,NA,NA,"Bottom","37","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798008",NA,"as N","Nitrogen","Dissolved","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907010-0901-29-C/results/933798008/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-01 21:08:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",37,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-27,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798018",NA,"as N","Nitrogen","Total","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C/results/933798018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-27 20:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-27,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798021",NA,"as N","Nitrogen","Dissolved","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907010-0927-2-C/results/933798021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-27 20:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C","Sample-Routine","Water",NA,2021-09-27,"14:15:00","MST",NA,NA,NA,"Bottom","37","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798025",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C/results/933798025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-27 21:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",37,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C","Sample-Routine","Water",NA,2021-09-27,"14:15:00","MST",NA,NA,NA,"Bottom","37","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907010","Bear Lake 3 mi ESE of SP Marina",NA,NA,NA,NA,"41.9553600000","-111.3344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798028",NA,"as N","Nitrogen","Dissolved","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907010-0927-29-C/results/933798028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-27 21:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9553600000","-111.3344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",41.95536,-111.33448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",37,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-25,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798038",NA,"as N","Nitrogen","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C/results/933798038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-05-25 20:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-25,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798041",NA,"as N","Nitrogen","Dissolved","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907088-0525-2-C/results/933798041/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-05-25 20:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C","Sample-Routine","Water",NA,2021-05-25,"13:50:00","MST",NA,NA,NA,"Bottom","47.14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798045",NA,"as N","Nitrogen","Total","0.206","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C/results/933798045/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-05-25 20:50:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.206,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",47.14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C","Sample-Routine","Water",NA,2021-05-25,"13:50:00","MST",NA,NA,NA,"Bottom","47.14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798048",NA,"as N","Nitrogen","Dissolved","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907088-0525-29-C/results/933798048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-05-25 20:50:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",47.14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-21,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798058",NA,"as N","Nitrogen","Total","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C/results/933798058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-06-21 20:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-21,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798061",NA,"as N","Nitrogen","Dissolved","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-2-C/results/933798061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-06-21 20:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C","Sample-Composite Without Parents","Water",NA,2021-06-21,"13:40:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","7 Photic zone samples taken at 1m, 5m, 8m, 12m, 16m, 20m and 24m; licor 1% depth at 24m; sample time = 13:40; vandorn; field data collected using YSI EXO3",NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798071",NA,"as N","Nitrogen","Total","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C/results/933798071/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-06-21 20:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C","Sample-Composite Without Parents","Water",NA,2021-06-21,"13:40:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","7 Photic zone samples taken at 1m, 5m, 8m, 12m, 16m, 20m and 24m; licor 1% depth at 24m; sample time = 13:40; vandorn; field data collected using YSI EXO3",NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798074",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-PZ-C/results/933798074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-06-21 20:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C","Sample-Routine","Water",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,"Bottom","57.1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798078",NA,"as N","Nitrogen","Total","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C/results/933798078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-06-21 21:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",57.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C","Sample-Routine","Water",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,"Bottom","57.1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798081",NA,"as N","Nitrogen","Dissolved","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907088-0621-29-C/results/933798081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-06-21 21:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",57.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-26,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798091",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C/results/933798091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-07-26 19:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-26,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798094",NA,"as N","Nitrogen","Dissolved","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907088-0726-2-C/results/933798094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-07-26 19:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C","Sample-Routine","Water",NA,2021-07-26,"12:40:00","MST",NA,NA,NA,"Bottom","57.1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798098",NA,"as N","Nitrogen","Total","0.216","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C/results/933798098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-07-26 19:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.216,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",57.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C","Sample-Routine","Water",NA,2021-07-26,"12:40:00","MST",NA,NA,NA,"Bottom","57.1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798101",NA,"as N","Nitrogen","Dissolved","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907088-0726-29-C/results/933798101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-07-26 19:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",57.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798111",NA,"as N","Nitrogen","Total","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C/results/933798111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-01 17:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798114",NA,"as N","Nitrogen","Dissolved","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-2-C/results/933798114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:28","STORET",7,NA,2021-09-01 17:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C","Sample-Composite Without Parents","Water",NA,2021-09-01,"11:00:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Licor 1% depth at 18m; 6 Photic Zone samples taken at 1m, 5m, 8m, 11m, 14m, and 18m to a max depth of 18m; sample time = 11:00; vandorn; Field data from USGS platform station # 415642111172701",NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798124",NA,"as N","Nitrogen","Total","0.236","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C/results/933798124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-01 18:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.236,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C","Sample-Composite Without Parents","Water",NA,2021-09-01,"11:00:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon","Licor 1% depth at 18m; 6 Photic Zone samples taken at 1m, 5m, 8m, 11m, 14m, and 18m to a max depth of 18m; sample time = 11:00; vandorn; Field data from USGS platform station # 415642111172701",NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798127",NA,"as N","Nitrogen","Dissolved","0.181","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-PZ-C/results/933798127/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-01 18:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.181,"MG/L","Numeric","Pass","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C","Sample-Routine","Water",NA,2021-09-01,"11:17:00","MST",NA,NA,NA,"Bottom","56.01","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798131",NA,"as N","Nitrogen","Total","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C/results/933798131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-01 18:17:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",56.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C","Sample-Routine","Water",NA,2021-09-01,"11:17:00","MST",NA,NA,NA,"Bottom","56.01","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798134",NA,"as N","Nitrogen","Dissolved","0.186","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907088-0901-29-C/results/933798134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-01 18:17:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Pass","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",56.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-27,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798144",NA,"as N","Nitrogen","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C/results/933798144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-27 18:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-27,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798147",NA,"as N","Nitrogen","Dissolved","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907088-0927-2-C/results/933798147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-27 18:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C","Sample-Routine","Water",NA,2021-09-27,"12:00:00","MST",NA,NA,NA,"Bottom","54.05","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798151",NA,"as N","Nitrogen","Total","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C/results/933798151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-27 19:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",54.05,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C","Sample-Routine","Water",NA,2021-09-27,"12:00:00","MST",NA,NA,NA,"Bottom","54.05","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907088","Bear Lake near east shore 1.3 miles northwest of South Eden Canyon",NA,NA,NA,NA,"41.9451100000","-111.2907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798154",NA,"as N","Nitrogen","Dissolved","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907088-0927-29-C/results/933798154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-27 19:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9451100000","-111.2907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",41.94511,-111.29076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",54.05,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798164",NA,"as N","Nitrogen","Total","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C/results/933798164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-05-25 20:10:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798167",NA,"as N","Nitrogen","Dissolved","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907100-0525-4-C/results/933798167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-05-25 20:10:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798177",NA,"as N","Nitrogen","Total","0.867","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C/results/933798177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-06-21 20:13:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.867,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798180",NA,"as N","Nitrogen","Dissolved","0.712","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907100-0621-4-C/results/933798180/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-06-21 20:13:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.712,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798189",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C/results/933798189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-07-26 19:55:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798192",NA,"as N","Nitrogen","Dissolved","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907100-0726-4-C/results/933798192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-07-26 19:55:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"10:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798201",NA,"as N","Nitrogen","Total","0.623","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C/results/933798201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-01 17:01:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.623,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"10:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798204",NA,"as N","Nitrogen","Dissolved","0.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907100-0901-4-C/results/933798204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-01 17:01:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.69,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798214",NA,"as N","Nitrogen","Total","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C/results/933798214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-27 18:03:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798217",NA,"as N","Nitrogen","Dissolved","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907100-0927-4-C/results/933798217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-09-27 18:03:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-25,"11:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798227",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C/results/933798227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-05-25 18:32:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-25,"11:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798230",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907180-0525-2-C/results/933798230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-05-25 18:32:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C","Sample-Routine","Water",NA,2021-05-25,"12:15:00","MST",NA,NA,NA,"Bottom","40.06","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798234",NA,"as N","Nitrogen","Total","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C/results/933798234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-05-25 19:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",40.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C","Sample-Routine","Water",NA,2021-05-25,"12:15:00","MST",NA,NA,NA,"Bottom","40.06","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798237",NA,"as N","Nitrogen","Dissolved","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907180-0525-29-C/results/933798237/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-05-25 19:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",40.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-21,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798264",NA,"as N","Nitrogen","Total","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C/results/933798264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-06-21 17:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-21,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798267",NA,"as N","Nitrogen","Dissolved","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907180-0621-2-C/results/933798267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-06-21 17:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C","Sample-Routine","Water",NA,2021-06-21,"11:35:00","MST",NA,NA,NA,"Bottom","46.04","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798271",NA,"as N","Nitrogen","Total","0.473","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C/results/933798271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-06-21 18:35:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.473,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",46.04,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C","Sample-Routine","Water",NA,2021-06-21,"11:35:00","MST",NA,NA,NA,"Bottom","46.04","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798274",NA,"as N","Nitrogen","Dissolved","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907180-0621-29-C/results/933798274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:29","STORET",7,NA,2021-06-21 18:35:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",46.04,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-26,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798301",NA,"as N","Nitrogen","Total","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C/results/933798301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-07-26 21:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-26,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798304",NA,"as N","Nitrogen","Dissolved","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907180-0726-2-C/results/933798304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-07-26 21:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C","Sample-Routine","Water",NA,2021-07-26,"14:30:00","MST",NA,NA,NA,"Bottom","45.09","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798308",NA,"as N","Nitrogen","Total","0.186","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C/results/933798308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-07-26 21:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Pass","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",45.09,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C","Sample-Routine","Water",NA,2021-07-26,"14:30:00","MST",NA,NA,NA,"Bottom","45.09","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798311",NA,"as N","Nitrogen","Dissolved","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907180-0726-29-C/results/933798311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-07-26 21:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",45.09,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798337",NA,"as N","Nitrogen","Total","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C/results/933798337/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-01 16:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798340",NA,"as N","Nitrogen","Dissolved","0.303","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907180-0901-2-C/results/933798340/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-01 16:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.303,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C","Sample-Routine","Water",NA,2021-09-01,"09:45:00","MST",NA,NA,NA,"Bottom","46.13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798344",NA,"as N","Nitrogen","Total","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C/results/933798344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-01 16:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",46.13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C","Sample-Routine","Water",NA,2021-09-01,"09:45:00","MST",NA,NA,NA,"Bottom","46.13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798347",NA,"as N","Nitrogen","Dissolved","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907180-0901-29-C/results/933798347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-01 16:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",46.13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798374",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C/results/933798374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-27 17:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798377",NA,"as N","Nitrogen","Dissolved","0.262","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-2-C/results/933798377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-27 17:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.262,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C","Sample-Routine","Water",NA,2021-09-27,"10:55:00","MST",NA,NA,NA,"AboveThermoclin","13.1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798381",NA,"as N","Nitrogen","Total","0.289","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C/results/933798381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-27 17:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.289,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C","Sample-Routine","Water",NA,2021-09-27,"10:55:00","MST",NA,NA,NA,"AboveThermoclin","13.1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798384",NA,"as N","Nitrogen","Dissolved","0.264","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-23-C/results/933798384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-27 17:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.264,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C","Sample-Routine","Water",NA,2021-09-27,"11:10:00","MST",NA,NA,NA,"Bottom","45.12","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798388",NA,"as N","Nitrogen","Total","0.318","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C/results/933798388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-27 18:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.318,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",45.12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C","Sample-Routine","Water",NA,2021-09-27,"11:10:00","MST",NA,NA,NA,"Bottom","45.12","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798391",NA,"as N","Nitrogen","Dissolved","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907180-0927-29-C/results/933798391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-09-27 18:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",45.12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798418",NA,"as N","Nitrogen","Total","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C/results/933798418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-05-25 19:10:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798421",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210525-4907200-0525-4-C/results/933798421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:30","STORET",7,NA,2021-05-25 19:10:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798431",NA,"as N","Nitrogen","Total","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C/results/933798431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:31","STORET",7,NA,2021-06-21 19:07:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798434",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4907200-0621-4-C/results/933798434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:31","STORET",7,NA,2021-06-21 19:07:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"11:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798443",NA,"as N","Nitrogen","Total","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C/results/933798443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:31","STORET",7,NA,2021-07-26 18:32:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"11:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798446",NA,"as N","Nitrogen","Dissolved","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4907200-0726-4-C/results/933798446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:31","STORET",7,NA,2021-07-26 18:32:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"11:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798455",NA,"as N","Nitrogen","Total","0.163","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C/results/933798455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:31","STORET",7,NA,2021-09-01 18:28:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.163,"MG/L","Numeric","Pass","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C","Sample-Routine","Water",NA,2021-09-01,"11:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798458",NA,"as N","Nitrogen","Dissolved","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4907200-0901-4-C/results/933798458/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:31","STORET",7,NA,2021-09-01 18:28:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"12:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798468",NA,"as N","Nitrogen","Total","0.413","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C/results/933798468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:31","STORET",7,NA,2021-09-27 19:09:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.413,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"12:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798471",NA,"as N","Nitrogen","Dissolved","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4907200-0927-4-C/results/933798471/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:31","STORET",7,NA,2021-09-27 19:09:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908100-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798729",NA,"as N","Nitrogen","Total","0.391","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908100-0405-4-C/results/933798729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-04-05 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.391,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908100-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798732",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908100-0405-4-C/results/933798732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-04-05 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908100-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798755",NA,"as N","Nitrogen","Total","0.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908100-0503-4-C/results/933798755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-05-03 21:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908100-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798758",NA,"as N","Nitrogen","Dissolved","0.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908100-0503-4-C/results/933798758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-05-03 21:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908100-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798764",NA,"as N","Nitrogen","Total","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908100-0607-4-C/results/933798764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-06-07 22:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908100-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798767",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908100-0607-4-C/results/933798767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-06-07 22:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908100-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798790",NA,"as N","Nitrogen","Total","0.651","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908100-0621-4-C/results/933798790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-06-21 22:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.651,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908100-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798793",NA,"as N","Nitrogen","Dissolved","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908100-0621-4-C/results/933798793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-06-21 22:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908100-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798816",NA,"as N","Nitrogen","Total","0.496","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908100-0708-4-C/results/933798816/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-07-08 19:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.496,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908100-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798819",NA,"as N","Nitrogen","Dissolved","0.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908100-0708-4-C/results/933798819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-07-08 19:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908100-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798842",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908100-0719-4-C/results/933798842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-07-19 21:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908100-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798845",NA,"as N","Nitrogen","Dissolved","0.548","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908100-0719-4-C/results/933798845/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-07-19 21:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.548,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908100-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798851",NA,"as N","Nitrogen","Total","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908100-0809-4-C/results/933798851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-08-09 21:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908100-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798854",NA,"as N","Nitrogen","Dissolved","0.552","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908100-0809-4-C/results/933798854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:33","STORET",7,NA,2021-08-09 21:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.552,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908100-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798877",NA,"as N","Nitrogen","Total","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908100-0823-4-C/results/933798877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-08-23 18:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908100-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798880",NA,"as N","Nitrogen","Dissolved","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908100-0823-4-C/results/933798880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-08-23 18:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908100-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798903",NA,"as N","Nitrogen","Total","0.335","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908100-0927-4-C/results/933798903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-09-27 22:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.335,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908100-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908100","BEAR R E OF SAGE CK JCT AT U30 XING AB CNFL / BRIDGER CK",NA,NA,NA,NA,"41.7771600000","-111.0735200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798906",NA,"as N","Nitrogen","Dissolved","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908100-0927-4-C/results/933798906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-09-27 22:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7771600000","-111.0735200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",41.77716,-111.07352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908130-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798912",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908130-0405-4-C/results/933798912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-04-05 18:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908130-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798915",NA,"as N","Nitrogen","Dissolved","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908130-0405-4-C/results/933798915/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-04-05 18:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908130-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798938",NA,"as N","Nitrogen","Total","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908130-0503-4-C/results/933798938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-05-03 18:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908130-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798941",NA,"as N","Nitrogen","Dissolved","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908130-0503-4-C/results/933798941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-05-03 18:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908130-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798947",NA,"as N","Nitrogen","Total","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908130-0607-4-C/results/933798947/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-06-07 19:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908130-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798950",NA,"as N","Nitrogen","Dissolved","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908130-0607-4-C/results/933798950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-06-07 19:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908130-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798973",NA,"as N","Nitrogen","Total","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908130-0621-4-C/results/933798973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-06-21 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908130-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798976",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908130-0621-4-C/results/933798976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-06-21 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908130-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933798999",NA,"as N","Nitrogen","Total","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908130-0719-4-C/results/933798999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-07-19 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908130-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799002",NA,"as N","Nitrogen","Dissolved","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908130-0719-4-C/results/933799002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-07-19 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908130-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799008",NA,"as N","Nitrogen","Total","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908130-0809-4-C/results/933799008/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-08-09 19:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908130-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799011",NA,"as N","Nitrogen","Dissolved","0.398","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908130-0809-4-C/results/933799011/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:34","STORET",7,NA,2021-08-09 19:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.398,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908130-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799034",NA,"as N","Nitrogen","Total","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908130-0927-4-C/results/933799034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-09-27 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908130-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908130","BIG CREEK AB CONFL RANDOLPH CREEK",NA,NA,NA,NA,"41.5901000000","-111.3037700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799037",NA,"as N","Nitrogen","Dissolved","0.888","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908130-0927-4-C/results/933799037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-09-27 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5901000000","-111.3037700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.888,"MG/L","Numeric","Not Reviewed","Uncensored",41.5901,-111.30377,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908140-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799043",NA,"as N","Nitrogen","Total","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908140-0405-4-C/results/933799043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-04-05 18:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908140-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799046",NA,"as N","Nitrogen","Dissolved","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908140-0405-4-C/results/933799046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-04-05 18:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908140-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799069",NA,"as N","Nitrogen","Total","0.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908140-0503-4-C/results/933799069/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-05-03 18:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908140-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799072",NA,"as N","Nitrogen","Dissolved","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908140-0503-4-C/results/933799072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-05-03 18:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908140-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799078",NA,"as N","Nitrogen","Total","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908140-0607-4-C/results/933799078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-06-07 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908140-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799081",NA,"as N","Nitrogen","Dissolved","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908140-0607-4-C/results/933799081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-06-07 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908140-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799104",NA,"as N","Nitrogen","Total","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908140-0621-4-C/results/933799104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-06-21 20:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908140-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799107",NA,"as N","Nitrogen","Dissolved","0.439","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908140-0621-4-C/results/933799107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-06-21 20:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.439,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908140-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799130",NA,"as N","Nitrogen","Total","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908140-0708-4-C/results/933799130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-07-08 17:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908140-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799133",NA,"as N","Nitrogen","Dissolved","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908140-0708-4-C/results/933799133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-07-08 17:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908140-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799156",NA,"as N","Nitrogen","Total","0.174","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908140-0719-4-C/results/933799156/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-07-19 19:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.174,"MG/L","Numeric","Pass","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908140-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799159",NA,"as N","Nitrogen","Dissolved","0.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908140-0719-4-C/results/933799159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-07-19 19:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908140-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799165",NA,"as N","Nitrogen","Total","0.099","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908140-0809-4-C/results/933799165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:35","STORET",7,NA,2021-08-09 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.099,"MG/L","Numeric","Pass","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908140-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799168",NA,"as N","Nitrogen","Dissolved","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908140-0809-4-C/results/933799168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-08-09 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908140-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799191",NA,"as N","Nitrogen","Total","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908140-0823-4-C/results/933799191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-08-23 19:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908140-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799194","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908140-0823-4-C/results/933799194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-08-23 19:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908140-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"13:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799217",NA,"as N","Nitrogen","Total","0.794","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908140-0927-4-C/results/933799217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-09-27 20:11:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.794,"MG/L","Numeric","Not Reviewed","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908140-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"13:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908140","RANDOLPH CK @ BIG CK RD AB CNFL W/BIG CK",NA,NA,NA,NA,"41.5954800000","-111.3073800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799220",NA,"as N","Nitrogen","Dissolved","0.118","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908140-0927-4-C/results/933799220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-09-27 20:11:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5954800000","-111.3073800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.118,"MG/L","Numeric","Pass","Uncensored",41.59548,-111.30738,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908152-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799226",NA,"as N","Nitrogen","Total","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908152-0405-4-C/results/933799226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-04-05 21:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908152-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799229",NA,"as N","Nitrogen","Dissolved","0.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908152-0405-4-C/results/933799229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-04-05 21:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908152-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799252",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908152-0503-4-C/results/933799252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-05-03 21:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908152-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799255",NA,"as N","Nitrogen","Dissolved","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908152-0503-4-C/results/933799255/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-05-03 21:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908152-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799261",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908152-0621-4-C/results/933799261/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-06-21 22:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908152-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799264",NA,"as N","Nitrogen","Dissolved","0.761","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908152-0621-4-C/results/933799264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-06-21 22:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.761,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908152-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799287",NA,"as N","Nitrogen","Total","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908152-0708-4-C/results/933799287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-07-08 20:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908152-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799290",NA,"as N","Nitrogen","Dissolved","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908152-0708-4-C/results/933799290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-07-08 20:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908152-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799313",NA,"as N","Nitrogen","Total","0.644","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908152-0719-4-C/results/933799313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-07-19 22:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.644,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908152-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799316",NA,"as N","Nitrogen","Dissolved","0.647","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908152-0719-4-C/results/933799316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:36","STORET",7,NA,2021-07-19 22:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.647,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908152-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799322",NA,"as N","Nitrogen","Total","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908152-0809-4-C/results/933799322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-08-09 22:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908152-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799325",NA,"as N","Nitrogen","Dissolved","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908152-0809-4-C/results/933799325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-08-09 22:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908152-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799348",NA,"as N","Nitrogen","Total","0.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908152-0823-4-C/results/933799348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-08-23 18:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210823-4908152-0823-4-C","Sample-Routine","Water",NA,2021-08-23,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799351",NA,"as N","Nitrogen","Dissolved","0.727","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210823-4908152-0823-4-C/results/933799351/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-08-23 18:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.727,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908152-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799374",NA,"as N","Nitrogen","Total","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908152-0927-4-C/results/933799374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-09-27 23:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908152-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799377",NA,"as N","Nitrogen","Dissolved","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908152-0927-4-C/results/933799377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-09-27 23:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908160-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799383",NA,"as N","Nitrogen","Total","0.189","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908160-0405-4-C/results/933799383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-04-05 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.189,"MG/L","Numeric","Pass","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908160-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799386",NA,"as N","Nitrogen","Dissolved","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908160-0405-4-C/results/933799386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-04-05 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908160-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799409",NA,"as N","Nitrogen","Total","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908160-0503-4-C/results/933799409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-05-03 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908160-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799412",NA,"as N","Nitrogen","Dissolved","0.504","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908160-0503-4-C/results/933799412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-05-03 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.504,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908160-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799418",NA,"as N","Nitrogen","Total","0.304","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908160-0607-4-C/results/933799418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-06-07 21:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.304,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908160-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799421",NA,"as N","Nitrogen","Dissolved","0.295","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908160-0607-4-C/results/933799421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-06-07 21:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.295,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908160-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799444",NA,"as N","Nitrogen","Total","0.138","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908160-0719-4-C/results/933799444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-07-19 21:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.138,"MG/L","Numeric","Pass","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908160-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799447",NA,"as N","Nitrogen","Dissolved","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908160-0719-4-C/results/933799447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-07-19 21:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908160-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799453",NA,"as N","Nitrogen","Total","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908160-0809-4-C/results/933799453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-08-09 21:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908160-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799456",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908160-0809-4-C/results/933799456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-08-09 21:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908160-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"15:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799479",NA,"as N","Nitrogen","Total","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908160-0927-4-C/results/933799479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-09-27 22:07:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908160-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"15:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908160","South Fork Otter Creek @ Otter Creek Road",NA,NA,NA,NA,"41.7021600000","-111.2580600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799482",NA,"as N","Nitrogen","Dissolved","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908160-0927-4-C/results/933799482/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-09-27 22:07:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7021600000","-111.2580600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.70216,-111.25806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908165-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799488",NA,"as N","Nitrogen","Total","0.551","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908165-0405-4-C/results/933799488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:37","STORET",7,NA,2021-04-05 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.551,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908165-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799491",NA,"as N","Nitrogen","Dissolved","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908165-0405-4-C/results/933799491/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-04-05 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908165-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799514",NA,"as N","Nitrogen","Total","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908165-0503-4-C/results/933799514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-05-03 20:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.617,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908165-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799517",NA,"as N","Nitrogen","Dissolved","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908165-0503-4-C/results/933799517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-05-03 20:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908165-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799523",NA,"as N","Nitrogen","Total","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908165-0607-4-C/results/933799523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-06-07 21:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908165-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799526",NA,"as N","Nitrogen","Dissolved","0.667","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908165-0607-4-C/results/933799526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-06-07 21:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.667,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908165-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799549",NA,"as N","Nitrogen","Total","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908165-0719-4-C/results/933799549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-07-19 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908165-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799552",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908165-0719-4-C/results/933799552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-07-19 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908165-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799558",NA,"as N","Nitrogen","Total","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908165-0809-4-C/results/933799558/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-08-09 20:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908165-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799561",NA,"as N","Nitrogen","Dissolved","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908165-0809-4-C/results/933799561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-08-09 20:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908165-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799584",NA,"as N","Nitrogen","Total","0.301","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908165-0927-4-C/results/933799584/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-09-27 21:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.301,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908165-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908165","Otter Creek at road xing BL confluence with South Branch",NA,NA,NA,NA,"41.7098700000","-111.1889600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799587",NA,"as N","Nitrogen","Dissolved","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908165-0927-4-C/results/933799587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-09-27 21:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7098700000","-111.1889600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",41.70987,-111.18896,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908168-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799593",NA,"as N","Nitrogen","Total","0.109","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908168-0405-4-C/results/933799593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-04-05 20:25:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.109,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908168-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799596",NA,"as N","Nitrogen","Dissolved","0.141","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908168-0405-4-C/results/933799596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-04-05 20:25:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.141,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908168-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799619",NA,"as N","Nitrogen","Total","0.165","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908168-0503-4-C/results/933799619/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-05-03 20:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.165,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908168-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799622",NA,"as N","Nitrogen","Dissolved","0.131","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908168-0503-4-C/results/933799622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-05-03 20:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.131,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908168-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799628",NA,"as N","Nitrogen","Total","0.193","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908168-0607-4-C/results/933799628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-06-07 21:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.193,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908168-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799631",NA,"as N","Nitrogen","Dissolved","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908168-0607-4-C/results/933799631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-06-07 21:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908168-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799654","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908168-0719-4-C/results/933799654/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-07-19 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908168-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799657",NA,"as N","Nitrogen","Dissolved","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908168-0719-4-C/results/933799657/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:38","STORET",7,NA,2021-07-19 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908168-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799663","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908168-0809-4-C/results/933799663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-08-09 21:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908168-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799666",NA,"as N","Nitrogen","Dissolved","0.13","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908168-0809-4-C/results/933799666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-08-09 21:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.13,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908168-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"14:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799689",NA,"as N","Nitrogen","Total","0.133","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908168-0927-4-C/results/933799689/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-09-27 21:46:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.133,"MG/L","Numeric","Pass","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908168-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"14:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908168","MIDDLE BRANCH OTTER CK @ OTTER CK RD XING",NA,NA,NA,NA,"41.7152200000","-111.2565900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799692",NA,"as N","Nitrogen","Dissolved","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908168-0927-4-C/results/933799692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-09-27 21:46:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7152200000","-111.2565900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.71522,-111.25659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908170-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799698",NA,"as N","Nitrogen","Total","0.756","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908170-0405-4-C/results/933799698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-04-05 20:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.756,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908170-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799701",NA,"as N","Nitrogen","Dissolved","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908170-0405-4-C/results/933799701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-04-05 20:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908170-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799724",NA,"as N","Nitrogen","Total","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908170-0503-4-C/results/933799724/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-05-03 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908170-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799727",NA,"as N","Nitrogen","Dissolved","0.413","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908170-0503-4-C/results/933799727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-05-03 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.413,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908170-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799733",NA,"as N","Nitrogen","Total","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908170-0607-4-C/results/933799733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-06-07 21:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908170-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799736",NA,"as N","Nitrogen","Dissolved","0.616","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908170-0607-4-C/results/933799736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-06-07 21:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.616,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908170-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799759",NA,"as N","Nitrogen","Total","0.163","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908170-0719-4-C/results/933799759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-07-19 20:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.163,"MG/L","Numeric","Pass","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908170-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799762",NA,"as N","Nitrogen","Dissolved","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908170-0719-4-C/results/933799762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-07-19 20:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908170-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799768",NA,"as N","Nitrogen","Total","0.11","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908170-0809-4-C/results/933799768/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-08-09 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.11,"MG/L","Numeric","Pass","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908170-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799771",NA,"as N","Nitrogen","Dissolved","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908170-0809-4-C/results/933799771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-08-09 21:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908170-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"14:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799794",NA,"as N","Nitrogen","Total","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908170-0927-4-C/results/933799794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-09-27 21:46:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908170-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"14:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908170","OTTER CK 5.7 MI UP OTTER CK RD AB RD XING",NA,NA,NA,NA,"41.7268900000","-111.2552000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799797",NA,"as N","Nitrogen","Dissolved","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908170-0927-4-C/results/933799797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-09-27 21:46:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7268900000","-111.2552000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",41.72689,-111.2552,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908200-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908200","GENES CK @ U-16 XING",NA,NA,NA,NA,"41.5238300000","-111.1560300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799803",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908200-0503-4-C/results/933799803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-05-03 16:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",41.52383,-111.15603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908200-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908200","GENES CK @ U-16 XING",NA,NA,NA,NA,"41.5238300000","-111.1560300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799806",NA,"as N","Nitrogen","Dissolved","0.405","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908200-0503-4-C/results/933799806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-05-03 16:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.405,"MG/L","Numeric","Not Reviewed","Uncensored",41.52383,-111.15603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908200-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908200","GENES CK @ U-16 XING",NA,NA,NA,NA,"41.5238300000","-111.1560300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799812",NA,"as N","Nitrogen","Total","0.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908200-0607-4-C/results/933799812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-06-07 16:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.52383,-111.15603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908200-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908200","GENES CK @ U-16 XING",NA,NA,NA,NA,"41.5238300000","-111.1560300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799815",NA,"as N","Nitrogen","Dissolved","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908200-0607-4-C/results/933799815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:39","STORET",7,NA,2021-06-07 16:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5238300000","-111.1560300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.52383,-111.15603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908280-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799838",NA,"as N","Nitrogen","Total","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908280-0405-4-C/results/933799838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-04-05 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908280-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799841",NA,"as N","Nitrogen","Dissolved","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908280-0405-4-C/results/933799841/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-04-05 19:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908280-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799864",NA,"as N","Nitrogen","Total","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908280-0503-4-C/results/933799864/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-05-03 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908280-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799867",NA,"as N","Nitrogen","Dissolved","0.732","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908280-0503-4-C/results/933799867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-05-03 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.732,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908280-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799873",NA,"as N","Nitrogen","Total","0.961","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908280-0607-4-C/results/933799873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-06-07 20:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.961,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908280-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799876",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908280-0607-4-C/results/933799876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-06-07 20:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908280-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799899",NA,"as N","Nitrogen","Total","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908280-0621-4-C/results/933799899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-06-21 21:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908280-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799902",NA,"as N","Nitrogen","Dissolved","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908280-0621-4-C/results/933799902/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-06-21 21:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908280-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799925",NA,"as N","Nitrogen","Total","0.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908280-0708-4-C/results/933799925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-07-08 18:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908280-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799928",NA,"as N","Nitrogen","Dissolved","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908280-0708-4-C/results/933799928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-07-08 18:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908280-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799951",NA,"as N","Nitrogen","Total","0.206","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908280-0719-4-C/results/933799951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-07-19 20:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.206,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908280-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799954",NA,"as N","Nitrogen","Dissolved","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908280-0719-4-C/results/933799954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-07-19 20:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908280-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799960",NA,"as N","Nitrogen","Total","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908280-0809-4-C/results/933799960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-08-09 20:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908280-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799963",NA,"as N","Nitrogen","Dissolved","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908280-0809-4-C/results/933799963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:40","STORET",7,NA,2021-08-09 20:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908280-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"14:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799986",NA,"as N","Nitrogen","Total","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908280-0927-4-C/results/933799986/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-09-27 21:06:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908280-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"14:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908280","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799989",NA,"as N","Nitrogen","Dissolved","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908280-0927-4-C/results/933799989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-09-27 21:06:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908281-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799995",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908281-0405-4-C/results/933799995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-04-05 19:20:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908281-0405-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-05,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933799998",NA,"as N","Nitrogen","Dissolved","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908281-0405-4-C/results/933799998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-04-05 19:20:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908281-0503-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-03,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800021",NA,"as N","Nitrogen","Total","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908281-0503-4-C/results/933800021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-05-03 19:40:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908281-0503-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-03,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800024",NA,"as N","Nitrogen","Dissolved","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908281-0503-4-C/results/933800024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-05-03 19:40:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908281-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800030",NA,"as N","Nitrogen","Total","0.999","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908281-0607-4-C/results/933800030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-06-07 20:30:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.999,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908281-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800033",NA,"as N","Nitrogen","Dissolved","0.836","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908281-0607-4-C/results/933800033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-06-07 20:30:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.836,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908281-0621-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-21,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800056",NA,"as N","Nitrogen","Total","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908281-0621-4-C/results/933800056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-06-21 22:00:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908281-0621-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-21,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800059",NA,"as N","Nitrogen","Dissolved","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908281-0621-4-C/results/933800059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-06-21 22:00:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908281-0708-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-08,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800082",NA,"as N","Nitrogen","Total","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908281-0708-4-C/results/933800082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-07-08 18:25:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908281-0708-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-08,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800085",NA,"as N","Nitrogen","Dissolved","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908281-0708-4-C/results/933800085/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-07-08 18:25:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908281-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800108",NA,"as N","Nitrogen","Total","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908281-0719-4-C/results/933800108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-07-19 20:10:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908281-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800111",NA,"as N","Nitrogen","Dissolved","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908281-0719-4-C/results/933800111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-07-19 20:10:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908281-0809-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800117",NA,"as N","Nitrogen","Total","0.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908281-0809-4-C/results/933800117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-08-09 20:15:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908281-0809-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800120",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908281-0809-4-C/results/933800120/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-08-09 20:15:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908281-0927-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-27,"14:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800143",NA,"as N","Nitrogen","Total","0.222","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908281-0927-4-C/results/933800143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-09-27 21:12:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.222,"MG/L","Numeric","Not Reviewed","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908281-0927-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-27,"14:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908281","BEAR R @ RANDOLPH/CRAWFORD MTN RD XING Replicate of 4908280",NA,NA,NA,NA,"41.6964200000","-111.1172900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800146",NA,"as N","Nitrogen","Dissolved","0.153","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908281-0927-4-C/results/933800146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:41","STORET",7,NA,2021-09-27 21:12:00,NA,"River/Stream","Replicate of 4908280","16010101",NA,NA,NA,NA,"41.6964200000","-111.1172900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.153,"MG/L","Numeric","Pass","Uncensored",41.69642,-111.11729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908350-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800152",NA,"as N","Nitrogen","Total","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908350-0405-4-C/results/933800152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-04-05 17:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908350-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800155",NA,"as N","Nitrogen","Dissolved","0.572","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908350-0405-4-C/results/933800155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-04-05 17:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.572,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908350-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800178",NA,"as N","Nitrogen","Total","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908350-0503-4-C/results/933800178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-05-03 17:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908350-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800181",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908350-0503-4-C/results/933800181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-05-03 17:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908350-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800187",NA,"as N","Nitrogen","Total","0.766","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908350-0607-4-C/results/933800187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-06-07 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.766,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908350-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800190",NA,"as N","Nitrogen","Dissolved","0.772","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908350-0607-4-C/results/933800190/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-06-07 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.772,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908350-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800213",NA,"as N","Nitrogen","Total","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908350-0719-4-C/results/933800213/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-07-19 18:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908350-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800216",NA,"as N","Nitrogen","Dissolved","0.427","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908350-0719-4-C/results/933800216/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-07-19 18:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.427,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908350-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800222",NA,"as N","Nitrogen","Total","0.457","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908350-0809-4-C/results/933800222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-08-09 18:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.457,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908350-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800225",NA,"as N","Nitrogen","Dissolved","0.649","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908350-0809-4-C/results/933800225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-08-09 18:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.649,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908350-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"12:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800248",NA,"as N","Nitrogen","Total","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908350-0927-4-C/results/933800248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-09-27 19:28:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908350-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"12:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908350","BEAR R 5 ROAD MI N OF WOODRUFF AT CR XING",NA,NA,NA,NA,"41.5941100000","-111.1374100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800251",NA,"as N","Nitrogen","Dissolved","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908350-0927-4-C/results/933800251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-09-27 19:28:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5941100000","-111.1374100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.59411,-111.13741,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908500-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800257",NA,"as N","Nitrogen","Total","0.845","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908500-0405-4-C/results/933800257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-04-05 17:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.845,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908500-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800260",NA,"as N","Nitrogen","Dissolved","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908500-0405-4-C/results/933800260/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-04-05 17:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908500-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800283",NA,"as N","Nitrogen","Total","0.573","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908500-0503-4-C/results/933800283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-05-03 16:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.573,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908500-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800286",NA,"as N","Nitrogen","Dissolved","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908500-0503-4-C/results/933800286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-05-03 16:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908500-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800292",NA,"as N","Nitrogen","Total","0.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908500-0607-4-C/results/933800292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-06-07 16:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.95,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908500-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800295",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908500-0607-4-C/results/933800295/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:42","STORET",7,NA,2021-06-07 16:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908500-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800318",NA,"as N","Nitrogen","Total","0.596","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908500-0621-4-C/results/933800318/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-06-21 19:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.596,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908500-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800321",NA,"as N","Nitrogen","Dissolved","0.539","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908500-0621-4-C/results/933800321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-06-21 19:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.539,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908500-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800344",NA,"as N","Nitrogen","Total","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908500-0708-4-C/results/933800344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-07-08 16:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210706-4908500-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800347",NA,"as N","Nitrogen","Dissolved","0.393","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210706-4908500-0708-4-C/results/933800347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-07-08 16:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.393,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908500-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800370",NA,"as N","Nitrogen","Total","0.573","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908500-0719-4-C/results/933800370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-07-19 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.573,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908500-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800373",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908500-0719-4-C/results/933800373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-07-19 17:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908500-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800379",NA,"as N","Nitrogen","Total","0.464","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908500-0809-4-C/results/933800379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-08-09 17:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.464,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908500-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800382",NA,"as N","Nitrogen","Dissolved","0.491","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908500-0809-4-C/results/933800382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-08-09 17:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.491,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908500-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"11:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800405",NA,"as N","Nitrogen","Total","0.951","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908500-0927-4-C/results/933800405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-09-27 18:33:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.951,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908500-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"11:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908500","BEAR R E OF WOODRUFF",NA,NA,NA,NA,"41.5320700000","-111.1321400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800408",NA,"as N","Nitrogen","Dissolved","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908500-0927-4-C/results/933800408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-09-27 18:33:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5320700000","-111.1321400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",41.53207,-111.13214,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908697-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800414",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908697-0405-4-C/results/933800414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-04-05 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908697-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800417",NA,"as N","Nitrogen","Dissolved","0.504","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908697-0405-4-C/results/933800417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:43","STORET",7,NA,2021-04-05 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.504,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908697-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800440",NA,"as N","Nitrogen","Total","0.174","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908697-0503-4-C/results/933800440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-05-03 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.174,"MG/L","Numeric","Pass","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908697-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800443",NA,"as N","Nitrogen","Dissolved","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908697-0503-4-C/results/933800443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-05-03 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908697-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800449",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908697-0607-4-C/results/933800449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-06-07 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908697-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800452",NA,"as N","Nitrogen","Dissolved","0.502","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908697-0607-4-C/results/933800452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-06-07 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.502,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908697-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800475",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908697-0621-4-C/results/933800475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-06-21 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-4908697-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800478",NA,"as N","Nitrogen","Dissolved","0.192","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-4908697-0621-4-C/results/933800478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-06-21 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.192,"MG/L","Numeric","Pass","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908697-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800501",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908697-0719-4-C/results/933800501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-07-19 19:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908697-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800504",NA,"as N","Nitrogen","Dissolved","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908697-0719-4-C/results/933800504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-07-19 19:05:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908697-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800510",NA,"as N","Nitrogen","Total","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908697-0809-4-C/results/933800510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-08-09 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908697-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800513",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908697-0809-4-C/results/933800513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-08-09 19:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908697-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"12:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800536",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908697-0927-4-C/results/933800536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-09-27 19:54:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908697-0927-4-C","Sample-Routine","Water",NA,2021-09-27,"12:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908697","Big Creek 0.25 mile above gaging station at road xing",NA,NA,NA,NA,"41.6087500000","-111.2584300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800539",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908697-0927-4-C/results/933800539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-09-27 19:54:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6087500000","-111.2584300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",41.60875,-111.25843,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C","Sample-Routine","Water",NA,2021-09-10,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908701","Right Hand Fk Logan R ~2.2 mi ab Logan R (UT09ST-174)",NA,NA,NA,NA,"41.7725300000","-111.6029900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800547",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C/results/933800547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-09-10 15:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7725300000","-111.6029900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.77253,-111.60299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C","Sample-Routine","Water",NA,2021-09-10,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908701","Right Hand Fk Logan R ~2.2 mi ab Logan R (UT09ST-174)",NA,NA,NA,NA,"41.7725300000","-111.6029900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800550",NA,"as N","Nitrogen","Dissolved","0.628","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908701-0910-4-C/results/933800550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-09-10 15:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7725300000","-111.6029900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.628,"MG/L","Numeric","Not Reviewed","Uncensored",41.77253,-111.60299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C","Sample-Routine","Water",NA,2021-06-30,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908703","Blacksmith Fork AB SR101 road crossing at mile post 10 (UT09ST-103)",NA,NA,NA,NA,"41.6207000000","-111.7591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800575",NA,"as N","Nitrogen","Total","0.14","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C/results/933800575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-06-30 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6207000000","-111.7591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.14,"MG/L","Numeric","Pass","Uncensored",41.6207,-111.7591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C","Sample-Routine","Water",NA,2021-06-30,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908703","Blacksmith Fork AB SR101 road crossing at mile post 10 (UT09ST-103)",NA,NA,NA,NA,"41.6207000000","-111.7591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800578",NA,"as N","Nitrogen","Dissolved","0.186","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908703-0630-4-C/results/933800578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:44","STORET",7,NA,2021-06-30 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6207000000","-111.7591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Pass","Uncensored",41.6207,-111.7591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908712","Mill Creek above North Fork (UT09ST-112)",NA,NA,NA,NA,"40.9303200000","-110.7400600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800604",NA,"as N","Nitrogen","Total","0.087","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C/results/933800604/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:45","STORET",7,NA,2021-08-12 17:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.9303200000","-110.7400600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.087,"MG/L","Numeric","Pass","Uncensored",40.93032,-110.74006,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908712","Mill Creek above North Fork (UT09ST-112)",NA,NA,NA,NA,"40.9303200000","-110.7400600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800607",NA,"as N","Nitrogen","Dissolved","0.138","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908712-0812-4-C/results/933800607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:45","STORET",7,NA,2021-08-12 17:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.9303200000","-110.7400600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.138,"MG/L","Numeric","Pass","Uncensored",40.93032,-110.74006,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C","Sample-Routine","Water",NA,2021-08-31,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908713","Malad River ab 20800 N Xing near Plymouth (UT09ST-113)",NA,NA,NA,NA,"41.8882800000","-112.1881600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800633",NA,"as N","Nitrogen","Total","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C/results/933800633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:45","STORET",7,NA,2021-08-31 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8882800000","-112.1881600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",41.88828,-112.18816,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C","Sample-Routine","Water",NA,2021-08-31,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908713","Malad River ab 20800 N Xing near Plymouth (UT09ST-113)",NA,NA,NA,NA,"41.8882800000","-112.1881600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800636",NA,"as N","Nitrogen","Dissolved","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908713-0831-4-C/results/933800636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:45","STORET",7,NA,2021-08-31 16:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.8882800000","-112.1881600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",41.88828,-112.18816,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908716","Hayden Fork above Hayden Fork Campground (UT09ST-116)",NA,NA,NA,NA,"40.8286100000","-110.8550700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800662",NA,"as N","Nitrogen","Total","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C/results/933800662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:45","STORET",7,NA,2021-07-08 17:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8286100000","-110.8550700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",40.82861,-110.85507,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C","Sample-Routine","Water",NA,2021-07-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908716","Hayden Fork above Hayden Fork Campground (UT09ST-116)",NA,NA,NA,NA,"40.8286100000","-110.8550700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800665",NA,"as N","Nitrogen","Dissolved","0.997","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908716-0708-4-C/results/933800665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:45","STORET",7,NA,2021-07-08 17:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8286100000","-110.8550700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.997,"MG/L","Numeric","Not Reviewed","Uncensored",40.82861,-110.85507,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908721","Little Bear River ~0.3 mi bl Mendon Rd Xing (UT09ST-121)",NA,NA,NA,NA,"41.7214600000","-111.9464700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800691",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C/results/933800691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:45","STORET",7,NA,2021-07-06 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7214600000","-111.9464700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",41.72146,-111.94647,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908721","Little Bear River ~0.3 mi bl Mendon Rd Xing (UT09ST-121)",NA,NA,NA,NA,"41.7214600000","-111.9464700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800694",NA,"as N","Nitrogen","Dissolved","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908721-0706-4-C/results/933800694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:45","STORET",7,NA,2021-07-06 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7214600000","-111.9464700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",41.72146,-111.94647,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C","Sample-Routine","Water",NA,2021-08-30,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908734","Logan River ab Diversion near Lauralin Dr in Logan (UT09ST-195)",NA,NA,NA,NA,"41.7354100000","-111.8093100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800720",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C/results/933800720/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-08-30 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7354100000","-111.8093100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.73541,-111.80931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C","Sample-Routine","Water",NA,2021-08-30,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908734","Logan River ab Diversion near Lauralin Dr in Logan (UT09ST-195)",NA,NA,NA,NA,"41.7354100000","-111.8093100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800723",NA,"as N","Nitrogen","Dissolved","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908734-0830-4-C/results/933800723/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-08-30 18:50:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7354100000","-111.8093100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",41.73541,-111.80931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908742","Left Hand Fk of Blacksmith Fk bl Sow Hole confluence (UT09ST-142)",NA,NA,NA,NA,"41.6625100000","-111.6361500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800749",NA,"as N","Nitrogen","Total","0.178","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C/results/933800749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-06-29 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6625100000","-111.6361500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.178,"MG/L","Numeric","Pass","Uncensored",41.66251,-111.63615,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908742","Left Hand Fk of Blacksmith Fk bl Sow Hole confluence (UT09ST-142)",NA,NA,NA,NA,"41.6625100000","-111.6361500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800752",NA,"as N","Nitrogen","Dissolved","0.281","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908742-0629-4-C/results/933800752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-06-29 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6625100000","-111.6361500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.281,"MG/L","Numeric","Not Reviewed","Uncensored",41.66251,-111.63615,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908744-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800776",NA,"as N","Nitrogen","Total","0.498","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908744-0405-4-C/results/933800776/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-04-05 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.498,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908744-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800779",NA,"as N","Nitrogen","Dissolved","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908744-0405-4-C/results/933800779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-04-05 22:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908744-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800802",NA,"as N","Nitrogen","Total","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908744-0504-4-C/results/933800802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-05-04 15:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908744-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800805",NA,"as N","Nitrogen","Dissolved","0.968","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908744-0504-4-C/results/933800805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-05-04 15:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.968,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908744-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800811",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908744-0608-4-C/results/933800811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-06-08 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908744-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800814",NA,"as N","Nitrogen","Dissolved","0.563","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908744-0608-4-C/results/933800814/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-06-08 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.563,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908744-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800837",NA,"as N","Nitrogen","Total","0.086","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908744-0720-4-C/results/933800837/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-07-20 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.086,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908744-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800840",NA,"as N","Nitrogen","Dissolved","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908744-0720-4-C/results/933800840/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-07-20 17:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908744-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800846","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908744-0810-4-C/results/933800846/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-08-10 16:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908744-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800849",NA,"as N","Nitrogen","Dissolved","0.343","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908744-0810-4-C/results/933800849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:46","STORET",7,NA,2021-08-10 16:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.343,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C","Sample-Routine","Water",NA,2021-09-02,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800873",NA,"as N","Nitrogen","Total","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C/results/933800873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-09-02 16:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C","Sample-Routine","Water",NA,2021-09-02,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800876",NA,"as N","Nitrogen","Dissolved","0.153","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4908744-0902-4-C/results/933800876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-09-02 16:55:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.153,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908744-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800900",NA,"as N","Nitrogen","Total","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908744-0928-4-C/results/933800900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-09-28 19:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908744-0928-4-C","Sample-Routine","Water",NA,2021-09-28,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908744","Logan River bl 2nd Dam (UT09ST-198)",NA,NA,NA,NA,"41.7449900000","-111.7493200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800903",NA,"as N","Nitrogen","Dissolved","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908744-0928-4-C/results/933800903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-09-28 19:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7449900000","-111.7493200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",41.74499,-111.74932,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908745-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800909",NA,"as N","Nitrogen","Total","0.422","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908745-0405-4-C/results/933800909/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-04-05 22:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.422,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-4908745-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800912",NA,"as N","Nitrogen","Dissolved","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-4908745-0405-4-C/results/933800912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-04-05 22:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908745-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800934",NA,"as N","Nitrogen","Total","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908745-0517-4-C/results/933800934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-05-17 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-4908745-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800937",NA,"as N","Nitrogen","Dissolved","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-4908745-0517-4-C/results/933800937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-05-17 21:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908745-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800943",NA,"as N","Nitrogen","Total","0.817","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908745-0607-4-C/results/933800943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-06-07 22:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.817,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-4908745-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800946",NA,"as N","Nitrogen","Dissolved","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-4908745-0607-4-C/results/933800946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-06-07 22:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908745-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800969",NA,"as N","Nitrogen","Total","0.587","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908745-0719-4-C/results/933800969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-07-19 22:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.587,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-4908745-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800972",NA,"as N","Nitrogen","Dissolved","0.527","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-4908745-0719-4-C/results/933800972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-07-19 22:20:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.527,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908745-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800978",NA,"as N","Nitrogen","Total","0.335","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908745-0810-4-C/results/933800978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-08-10 21:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.335,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-4908745-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933800981",NA,"as N","Nitrogen","Dissolved","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-4908745-0810-4-C/results/933800981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:47","STORET",7,NA,2021-08-10 21:25:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908745-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801002",NA,"as N","Nitrogen","Total","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908745-0921-4-C/results/933801002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-09-21 21:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-4908745-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908745","Malad River @ 2400 N Xing in Plymouth (UT09ST-145)",NA,NA,NA,NA,"41.9420500000","-112.1972700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801005",NA,"as N","Nitrogen","Dissolved","0.755","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-4908745-0921-4-C/results/933801005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-09-21 21:55:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.9420500000","-112.1972700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.755,"MG/L","Numeric","Not Reviewed","Uncensored",41.94205,-112.19727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-12,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801019","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C/results/933801019/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-04-13 02:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-12,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801024","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4910009-0412-4-C/results/933801024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-04-13 02:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-13,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801058","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C/results/933801058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-04-14 02:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-13,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801063","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4910009-0413-4-C/results/933801063/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-04-14 02:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-10,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801077","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C/results/933801077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-05-11 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-10,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801082","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4910009-0510-4-C/results/933801082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-05-11 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-12,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801096","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C/results/933801096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-05-13 02:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-12,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801101","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4910009-0512-4-C/results/933801101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:48","STORET",7,NA,2021-05-13 02:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-14,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801135","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C/results/933801135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-06-14 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-14,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801140","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4910009-0614-4-C/results/933801140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-06-14 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-15,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801174","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C/results/933801174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-06-15 23:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-15,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801179",NA,"as N","Nitrogen","Dissolved","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4910009-0615-4-C/results/933801179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-06-15 23:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-12,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801193","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C/results/933801193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-07-12 21:25:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-12,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801198","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0712-4-C/results/933801198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-07-12 21:25:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-13,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801212",NA,"as N","Nitrogen","Dissolved","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C/results/933801212/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-07-13 20:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-13,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801217","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0713-4-C/results/933801217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-07-13 20:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-14,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801251","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C/results/933801251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-07-15 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-14,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801256",NA,"as N","Nitrogen","Dissolved","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4910009-0714-4-C/results/933801256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-07-15 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-16,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801270","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C/results/933801270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-08-17 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-16,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801275","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0816-4-C/results/933801275/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:49","STORET",7,NA,2021-08-17 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801309","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C/results/933801309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-08-17 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801314",NA,"as N","Nitrogen","Dissolved","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0817-4-C/results/933801314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-08-17 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-18,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801328","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C/results/933801328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-08-18 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-18,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801333",NA,"as N","Nitrogen","Dissolved","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4910009-0818-4-C/results/933801333/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-08-18 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-13,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801347","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C/results/933801347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-09-14 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-13,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801352","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0913-4-C/results/933801352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-09-14 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801386","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C/results/933801386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-09-14 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801391",NA,"as N","Nitrogen","Dissolved","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0914-4-C/results/933801391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-09-14 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801405","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C/results/933801405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-09-15 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801410",NA,"as N","Nitrogen","Dissolved","0.114","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4910009-0915-4-C/results/933801410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-09-15 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.114,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-21,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801420",NA,"as N","Nitrogen","Total","0.433","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C/results/933801420/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-06-21 22:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.433,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-21,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801423",NA,"as N","Nitrogen","Dissolved","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-2-C/results/933801423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-06-21 22:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C","Sample-Composite Without Parents","Water",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","6 Photic zone samples taken at 1m, 4m, 9m, 12m, 17m, and 20m; Licor 1% depth at 20m; sample time = 15:40",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801433",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C/results/933801433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-06-21 22:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C","Sample-Composite Without Parents","Water",NA,2021-06-21,"15:40:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","6 Photic zone samples taken at 1m, 4m, 9m, 12m, 17m, and 20m; Licor 1% depth at 20m; sample time = 15:40",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801436",NA,"as N","Nitrogen","Dissolved","0.281","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-PZ-C/results/933801436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-06-21 22:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.281,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C","Sample-Routine","Water",NA,2021-06-21,"16:10:00","MST",NA,NA,NA,"Bottom","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801440",NA,"as N","Nitrogen","Total","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C/results/933801440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-06-21 23:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C","Sample-Routine","Water",NA,2021-06-21,"16:10:00","MST",NA,NA,NA,"Bottom","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801443",NA,"as N","Nitrogen","Dissolved","0.307","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210621-4917190-0621-29-C/results/933801443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-06-21 23:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.307,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-26,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801453",NA,"as N","Nitrogen","Total","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C/results/933801453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-07-26 17:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-26,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801456",NA,"as N","Nitrogen","Dissolved","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4917190-0726-2-C/results/933801456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:50","STORET",7,NA,2021-07-26 17:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C","Sample-Routine","Water",NA,2021-07-26,"11:00:00","MST",NA,NA,NA,"Bottom","32.05","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801460",NA,"as N","Nitrogen","Total","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C/results/933801460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-07-26 18:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",32.05,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C","Sample-Routine","Water",NA,2021-07-26,"11:00:00","MST",NA,NA,NA,"Bottom","32.05","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801463",NA,"as N","Nitrogen","Dissolved","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210726-4917190-0726-29-C/results/933801463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-07-26 18:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",32.05,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801473",NA,"as N","Nitrogen","Total","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C/results/933801473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-01 19:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-01,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801476",NA,"as N","Nitrogen","Dissolved","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-2-C/results/933801476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-01 19:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C","Sample-Composite Without Parents","Water",NA,2021-09-01,"12:50:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Licor 1% depth at 15m; 6 Photic zone samples taken at 1m, 4m, 7m, 10m, 13m, and 15m; sample time = 12:50; no hydrodata",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801486",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C/results/933801486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-01 19:50:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C","Sample-Composite Without Parents","Water",NA,2021-09-01,"12:50:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Licor 1% depth at 15m; 6 Photic zone samples taken at 1m, 4m, 7m, 10m, 13m, and 15m; sample time = 12:50; no hydrodata",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801489",NA,"as N","Nitrogen","Dissolved","0.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-PZ-C/results/933801489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-01 19:50:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C","Sample-Routine","Water",NA,2021-09-01,"13:00:00","MST",NA,NA,NA,"Bottom","35","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801493",NA,"as N","Nitrogen","Total","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C/results/933801493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-01 20:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",35,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C","Sample-Routine","Water",NA,2021-09-01,"13:00:00","MST",NA,NA,NA,"Bottom","35","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801496",NA,"as N","Nitrogen","Dissolved","0.343","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210901-4917190-0901-29-C/results/933801496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-01 20:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.343,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",35,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-27,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801506",NA,"as N","Nitrogen","Total","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C/results/933801506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-27 20:05:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-27,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801509",NA,"as N","Nitrogen","Dissolved","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4917190-0927-2-C/results/933801509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-27 20:05:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C","Sample-Routine","Water",NA,2021-09-27,"13:25:00","MST",NA,NA,NA,"Bottom","34","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801513",NA,"as N","Nitrogen","Total","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C/results/933801513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-27 20:25:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",34,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C","Sample-Routine","Water",NA,2021-09-27,"13:25:00","MST",NA,NA,NA,"Bottom","34","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801516",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL210927-4917190-0927-29-C/results/933801516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-09-27 20:25:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",34,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801530",NA,"as N","Nitrogen","Total","0.611","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C/results/933801530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-04-12 16:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.611,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801535",NA,"as N","Nitrogen","Dissolved","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917305-0412-2-C/results/933801535/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-04-12 16:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"09:25:00","MST",NA,NA,NA,"Bottom","1.509","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801550",NA,"as N","Nitrogen","Total","0.616","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C/results/933801550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-04-12 16:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.616,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.509,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"09:25:00","MST",NA,NA,NA,"Bottom","1.509","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801555",NA,"as N","Nitrogen","Dissolved","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917305-0412-29-C/results/933801555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-04-12 16:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.509,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801589",NA,"as N","Nitrogen","Total","0.914","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C/results/933801589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-05-12 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.914,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801594",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917305-0512-2-C/results/933801594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-05-12 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"09:40:00","MST",NA,NA,NA,"Bottom","1.423","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801607",NA,"as N","Nitrogen","Total","0.905","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C/results/933801607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-05-12 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.905,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.423,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"09:40:00","MST",NA,NA,NA,"Bottom","1.423","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801612",NA,"as N","Nitrogen","Dissolved","0.929","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917305-0512-29-C/results/933801612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-05-12 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.929,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.423,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801646",NA,"as N","Nitrogen","Total","0.825","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C/results/933801646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-06-14 16:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.825,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801651",NA,"as N","Nitrogen","Dissolved","0.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917305-0614-2-C/results/933801651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:51","STORET",7,NA,2021-06-14 16:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"09:45:00","MST",NA,NA,NA,"Bottom","1.488","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801666",NA,"as N","Nitrogen","Total","0.906","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C/results/933801666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-06-14 16:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.906,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.488,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"09:45:00","MST",NA,NA,NA,"Bottom","1.488","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801671",NA,"as N","Nitrogen","Dissolved","0.822","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917305-0614-29-C/results/933801671/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-06-14 16:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.822,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.488,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801705",NA,"as N","Nitrogen","Total","0.865","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C/results/933801705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-07-13 16:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.865,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801710",NA,"as N","Nitrogen","Dissolved","0.771","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917305-0713-2-C/results/933801710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-07-13 16:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.771,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"09:15:00","MST",NA,NA,NA,"Bottom","0.916","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801725",NA,"as N","Nitrogen","Total","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C/results/933801725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-07-13 16:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.916,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"09:15:00","MST",NA,NA,NA,"Bottom","0.916","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801730",NA,"as N","Nitrogen","Dissolved","0.904","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917305-0713-29-C/results/933801730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-07-13 16:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.904,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.916,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801764",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C/results/933801764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-08-16 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801769",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917305-0816-2-C/results/933801769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-08-16 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801785",NA,"as N","Nitrogen","Total","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C/results/933801785/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-09-13 16:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801790",NA,"as N","Nitrogen","Dissolved","0.836","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917305-0913-2-C/results/933801790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-09-13 16:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.836,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801806",NA,"as N","Nitrogen","Total","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C/results/933801806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-04-12 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801811",NA,"as N","Nitrogen","Dissolved","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917310-0412-2-C/results/933801811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-04-12 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"10:15:00","MST",NA,NA,NA,"Bottom","1.911","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801826",NA,"as N","Nitrogen","Total","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C/results/933801826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-04-12 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.911,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"10:15:00","MST",NA,NA,NA,"Bottom","1.911","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801831",NA,"as N","Nitrogen","Dissolved","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917310-0412-29-C/results/933801831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:52","STORET",7,NA,2021-04-12 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.911,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801865",NA,"as N","Nitrogen","Total","0.676","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C/results/933801865/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-05-12 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.676,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801870",NA,"as N","Nitrogen","Dissolved","0.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917310-0512-2-C/results/933801870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-05-12 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"10:40:00","MST",NA,NA,NA,"Bottom","1.793","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801883",NA,"as N","Nitrogen","Total","0.784","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C/results/933801883/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-05-12 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.784,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.793,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"10:40:00","MST",NA,NA,NA,"Bottom","1.793","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801888",NA,"as N","Nitrogen","Dissolved","0.733","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917310-0512-29-C/results/933801888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-05-12 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.733,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.793,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801922",NA,"as N","Nitrogen","Total","0.849","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C/results/933801922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-06-14 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.849,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801927",NA,"as N","Nitrogen","Dissolved","0.839","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917310-0614-2-C/results/933801927/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-06-14 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.839,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"10:45:00","MST",NA,NA,NA,"Bottom","2.066","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801940",NA,"as N","Nitrogen","Total","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C/results/933801940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-06-14 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.066,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"10:45:00","MST",NA,NA,NA,"Bottom","2.066","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801945",NA,"as N","Nitrogen","Dissolved","0.833","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917310-0614-29-C/results/933801945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-06-14 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.833,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.066,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801979",NA,"as N","Nitrogen","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C/results/933801979/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-07-13 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801984",NA,"as N","Nitrogen","Dissolved","0.755","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917310-0713-2-C/results/933801984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-07-13 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.755,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"10:05:00","MST",NA,NA,NA,"Bottom","1.385","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933801997",NA,"as N","Nitrogen","Total","0.693","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C/results/933801997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-07-13 17:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.693,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.385,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"10:05:00","MST",NA,NA,NA,"Bottom","1.385","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802002",NA,"as N","Nitrogen","Dissolved","0.717","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917310-0713-29-C/results/933802002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-07-13 17:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.717,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.385,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802036",NA,"as N","Nitrogen","Total","0.814","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C/results/933802036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-08-16 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.814,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802041",NA,"as N","Nitrogen","Dissolved","0.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917310-0816-2-C/results/933802041/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:53","STORET",7,NA,2021-08-16 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"10:50:00","MST",NA,NA,NA,"Bottom","1.378","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802054",NA,"as N","Nitrogen","Total","0.793","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C/results/933802054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-08-16 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.793,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.378,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"10:50:00","MST",NA,NA,NA,"Bottom","1.378","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802059",NA,"as N","Nitrogen","Dissolved","0.768","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917310-0816-29-C/results/933802059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-08-16 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.768,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.378,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802093",NA,"as N","Nitrogen","Total","0.783","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C/results/933802093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-09-13 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.783,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802098",NA,"as N","Nitrogen","Dissolved","0.808","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917310-0913-2-C/results/933802098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-09-13 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.808,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"10:15:00","MST",NA,NA,NA,"Bottom","1.411","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802111",NA,"as N","Nitrogen","Total","0.777","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C/results/933802111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-09-13 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.777,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.411,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"10:15:00","MST",NA,NA,NA,"Bottom","1.411","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802116",NA,"as N","Nitrogen","Dissolved","0.901","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917310-0913-29-C/results/933802116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-09-13 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.901,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.411,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-12,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802151",NA,"as N","Nitrogen","Total","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C/results/933802151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-04-12 17:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-12,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802156",NA,"as N","Nitrogen","Dissolved","0.702","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917320-0412-2-C/results/933802156/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-04-12 17:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.702,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-12,"10:20:00","MST",NA,NA,NA,"Bottom","1.877","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802171",NA,"as N","Nitrogen","Total","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C/results/933802171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-04-12 17:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.877,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-12,"10:20:00","MST",NA,NA,NA,"Bottom","1.877","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802176",NA,"as N","Nitrogen","Dissolved","0.549","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917320-0412-29-C/results/933802176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-04-12 17:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.549,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.877,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-12,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802210",NA,"as N","Nitrogen","Total","0.688","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C/results/933802210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-05-12 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.688,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-12,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802215",NA,"as N","Nitrogen","Dissolved","0.761","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917320-0512-2-C/results/933802215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-05-12 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.761,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-12,"10:50:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802228",NA,"as N","Nitrogen","Total","0.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C/results/933802228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-05-12 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.75,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-12,"10:50:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802233",NA,"as N","Nitrogen","Dissolved","0.727","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917320-0512-29-C/results/933802233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:54","STORET",7,NA,2021-05-12 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.727,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-14,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802267",NA,"as N","Nitrogen","Total","0.967","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C/results/933802267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-06-14 18:00:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.967,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-14,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802272",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917320-0614-2-C/results/933802272/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-06-14 18:00:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-14,"11:10:00","MST",NA,NA,NA,"Bottom","2.019","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802285",NA,"as N","Nitrogen","Total","0.768","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C/results/933802285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-06-14 18:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.768,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.019,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-14,"11:10:00","MST",NA,NA,NA,"Bottom","2.019","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802290",NA,"as N","Nitrogen","Dissolved","0.706","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917320-0614-29-C/results/933802290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-06-14 18:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.706,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.019,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-13,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802324",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C/results/933802324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-07-13 17:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-13,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802329",NA,"as N","Nitrogen","Dissolved","0.713","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917320-0713-2-C/results/933802329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-07-13 17:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.713,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-13,"10:15:00","MST",NA,NA,NA,"Bottom","1.408","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802342",NA,"as N","Nitrogen","Total","0.662","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C/results/933802342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-07-13 17:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.662,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.408,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-13,"10:15:00","MST",NA,NA,NA,"Bottom","1.408","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802347",NA,"as N","Nitrogen","Dissolved","0.722","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917320-0713-29-C/results/933802347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-07-13 17:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.722,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.408,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802381",NA,"as N","Nitrogen","Total","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C/results/933802381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-08-16 18:00:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802386",NA,"as N","Nitrogen","Dissolved","0.781","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917320-0816-2-C/results/933802386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-08-16 18:00:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.781,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-16,"11:10:00","MST",NA,NA,NA,"Bottom","1.38","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802399",NA,"as N","Nitrogen","Total","0.785","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C/results/933802399/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-08-16 18:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.785,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.38,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-16,"11:10:00","MST",NA,NA,NA,"Bottom","1.38","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802404",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917320-0816-29-C/results/933802404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:55","STORET",7,NA,2021-08-16 18:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.38,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-13,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802438",NA,"as N","Nitrogen","Total","0.841","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C/results/933802438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-09-13 17:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.841,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-13,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802443",NA,"as N","Nitrogen","Dissolved","0.774","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917320-0913-2-C/results/933802443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-09-13 17:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.774,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-13,"10:30:00","MST",NA,NA,NA,"Bottom","1.359","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802456",NA,"as N","Nitrogen","Total","0.951","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C/results/933802456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-09-13 17:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.951,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.359,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-13,"10:30:00","MST",NA,NA,NA,"Bottom","1.359","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802461",NA,"as N","Nitrogen","Dissolved","0.821","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917320-0913-29-C/results/933802461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-09-13 17:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.821,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.359,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802496",NA,"as N","Nitrogen","Total","0.975","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C/results/933802496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-04-12 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.975,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802501",NA,"as N","Nitrogen","Dissolved","0.873","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917335-0412-2-C/results/933802501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-04-12 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.873,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"09:55:00","MST",NA,NA,NA,"Bottom","1.642","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802516",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C/results/933802516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-04-12 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.642,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"09:55:00","MST",NA,NA,NA,"Bottom","1.642","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802521",NA,"as N","Nitrogen","Dissolved","0.965","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917335-0412-29-C/results/933802521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-04-12 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.965,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.642,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802555",NA,"as N","Nitrogen","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C/results/933802555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-05-12 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802560",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917335-0512-2-C/results/933802560/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-05-12 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"10:15:00","MST",NA,NA,NA,"Bottom","1.206","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802573",NA,"as N","Nitrogen","Total","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C/results/933802573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-05-12 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.206,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"10:15:00","MST",NA,NA,NA,"Bottom","1.206","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802578",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917335-0512-29-C/results/933802578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:56","STORET",7,NA,2021-05-12 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.206,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802612",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C/results/933802612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-06-14 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802617",NA,"as N","Nitrogen","Dissolved","0.921","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917335-0614-2-C/results/933802617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-06-14 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.921,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"10:15:00","MST",NA,NA,NA,"Bottom","1.337","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802632",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C/results/933802632/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-06-14 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.337,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"10:15:00","MST",NA,NA,NA,"Bottom","1.337","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802637",NA,"as N","Nitrogen","Dissolved","0.807","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917335-0614-29-C/results/933802637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-06-14 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.807,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.337,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802671",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C/results/933802671/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-07-13 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802676",NA,"as N","Nitrogen","Dissolved","0.918","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917335-0713-2-C/results/933802676/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-07-13 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.918,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"09:45:00","MST",NA,NA,NA,"Bottom","0.775","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802691",NA,"as N","Nitrogen","Total","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C/results/933802691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-07-13 16:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.775,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"09:45:00","MST",NA,NA,NA,"Bottom","0.775","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802696",NA,"as N","Nitrogen","Dissolved","0.887","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917335-0713-29-C/results/933802696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-07-13 16:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.887,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.775,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802730",NA,"as N","Nitrogen","Total","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C/results/933802730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-08-16 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802735",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917335-0816-2-C/results/933802735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-08-16 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802751",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C/results/933802751/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-09-13 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802756",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917335-0913-2-C/results/933802756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-09-13 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802772",NA,"as N","Nitrogen","Total","0.549","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C/results/933802772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-04-12 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.549,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802777",NA,"as N","Nitrogen","Dissolved","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917365-0412-2-C/results/933802777/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:57","STORET",7,NA,2021-04-12 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"10:45:00","MST",NA,NA,NA,"Bottom","2.405","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802792",NA,"as N","Nitrogen","Total","0.604","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C/results/933802792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-04-12 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.604,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.405,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"10:45:00","MST",NA,NA,NA,"Bottom","2.405","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802797",NA,"as N","Nitrogen","Dissolved","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917365-0412-29-C/results/933802797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-04-12 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.405,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802831",NA,"as N","Nitrogen","Total","0.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C/results/933802831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-05-12 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802836",NA,"as N","Nitrogen","Dissolved","0.719","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917365-0512-2-C/results/933802836/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-05-12 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.719,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"11:00:00","MST",NA,NA,NA,"Bottom","2.553","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802849",NA,"as N","Nitrogen","Total","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C/results/933802849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-05-12 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.553,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"11:00:00","MST",NA,NA,NA,"Bottom","2.553","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802854",NA,"as N","Nitrogen","Dissolved","0.656","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917365-0512-29-C/results/933802854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-05-12 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.656,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.553,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802888",NA,"as N","Nitrogen","Total","0.779","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C/results/933802888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-06-14 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.779,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802893",NA,"as N","Nitrogen","Dissolved","0.793","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917365-0614-2-C/results/933802893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-06-14 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.793,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:20:00","MST",NA,NA,NA,"Bottom","2.506","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802906",NA,"as N","Nitrogen","Total","0.812","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C/results/933802906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-06-14 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.812,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.506,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:20:00","MST",NA,NA,NA,"Bottom","2.506","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802911",NA,"as N","Nitrogen","Dissolved","0.808","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917365-0614-29-C/results/933802911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-06-14 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.808,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.506,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802945",NA,"as N","Nitrogen","Total","0.774","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C/results/933802945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-07-13 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.774,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802950",NA,"as N","Nitrogen","Dissolved","0.741","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917365-0713-2-C/results/933802950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:58","STORET",7,NA,2021-07-13 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.741,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"10:35:00","MST",NA,NA,NA,"Bottom","2.153","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802963",NA,"as N","Nitrogen","Total","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C/results/933802963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-07-13 17:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.153,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"10:35:00","MST",NA,NA,NA,"Bottom","2.153","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933802968",NA,"as N","Nitrogen","Dissolved","0.724","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917365-0713-29-C/results/933802968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-07-13 17:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.724,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.153,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803002",NA,"as N","Nitrogen","Total","0.786","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C/results/933803002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-08-16 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.786,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803007",NA,"as N","Nitrogen","Dissolved","0.806","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917365-0816-2-C/results/933803007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-08-16 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.806,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"11:20:00","MST",NA,NA,NA,"Bottom","1.958","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803020",NA,"as N","Nitrogen","Total","0.757","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C/results/933803020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-08-16 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.757,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.958,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"11:20:00","MST",NA,NA,NA,"Bottom","1.958","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803025",NA,"as N","Nitrogen","Dissolved","0.933","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917365-0816-29-C/results/933803025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-08-16 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.933,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.958,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803059",NA,"as N","Nitrogen","Total","0.882","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C/results/933803059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-09-13 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.882,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803064",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917365-0913-2-C/results/933803064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-09-13 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,"Bottom","2.344","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803077",NA,"as N","Nitrogen","Total","0.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C/results/933803077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-09-13 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.77,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.344,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"10:50:00","MST",NA,NA,NA,"Bottom","2.344","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803082",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917365-0913-29-C/results/933803082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-09-13 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.344,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803117",NA,"as N","Nitrogen","Total","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C/results/933803117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-04-12 21:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803122",NA,"as N","Nitrogen","Dissolved","0.537","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917370-0412-2-C/results/933803122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:16:59","STORET",7,NA,2021-04-12 21:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.537,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"14:45:00","MST",NA,NA,NA,"Bottom","2.395","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803137",NA,"as N","Nitrogen","Total","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C/results/933803137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-04-12 21:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.395,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"14:45:00","MST",NA,NA,NA,"Bottom","2.395","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803142",NA,"as N","Nitrogen","Dissolved","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917370-0412-29-C/results/933803142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-04-12 21:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.395,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803176",NA,"as N","Nitrogen","Total","0.646","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C/results/933803176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-05-12 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.646,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803181",NA,"as N","Nitrogen","Dissolved","0.608","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917370-0512-2-C/results/933803181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-05-12 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.608,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"14:30:00","MST",NA,NA,NA,"Bottom","2.259","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803194",NA,"as N","Nitrogen","Total","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C/results/933803194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-05-12 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.259,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"14:30:00","MST",NA,NA,NA,"Bottom","2.259","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803199",NA,"as N","Nitrogen","Dissolved","0.585","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917370-0512-29-C/results/933803199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-05-12 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.585,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.259,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803233",NA,"as N","Nitrogen","Total","0.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C/results/933803233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-06-14 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803238",NA,"as N","Nitrogen","Dissolved","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917370-0614-2-C/results/933803238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-06-14 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"14:35:00","MST",NA,NA,NA,"Bottom","2.414","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803251",NA,"as N","Nitrogen","Total","0.753","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C/results/933803251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-06-14 21:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.753,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.414,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"14:35:00","MST",NA,NA,NA,"Bottom","2.414","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803256",NA,"as N","Nitrogen","Dissolved","0.723","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917370-0614-29-C/results/933803256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-06-14 21:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.723,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.414,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803290",NA,"as N","Nitrogen","Total","0.733","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C/results/933803290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-07-13 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.733,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803295",NA,"as N","Nitrogen","Dissolved","0.726","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917370-0713-2-C/results/933803295/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-07-13 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.726,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"12:50:00","MST",NA,NA,NA,"Bottom","2.193","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803308",NA,"as N","Nitrogen","Total","0.648","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C/results/933803308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-07-13 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.648,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.193,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"12:50:00","MST",NA,NA,NA,"Bottom","2.193","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803313",NA,"as N","Nitrogen","Dissolved","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917370-0713-29-C/results/933803313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:00","STORET",7,NA,2021-07-13 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.193,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803347",NA,"as N","Nitrogen","Total","0.783","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C/results/933803347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-08-16 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.783,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803352",NA,"as N","Nitrogen","Dissolved","0.711","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917370-0816-2-C/results/933803352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-08-16 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.711,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"13:50:00","MST",NA,NA,NA,"Bottom","2.12","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803365",NA,"as N","Nitrogen","Total","0.718","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C/results/933803365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-08-16 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.718,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"13:50:00","MST",NA,NA,NA,"Bottom","2.12","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803370",NA,"as N","Nitrogen","Dissolved","0.713","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917370-0816-29-C/results/933803370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-08-16 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.713,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803404",NA,"as N","Nitrogen","Total","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C/results/933803404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-09-13 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803409",NA,"as N","Nitrogen","Dissolved","0.932","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917370-0913-2-C/results/933803409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-09-13 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.932,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"13:40:00","MST",NA,NA,NA,"Bottom","1.861","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803422",NA,"as N","Nitrogen","Total","0.868","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C/results/933803422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-09-13 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.868,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.861,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"13:40:00","MST",NA,NA,NA,"Bottom","1.861","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803427",NA,"as N","Nitrogen","Dissolved","0.811","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917370-0913-29-C/results/933803427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-09-13 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.811,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.861,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803462",NA,"as N","Nitrogen","Total","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C/results/933803462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-04-12 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803467",NA,"as N","Nitrogen","Dissolved","0.546","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917390-0412-2-C/results/933803467/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-04-12 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.546,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"11:00:00","MST",NA,NA,NA,"Bottom","2.766","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803482",NA,"as N","Nitrogen","Total","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C/results/933803482/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-04-12 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.766,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"11:00:00","MST",NA,NA,NA,"Bottom","2.766","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803487",NA,"as N","Nitrogen","Dissolved","0.587","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917390-0412-29-C/results/933803487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-04-12 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.587,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.766,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917390-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803521",NA,"as N","Nitrogen","Total","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917390-0512-2-C/results/933803521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:01","STORET",7,NA,2021-05-12 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917390-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"11:45:00","MST",NA,NA,NA,"Bottom","2.746","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803534",NA,"as N","Nitrogen","Dissolved","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917390-0512-29-C/results/933803534/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-05-12 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.746,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803568",NA,"as N","Nitrogen","Total","0.742","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C/results/933803568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-06-14 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.742,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803573",NA,"as N","Nitrogen","Dissolved","0.997","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917390-0614-2-C/results/933803573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-06-14 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.997,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,"Bottom","2.827","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803586",NA,"as N","Nitrogen","Total","0.813","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C/results/933803586/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-06-14 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.813,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.827,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,"Bottom","2.827","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803591",NA,"as N","Nitrogen","Dissolved","0.936","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917390-0614-29-C/results/933803591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-06-14 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.936,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.827,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803625",NA,"as N","Nitrogen","Total","0.697","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C/results/933803625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-07-13 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.697,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803630",NA,"as N","Nitrogen","Dissolved","0.816","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917390-0713-2-C/results/933803630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-07-13 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.816,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"10:55:00","MST",NA,NA,NA,"Bottom","2.426","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803643",NA,"as N","Nitrogen","Total","0.635","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C/results/933803643/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-07-13 17:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.635,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.426,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"10:55:00","MST",NA,NA,NA,"Bottom","2.426","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803648",NA,"as N","Nitrogen","Dissolved","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917390-0713-29-C/results/933803648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-07-13 17:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.426,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803682",NA,"as N","Nitrogen","Total","0.828","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C/results/933803682/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-08-16 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.828,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803687",NA,"as N","Nitrogen","Dissolved","0.734","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917390-0816-2-C/results/933803687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-08-16 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.734,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917390-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"12:10:00","MST",NA,NA,NA,"Bottom","2.394","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803700",NA,"as N","Nitrogen","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917390-0816-29-C/results/933803700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-08-16 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.394,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803734",NA,"as N","Nitrogen","Total","0.962","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C/results/933803734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-09-13 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.962,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803739",NA,"as N","Nitrogen","Dissolved","0.882","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917390-0913-2-C/results/933803739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:02","STORET",7,NA,2021-09-13 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.882,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,"Bottom","2.378","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803752",NA,"as N","Nitrogen","Total","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C/results/933803752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-09-13 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.378,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,"Bottom","2.378","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803757",NA,"as N","Nitrogen","Dissolved","0.951","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917390-0913-29-C/results/933803757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-09-13 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.951,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.378,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803792",NA,"as N","Nitrogen","Total","0.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C/results/933803792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-04-12 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803797",NA,"as N","Nitrogen","Dissolved","0.838","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917414-0412-2-C/results/933803797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-04-12 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.838,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"15:10:00","MST",NA,NA,NA,"Bottom","1.908","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803812",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C/results/933803812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-04-12 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.908,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"15:10:00","MST",NA,NA,NA,"Bottom","1.908","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803817",NA,"as N","Nitrogen","Dissolved","0.873","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917414-0412-29-C/results/933803817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-04-12 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.873,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.908,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803851",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C/results/933803851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-05-12 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803856",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917414-0512-2-C/results/933803856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-05-12 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"14:50:00","MST",NA,NA,NA,"Bottom","1.417","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803869",NA,"as N","Nitrogen","Total","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C/results/933803869/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-05-12 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.417,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"14:50:00","MST",NA,NA,NA,"Bottom","1.417","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803874",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917414-0512-29-C/results/933803874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-05-12 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.417,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803908",NA,"as N","Nitrogen","Total","0.812","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C/results/933803908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-06-14 21:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.812,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803913",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917414-0614-2-C/results/933803913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-06-14 21:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"14:50:00","MST",NA,NA,NA,"Bottom","2.053","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803928",NA,"as N","Nitrogen","Total","0.925","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C/results/933803928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-06-14 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.925,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.053,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"14:50:00","MST",NA,NA,NA,"Bottom","2.053","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803933",NA,"as N","Nitrogen","Dissolved","0.915","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917414-0614-29-C/results/933803933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:03","STORET",7,NA,2021-06-14 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.915,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.053,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803967",NA,"as N","Nitrogen","Dissolved","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C/results/933803967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-07-13 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803972",NA,"as N","Nitrogen","Total","0.798","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917414-0713-2-C/results/933803972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-07-13 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.798,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803988",NA,"as N","Nitrogen","Total","0.754","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C/results/933803988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-08-16 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.754,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933803993",NA,"as N","Nitrogen","Dissolved","0.752","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917414-0816-2-C/results/933803993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-08-16 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.752,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804009",NA,"as N","Nitrogen","Total","0.893","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C/results/933804009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-09-13 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.893,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804014",NA,"as N","Nitrogen","Dissolved","0.903","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917414-0913-2-C/results/933804014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-09-13 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.903,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804030",NA,"as N","Nitrogen","Total","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C/results/933804030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-04-12 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804035",NA,"as N","Nitrogen","Dissolved","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917433-0412-2-C/results/933804035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-04-12 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"11:10:00","MST",NA,NA,NA,"Bottom","1.857","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804050",NA,"as N","Nitrogen","Total","0.534","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C/results/933804050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-04-12 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.534,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.857,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"11:10:00","MST",NA,NA,NA,"Bottom","1.857","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804055",NA,"as N","Nitrogen","Dissolved","0.518","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917433-0412-29-C/results/933804055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-04-12 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.518,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.857,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804089",NA,"as N","Nitrogen","Total","0.686","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C/results/933804089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-05-12 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.686,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"6999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804094",NA,"as N","Nitrogen","Dissolved","0.695","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917433-0512-2-C/results/933804094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-05-12 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.695,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"11:30:00","MST",NA,NA,NA,"Bottom","2.449","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804107",NA,"as N","Nitrogen","Total","0.706","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C/results/933804107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-05-12 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.706,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.449,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"11:30:00","MST",NA,NA,NA,"Bottom","2.449","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804112",NA,"as N","Nitrogen","Dissolved","0.782","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917433-0512-29-C/results/933804112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-05-12 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.782,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.449,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804146",NA,"as N","Nitrogen","Total","0.856","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C/results/933804146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:04","STORET",7,NA,2021-06-14 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.856,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804151",NA,"as N","Nitrogen","Dissolved","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917433-0614-2-C/results/933804151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-06-14 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:40:00","MST",NA,NA,NA,"Bottom","2.303","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804166",NA,"as N","Nitrogen","Total","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C/results/933804166/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-06-14 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.303,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"11:40:00","MST",NA,NA,NA,"Bottom","2.303","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804171",NA,"as N","Nitrogen","Dissolved","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917433-0614-29-C/results/933804171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-06-14 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.303,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804205",NA,"as N","Nitrogen","Dissolved","0.718","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C/results/933804205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-07-13 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.718,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804210",NA,"as N","Nitrogen","Total","0.756","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917433-0713-2-C/results/933804210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-07-13 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.756,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"10:45:00","MST",NA,NA,NA,"Bottom","1.959","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804225",NA,"as N","Nitrogen","Dissolved","0.703","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C/results/933804225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-07-13 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.703,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.959,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"10:45:00","MST",NA,NA,NA,"Bottom","1.959","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804230",NA,"as N","Nitrogen","Total","0.749","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917433-0713-29-C/results/933804230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-07-13 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.749,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.959,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804264",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C/results/933804264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-08-16 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804269",NA,"as N","Nitrogen","Dissolved","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917433-0816-2-C/results/933804269/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-08-16 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"11:40:00","MST",NA,NA,NA,"Bottom","1.866","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804284",NA,"as N","Nitrogen","Total","0.898","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C/results/933804284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-08-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.898,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.866,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"11:40:00","MST",NA,NA,NA,"Bottom","1.866","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804289",NA,"as N","Nitrogen","Dissolved","0.801","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917433-0816-29-C/results/933804289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-08-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.801,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.866,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804323",NA,"as N","Nitrogen","Total","0.984","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C/results/933804323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-09-13 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.984,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804328",NA,"as N","Nitrogen","Dissolved","0.963","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917433-0913-2-C/results/933804328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:05","STORET",7,NA,2021-09-13 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.963,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"11:15:00","MST",NA,NA,NA,"Bottom","1.192","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804343",NA,"as N","Nitrogen","Total","0.968","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C/results/933804343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-09-13 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.968,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.192,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"11:15:00","MST",NA,NA,NA,"Bottom","1.192","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804348",NA,"as N","Nitrogen","Dissolved","0.949","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917433-0913-29-C/results/933804348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-09-13 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.949,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.192,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804383",NA,"as N","Nitrogen","Total","0.852","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C/results/933804383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-04-12 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.852,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804388",NA,"as N","Nitrogen","Dissolved","0.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917450-0412-2-C/results/933804388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-04-12 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"12:10:00","MST",NA,NA,NA,"Bottom","1.009","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804403",NA,"as N","Nitrogen","Total","0.786","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C/results/933804403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-04-12 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.786,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.009,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"12:10:00","MST",NA,NA,NA,"Bottom","1.009","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804408",NA,"as N","Nitrogen","Dissolved","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917450-0412-29-C/results/933804408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-04-12 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.009,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804442",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C/results/933804442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-05-12 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804447",NA,"as N","Nitrogen","Dissolved","0.831","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917450-0512-2-C/results/933804447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-05-12 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.831,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804461",NA,"as N","Nitrogen","Total","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C/results/933804461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-06-14 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804466",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917450-0614-2-C/results/933804466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-06-14 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-12,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804480",NA,"as N","Nitrogen","Total","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C/results/933804480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-07-12 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-12,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804485",NA,"as N","Nitrogen","Dissolved","1.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917450-0712-2-C/results/933804485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-07-12 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804499",NA,"as N","Nitrogen","Total","4.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C/results/933804499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-08-17 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804504",NA,"as N","Nitrogen","Dissolved","2.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917450-0817-2-C/results/933804504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-08-17 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-15,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804518",NA,"as N","Nitrogen","Total","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C/results/933804518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-09-15 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-15,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804523",NA,"as N","Nitrogen","Dissolved","2.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917450-0915-2-C/results/933804523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-09-15 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804537",NA,"as N","Nitrogen","Total","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C/results/933804537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:06","STORET",7,NA,2021-04-12 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804542",NA,"as N","Nitrogen","Dissolved","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917500-0412-2-C/results/933804542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-04-12 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"14:20:00","MST",NA,NA,NA,"Bottom","2.938","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804557",NA,"as N","Nitrogen","Total","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C/results/933804557/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-04-12 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.938,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"14:20:00","MST",NA,NA,NA,"Bottom","2.938","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804562",NA,"as N","Nitrogen","Dissolved","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917500-0412-29-C/results/933804562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-04-12 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.938,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804596",NA,"as N","Nitrogen","Total","0.648","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C/results/933804596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-05-12 21:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.648,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804601",NA,"as N","Nitrogen","Dissolved","0.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917500-0512-2-C/results/933804601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-05-12 21:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.76,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"14:10:00","MST",NA,NA,NA,"Bottom","2.435","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804614",NA,"as N","Nitrogen","Total","0.634","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C/results/933804614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-05-12 21:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.634,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.435,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"14:10:00","MST",NA,NA,NA,"Bottom","2.435","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804619",NA,"as N","Nitrogen","Dissolved","0.645","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917500-0512-29-C/results/933804619/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-05-12 21:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.645,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.435,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804653",NA,"as N","Nitrogen","Total","0.752","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C/results/933804653/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-06-14 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.752,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804658",NA,"as N","Nitrogen","Dissolved","0.867","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917500-0614-2-C/results/933804658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-06-14 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.867,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"14:10:00","MST",NA,NA,NA,"Bottom","2.895","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804671",NA,"as N","Nitrogen","Total","0.825","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C/results/933804671/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-06-14 21:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.825,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.895,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"14:10:00","MST",NA,NA,NA,"Bottom","2.895","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804676",NA,"as N","Nitrogen","Dissolved","0.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917500-0614-29-C/results/933804676/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-06-14 21:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.895,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804710",NA,"as N","Nitrogen","Dissolved","0.777","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C/results/933804710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-07-13 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.777,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804715",NA,"as N","Nitrogen","Total","0.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917500-0713-2-C/results/933804715/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-07-13 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"12:20:00","MST",NA,NA,NA,"Bottom","2.086","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804728",NA,"as N","Nitrogen","Dissolved","0.722","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C/results/933804728/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-07-13 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.722,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.086,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"12:20:00","MST",NA,NA,NA,"Bottom","2.086","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804733",NA,"as N","Nitrogen","Total","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917500-0713-29-C/results/933804733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:07","STORET",7,NA,2021-07-13 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.086,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804767",NA,"as N","Nitrogen","Total","0.733","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C/results/933804767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-08-16 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.733,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804772",NA,"as N","Nitrogen","Dissolved","0.675","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917500-0816-2-C/results/933804772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-08-16 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.675,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"13:30:00","MST",NA,NA,NA,"Bottom","2.251","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804785",NA,"as N","Nitrogen","Total","0.736","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C/results/933804785/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-08-16 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.736,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.251,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"13:30:00","MST",NA,NA,NA,"Bottom","2.251","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804790",NA,"as N","Nitrogen","Dissolved","0.704","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917500-0816-29-C/results/933804790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-08-16 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.704,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.251,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804824",NA,"as N","Nitrogen","Total","0.762","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C/results/933804824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-09-13 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.762,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804829",NA,"as N","Nitrogen","Dissolved","0.886","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917500-0913-2-C/results/933804829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-09-13 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.886,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"13:10:00","MST",NA,NA,NA,"Bottom","2.118","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804842",NA,"as N","Nitrogen","Total","0.796","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C/results/933804842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-09-13 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.796,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.118,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"13:10:00","MST",NA,NA,NA,"Bottom","2.118","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804847",NA,"as N","Nitrogen","Dissolved","0.885","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917500-0913-29-C/results/933804847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-09-13 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.885,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.118,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804882",NA,"as N","Nitrogen","Total","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C/results/933804882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-04-12 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804887",NA,"as N","Nitrogen","Dissolved","0.518","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917520-0412-2-C/results/933804887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:08","STORET",7,NA,2021-04-12 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.518,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"15:30:00","MST",NA,NA,NA,"Bottom","1.999","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804902",NA,"as N","Nitrogen","Total","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C/results/933804902/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-04-12 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.999,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"15:30:00","MST",NA,NA,NA,"Bottom","1.999","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804907",NA,"as N","Nitrogen","Dissolved","0.509","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917520-0412-29-C/results/933804907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-04-12 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.509,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.999,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804941",NA,"as N","Nitrogen","Total","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C/results/933804941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-05-12 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804946",NA,"as N","Nitrogen","Dissolved","0.707","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917520-0512-2-C/results/933804946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-05-12 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.707,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"15:10:00","MST",NA,NA,NA,"Bottom","1.949","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804959",NA,"as N","Nitrogen","Total","0.655","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C/results/933804959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-05-12 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.655,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.949,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"15:10:00","MST",NA,NA,NA,"Bottom","1.949","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804964",NA,"as N","Nitrogen","Dissolved","0.679","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917520-0512-29-C/results/933804964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-05-12 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.679,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.949,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933804998",NA,"as N","Nitrogen","Total","0.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C/results/933804998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-06-14 22:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.73,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805003",NA,"as N","Nitrogen","Dissolved","0.937","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917520-0614-2-C/results/933805003/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-06-14 22:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.937,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"15:10:00","MST",NA,NA,NA,"Bottom","1.991","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805016",NA,"as N","Nitrogen","Total","0.761","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C/results/933805016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-06-14 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.761,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.991,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"15:10:00","MST",NA,NA,NA,"Bottom","1.991","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805021",NA,"as N","Nitrogen","Dissolved","0.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917520-0614-29-C/results/933805021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-06-14 22:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.991,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805055",NA,"as N","Nitrogen","Dissolved","0.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C/results/933805055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-07-13 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805060",NA,"as N","Nitrogen","Total","0.717","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917520-0713-2-C/results/933805060/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-07-13 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.717,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"13:30:00","MST",NA,NA,NA,"Bottom","1.539","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805073",NA,"as N","Nitrogen","Dissolved","0.684","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C/results/933805073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-07-13 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.684,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.539,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"13:30:00","MST",NA,NA,NA,"Bottom","1.539","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805078",NA,"as N","Nitrogen","Total","0.673","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917520-0713-29-C/results/933805078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:09","STORET",7,NA,2021-07-13 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.673,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.539,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805112",NA,"as N","Nitrogen","Total","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C/results/933805112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-08-16 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805117",NA,"as N","Nitrogen","Dissolved","0.791","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917520-0816-2-C/results/933805117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-08-16 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.791,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"14:30:00","MST",NA,NA,NA,"Bottom","1.745","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805130",NA,"as N","Nitrogen","Total","0.785","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C/results/933805130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-08-16 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.785,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.745,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"14:30:00","MST",NA,NA,NA,"Bottom","1.745","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805135",NA,"as N","Nitrogen","Dissolved","0.767","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917520-0816-29-C/results/933805135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-08-16 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.767,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.745,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805169",NA,"as N","Nitrogen","Total","0.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C/results/933805169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-09-13 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805174",NA,"as N","Nitrogen","Dissolved","0.825","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917520-0913-2-C/results/933805174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-09-13 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.825,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917520-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"14:15:00","MST",NA,NA,NA,"Bottom","1.385","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805187",NA,"as N","Nitrogen","Total","0.907","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917520-0913-29-C/results/933805187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-09-13 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.907,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.385,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805222",NA,"as N","Nitrogen","Total","0.515","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C/results/933805222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-04-12 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.515,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805227",NA,"as N","Nitrogen","Dissolved","0.581","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917600-0412-2-C/results/933805227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-04-12 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.581,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"13:50:00","MST",NA,NA,NA,"Bottom","0.929","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805242",NA,"as N","Nitrogen","Total","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C/results/933805242/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-04-12 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.929,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"13:50:00","MST",NA,NA,NA,"Bottom","0.929","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805247",NA,"as N","Nitrogen","Dissolved","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917600-0412-29-C/results/933805247/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-04-12 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.929,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805281",NA,"as N","Nitrogen","Total","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C/results/933805281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-06-14 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805286",NA,"as N","Nitrogen","Dissolved","0.865","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917600-0614-2-C/results/933805286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-06-14 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.865,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-12,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805300",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C/results/933805300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-07-12 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-12,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805305",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917600-0712-2-C/results/933805305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:10","STORET",7,NA,2021-07-12 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805319",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C/results/933805319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-08-17 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805324",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917600-0817-2-C/results/933805324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-08-17 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805338",NA,"as N","Nitrogen","Total","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C/results/933805338/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-09-15 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805343",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917600-0915-2-C/results/933805343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-09-15 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805357",NA,"as N","Nitrogen","Total","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C/results/933805357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-04-12 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805362",NA,"as N","Nitrogen","Dissolved","0.549","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917708-0412-2-C/results/933805362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-04-12 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.549,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"13:25:00","MST",NA,NA,NA,"Bottom","1.299","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805377",NA,"as N","Nitrogen","Total","0.543","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C/results/933805377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-04-12 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.543,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.299,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"13:25:00","MST",NA,NA,NA,"Bottom","1.299","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805382",NA,"as N","Nitrogen","Dissolved","0.551","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917708-0412-29-C/results/933805382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-04-12 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.551,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.299,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805416",NA,"as N","Nitrogen","Total","0.694","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C/results/933805416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-05-12 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.694,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805421",NA,"as N","Nitrogen","Dissolved","0.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917708-0512-2-C/results/933805421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-05-12 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"13:15:00","MST",NA,NA,NA,"Bottom","1.197","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805434",NA,"as N","Nitrogen","Total","0.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C/results/933805434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-05-12 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.197,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"13:15:00","MST",NA,NA,NA,"Bottom","1.197","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805439",NA,"as N","Nitrogen","Dissolved","0.964","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917708-0512-29-C/results/933805439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-05-12 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.964,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.197,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805472",NA,"as N","Nitrogen","Total","0.766","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C/results/933805472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-06-14 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.766,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805477",NA,"as N","Nitrogen","Dissolved","0.697","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917708-0614-2-C/results/933805477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-06-14 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.697,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805493",NA,"as N","Nitrogen","Dissolved","0.785","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C/results/933805493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-07-13 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.785,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805498",NA,"as N","Nitrogen","Total","0.974","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917708-0713-2-C/results/933805498/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:11","STORET",7,NA,2021-07-13 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.974,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805514",NA,"as N","Nitrogen","Total","0.959","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C/results/933805514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-08-16 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.959,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805519",NA,"as N","Nitrogen","Dissolved","0.711","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917708-0816-2-C/results/933805519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-08-16 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.711,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805535",NA,"as N","Nitrogen","Total","0.923","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C/results/933805535/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-09-13 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.923,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805540",NA,"as N","Nitrogen","Dissolved","0.722","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917708-0913-2-C/results/933805540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-09-13 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.722,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805556",NA,"as N","Nitrogen","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C/results/933805556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-05-12 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805561",NA,"as N","Nitrogen","Dissolved","0.625","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917710-0512-2-C/results/933805561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-05-12 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.625,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"13:00:00","MST",NA,NA,NA,"Bottom","2.541","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805574",NA,"as N","Nitrogen","Total","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C/results/933805574/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-05-12 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.541,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"13:00:00","MST",NA,NA,NA,"Bottom","2.541","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805579",NA,"as N","Nitrogen","Dissolved","0.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917710-0512-29-C/results/933805579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-05-12 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.541,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805613",NA,"as N","Nitrogen","Total","0.726","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C/results/933805613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-06-14 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.726,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805618",NA,"as N","Nitrogen","Dissolved","0.938","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917710-0614-2-C/results/933805618/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-06-14 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.938,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"13:10:00","MST",NA,NA,NA,"Bottom","2.551","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805631",NA,"as N","Nitrogen","Total","0.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C/results/933805631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-06-14 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.551,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"13:10:00","MST",NA,NA,NA,"Bottom","2.551","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805636",NA,"as N","Nitrogen","Dissolved","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917710-0614-29-C/results/933805636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-06-14 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.551,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805670",NA,"as N","Nitrogen","Dissolved","0.667","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C/results/933805670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-07-13 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.667,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805675",NA,"as N","Nitrogen","Total","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917710-0713-2-C/results/933805675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-07-13 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"11:45:00","MST",NA,NA,NA,"Bottom","2.379","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805688",NA,"as N","Nitrogen","Dissolved","0.673","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C/results/933805688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-07-13 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.673,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.379,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"11:45:00","MST",NA,NA,NA,"Bottom","2.379","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805693",NA,"as N","Nitrogen","Total","0.691","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917710-0713-29-C/results/933805693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:12","STORET",7,NA,2021-07-13 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.691,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.379,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805727",NA,"as N","Nitrogen","Total","0.798","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C/results/933805727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-08-16 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.798,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805732",NA,"as N","Nitrogen","Dissolved","0.979","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917710-0816-2-C/results/933805732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-08-16 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.979,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"12:55:00","MST",NA,NA,NA,"Bottom","2.261","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805745",NA,"as N","Nitrogen","Total","0.795","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C/results/933805745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-08-16 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.795,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.261,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"12:55:00","MST",NA,NA,NA,"Bottom","2.261","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805750",NA,"as N","Nitrogen","Dissolved","0.765","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917710-0816-29-C/results/933805750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-08-16 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.765,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.261,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805784",NA,"as N","Nitrogen","Total","0.824","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C/results/933805784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-09-13 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.824,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805789",NA,"as N","Nitrogen","Dissolved","0.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917710-0913-2-C/results/933805789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-09-13 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"12:30:00","MST",NA,NA,NA,"Bottom","2.301","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805802",NA,"as N","Nitrogen","Total","0.846","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C/results/933805802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-09-13 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.846,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.301,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"12:30:00","MST",NA,NA,NA,"Bottom","2.301","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805807",NA,"as N","Nitrogen","Dissolved","0.954","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917710-0913-29-C/results/933805807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-09-13 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.954,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.301,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805842",NA,"as N","Nitrogen","Total","0.587","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C/results/933805842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-04-12 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.587,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805847",NA,"as N","Nitrogen","Dissolved","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917715-0412-2-C/results/933805847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-04-12 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"12:55:00","MST",NA,NA,NA,"Bottom","3.007","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805862",NA,"as N","Nitrogen","Total","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C/results/933805862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-04-12 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.007,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"12:55:00","MST",NA,NA,NA,"Bottom","3.007","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805867",NA,"as N","Nitrogen","Dissolved","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917715-0412-29-C/results/933805867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:13","STORET",7,NA,2021-04-12 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.007,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805901",NA,"as N","Nitrogen","Total","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C/results/933805901/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-05-12 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805906",NA,"as N","Nitrogen","Dissolved","0.866","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917715-0512-2-C/results/933805906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-05-12 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.866,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,"Bottom","2.634","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805919",NA,"as N","Nitrogen","Total","0.682","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C/results/933805919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-05-12 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.682,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.634,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,"Bottom","2.634","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805924",NA,"as N","Nitrogen","Dissolved","0.695","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917715-0512-29-C/results/933805924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-05-12 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.695,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.634,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805958",NA,"as N","Nitrogen","Total","0.728","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C/results/933805958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-06-14 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.728,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805963",NA,"as N","Nitrogen","Dissolved","0.954","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917715-0614-2-C/results/933805963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-06-14 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.954,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"12:50:00","MST",NA,NA,NA,"Bottom","2.751","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805976",NA,"as N","Nitrogen","Total","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C/results/933805976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-06-14 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.751,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"12:50:00","MST",NA,NA,NA,"Bottom","2.751","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933805981",NA,"as N","Nitrogen","Dissolved","0.749","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917715-0614-29-C/results/933805981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-06-14 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.749,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.751,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806015",NA,"as N","Nitrogen","Dissolved","0.746","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C/results/933806015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-07-13 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.746,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806020",NA,"as N","Nitrogen","Total","0.735","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917715-0713-2-C/results/933806020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-07-13 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.735,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"11:30:00","MST",NA,NA,NA,"Bottom","2.475","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806033",NA,"as N","Nitrogen","Dissolved","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C/results/933806033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-07-13 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.475,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"11:30:00","MST",NA,NA,NA,"Bottom","2.475","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806038",NA,"as N","Nitrogen","Total","0.708","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917715-0713-29-C/results/933806038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:14","STORET",7,NA,2021-07-13 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.708,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.475,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806072",NA,"as N","Nitrogen","Total","0.894","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C/results/933806072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-08-16 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.894,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-16,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806077",NA,"as N","Nitrogen","Dissolved","0.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917715-0816-2-C/results/933806077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-08-16 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"12:30:00","MST",NA,NA,NA,"Bottom","2.283","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806090",NA,"as N","Nitrogen","Total","0.883","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C/results/933806090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-08-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.883,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.283,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C","Sample-Routine","Water",NA,2021-08-16,"12:30:00","MST",NA,NA,NA,"Bottom","2.283","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806095",NA,"as N","Nitrogen","Dissolved","0.969","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917715-0816-29-C/results/933806095/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-08-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.969,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.283,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806129",NA,"as N","Nitrogen","Total","0.856","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C/results/933806129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-09-13 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.856,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-13,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806134",NA,"as N","Nitrogen","Dissolved","0.735","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917715-0913-2-C/results/933806134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-09-13 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.735,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"12:15:00","MST",NA,NA,NA,"Bottom","2.655","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806147",NA,"as N","Nitrogen","Total","0.857","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C/results/933806147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-09-13 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.857,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.655,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C","Sample-Routine","Water",NA,2021-09-13,"12:15:00","MST",NA,NA,NA,"Bottom","2.655","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806152",NA,"as N","Nitrogen","Dissolved","0.839","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917715-0913-29-C/results/933806152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-09-13 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.839,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.655,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806187",NA,"as N","Nitrogen","Total","0.781","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C/results/933806187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-04-12 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.781,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-04-12,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806192",NA,"as N","Nitrogen","Dissolved","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917770-0412-2-C/results/933806192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:15","STORET",7,NA,2021-04-12 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"12:25:00","MST",NA,NA,NA,"Bottom","1.415","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806207",NA,"as N","Nitrogen","Total","0.763","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C/results/933806207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-04-12 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.763,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.415,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C","Sample-Routine","Water",NA,2021-04-12,"12:25:00","MST",NA,NA,NA,"Bottom","1.415","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806212",NA,"as N","Nitrogen","Dissolved","0.685","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4917770-0412-29-C/results/933806212/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-04-12 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.685,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.415,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806246",NA,"as N","Nitrogen","Total","0.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C/results/933806246/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-05-12 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-12,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806251",NA,"as N","Nitrogen","Dissolved","0.812","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917770-0512-2-C/results/933806251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-05-12 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.812,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"12:15:00","MST",NA,NA,NA,"Bottom","1.657","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806264",NA,"as N","Nitrogen","Total","0.727","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C/results/933806264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-05-12 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.727,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.657,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C","Sample-Routine","Water",NA,2021-05-12,"12:15:00","MST",NA,NA,NA,"Bottom","1.657","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806269",NA,"as N","Nitrogen","Dissolved","0.695","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4917770-0512-29-C/results/933806269/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-05-12 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.695,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.657,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806303",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C/results/933806303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-06-14 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806308",NA,"as N","Nitrogen","Dissolved","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917770-0614-2-C/results/933806308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-06-14 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"12:25:00","MST",NA,NA,NA,"Bottom","1.764","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806321",NA,"as N","Nitrogen","Total","0.945","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C/results/933806321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-06-14 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.945,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.764,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C","Sample-Routine","Water",NA,2021-06-14,"12:25:00","MST",NA,NA,NA,"Bottom","1.764","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806326",NA,"as N","Nitrogen","Dissolved","0.745","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4917770-0614-29-C/results/933806326/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:16","STORET",7,NA,2021-06-14 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.745,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.764,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806360",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C/results/933806360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-07-13 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806365",NA,"as N","Nitrogen","Total","0.795","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917770-0713-2-C/results/933806365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-07-13 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.795,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"11:15:00","MST",NA,NA,NA,"Bottom","1.307","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806378",NA,"as N","Nitrogen","Dissolved","0.821","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C/results/933806378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-07-13 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.821,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.307,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C","Sample-Routine","Water",NA,2021-07-13,"11:15:00","MST",NA,NA,NA,"Bottom","1.307","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806383",NA,"as N","Nitrogen","Total","0.732","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4917770-0713-29-C/results/933806383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-07-13 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.732,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.307,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806417",NA,"as N","Nitrogen","Total","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C/results/933806417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-08-17 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806422",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4917770-0817-2-C/results/933806422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-08-17 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806436",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C/results/933806436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-09-15 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806441",NA,"as N","Nitrogen","Dissolved","0.868","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4917770-0915-2-C/results/933806441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-09-15 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.868,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C","Sample-Routine","Water",NA,2021-05-27,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806451",NA,"as N","Nitrogen","Total","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C/results/933806451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-05-27 16:00:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C","Sample-Routine","Water",NA,2021-05-27,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806455",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920350-0527-4-C/results/933806455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:17","STORET",7,NA,2021-05-27 16:00:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806482",NA,"as N","Nitrogen","Total","0.405","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C/results/933806482/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-07-06 17:00:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.405,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806486",NA,"as N","Nitrogen","Dissolved","0.539","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920350-0706-4-C/results/933806486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-07-06 17:00:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.539,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806513",NA,"as N","Nitrogen","Total","0.555","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C/results/933806513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-08-24 16:25:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.555,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C","Sample-Routine","Water",NA,2021-08-24,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806517",NA,"as N","Nitrogen","Dissolved","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920350-0824-4-C/results/933806517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-08-24 16:25:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-27,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806544",NA,"as N","Nitrogen","Total","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C/results/933806544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-05-27 16:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-27,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806548",NA,"as N","Nitrogen","Dissolved","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920440-0527-2-C/results/933806548/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-05-27 16:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C","Sample-Routine","Water",NA,2021-05-27,"10:15:00","MST",NA,NA,NA,"Bottom","3.56","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806553",NA,"as N","Nitrogen","Total","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C/results/933806553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-05-27 17:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.56,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C","Sample-Routine","Water",NA,2021-05-27,"10:15:00","MST",NA,NA,NA,"Bottom","3.56","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806557",NA,"as N","Nitrogen","Dissolved","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920440-0527-29-C/results/933806557/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-05-27 17:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.56,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-06,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806579",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C/results/933806579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-07-06 17:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-06,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806583",NA,"as N","Nitrogen","Dissolved","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920440-0706-2-C/results/933806583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-07-06 17:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-24,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806593",NA,"as N","Nitrogen","Total","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C/results/933806593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:18","STORET",7,NA,2021-08-24 17:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-24,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806597",NA,"as N","Nitrogen","Dissolved","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920440-0824-2-C/results/933806597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-08-24 17:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-27,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806624",NA,"as N","Nitrogen","Total","0.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C/results/933806624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-05-27 17:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-27,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806628",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920450-0527-2-C/results/933806628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-05-27 17:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C","Sample-Routine","Water",NA,2021-05-27,"10:55:00","MST",NA,NA,NA,"Bottom","3.98","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806633",NA,"as N","Nitrogen","Total","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C/results/933806633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-05-27 17:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.98,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C","Sample-Routine","Water",NA,2021-05-27,"10:55:00","MST",NA,NA,NA,"Bottom","3.98","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806637",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920450-0527-29-C/results/933806637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-05-27 17:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.98,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-06,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806647",NA,"as N","Nitrogen","Total","0.393","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C/results/933806647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-07-06 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.393,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-06,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806651",NA,"as N","Nitrogen","Dissolved","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920450-0706-2-C/results/933806651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-07-06 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-24,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806661",NA,"as N","Nitrogen","Total","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C/results/933806661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-08-24 17:40:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-24,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806665",NA,"as N","Nitrogen","Dissolved","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920450-0824-2-C/results/933806665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-08-24 17:40:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-27,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806675",NA,"as N","Nitrogen","Total","0.602","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C/results/933806675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-05-27 18:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.602,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-27,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806679",NA,"as N","Nitrogen","Dissolved","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920460-0527-2-C/results/933806679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-05-27 18:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C","Sample-Routine","Water",NA,2021-05-27,"11:20:00","MST",NA,NA,NA,"Bottom","5.19","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806684",NA,"as N","Nitrogen","Total","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C/results/933806684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-05-27 18:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C","Sample-Routine","Water",NA,2021-05-27,"11:20:00","MST",NA,NA,NA,"Bottom","5.19","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806688",NA,"as N","Nitrogen","Dissolved","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920460-0527-29-C/results/933806688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-05-27 18:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-06,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806698",NA,"as N","Nitrogen","Total","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C/results/933806698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-07-06 18:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-06,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806702",NA,"as N","Nitrogen","Dissolved","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920460-0706-2-C/results/933806702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:19","STORET",7,NA,2021-07-06 18:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-24,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806712",NA,"as N","Nitrogen","Total","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C/results/933806712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-08-24 18:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-24,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806716",NA,"as N","Nitrogen","Dissolved","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920460-0824-2-C/results/933806716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-08-24 18:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C","Sample-Routine","Water",NA,2021-08-24,"11:05:00","MST",NA,NA,NA,"Bottom","2.95","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806721",NA,"as N","Nitrogen","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C/results/933806721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-08-24 18:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.95,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C","Sample-Routine","Water",NA,2021-08-24,"11:05:00","MST",NA,NA,NA,"Bottom","2.95","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806725",NA,"as N","Nitrogen","Dissolved","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920460-0824-29-C/results/933806725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-08-24 18:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.95,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-27,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806735",NA,"as N","Nitrogen","Total","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C/results/933806735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-05-27 18:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-27,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806739",NA,"as N","Nitrogen","Dissolved","0.619","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920470-0527-2-C/results/933806739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-05-27 18:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.619,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C","Sample-Routine","Water",NA,2021-05-27,"11:55:00","MST",NA,NA,NA,"Bottom","4.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806744",NA,"as N","Nitrogen","Total","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C/results/933806744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-05-27 18:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",4.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C","Sample-Routine","Water",NA,2021-05-27,"11:55:00","MST",NA,NA,NA,"Bottom","4.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806748",NA,"as N","Nitrogen","Dissolved","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4920470-0527-29-C/results/933806748/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-05-27 18:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",4.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-06,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806758",NA,"as N","Nitrogen","Total","0.364","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C/results/933806758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-07-06 18:35:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.364,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-06,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806762",NA,"as N","Nitrogen","Dissolved","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4920470-0706-2-C/results/933806762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-07-06 18:35:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-24,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806789",NA,"as N","Nitrogen","Total","0.537","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C/results/933806789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-08-24 18:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.537,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-24,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806793",NA,"as N","Nitrogen","Dissolved","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210824-4920470-0824-2-C/results/933806793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-08-24 18:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926203-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806796",NA,"as N","Nitrogen","Total","0.333","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926203-0520-4-C/results/933806796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-05-20 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.333,"MG/L","Numeric","Not Reviewed","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926203-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806802",NA,"as N","Nitrogen","Total","0.575","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926203-0719-4-C/results/933806802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-07-19 17:47:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.575,"MG/L","Numeric","Not Reviewed","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926203-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806805",NA,"as N","Nitrogen","Total","0.619","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926203-0812-4-C/results/933806805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-08-12 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.619,"MG/L","Numeric","Not Reviewed","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926203-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806808",NA,"as N","Nitrogen","Total","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926203-0914-4-C/results/933806808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-09-14 17:57:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926260-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"12:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926260","HUFF CK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9630100000","-111.2349100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806811",NA,"as N","Nitrogen","Total","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926260-0520-4-C/results/933806811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:20","STORET",7,NA,2021-05-20 19:44:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.96301,-111.23491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926260-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926260","HUFF CK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9630100000","-111.2349100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806817",NA,"as N","Nitrogen","Total","0.505","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926260-0719-4-C/results/933806817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-07-19 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.505,"MG/L","Numeric","Not Reviewed","Uncensored",40.96301,-111.23491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926290-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806820",NA,"as N","Nitrogen","Total","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926290-0520-4-C/results/933806820/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-05-20 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926290-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806826",NA,"as N","Nitrogen","Total","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926290-0719-4-C/results/933806826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-07-19 18:32:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926290-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806829",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926290-0812-4-C/results/933806829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-08-12 17:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926290-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806832",NA,"as N","Nitrogen","Total","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926290-0914-4-C/results/933806832/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-09-14 18:28:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926350-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806835",NA,"as N","Nitrogen","Total","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926350-0520-4-C/results/933806835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-05-20 23:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926350-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"15:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806841",NA,"as N","Nitrogen","Total","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926350-0719-4-C/results/933806841/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-07-19 22:07:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926350-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"14:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806844",NA,"as N","Nitrogen","Total","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926350-0812-4-C/results/933806844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-08-12 21:17:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926350-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806847",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926350-0914-4-C/results/933806847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-09-14 20:57:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926352-0520-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-20,"16:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806850",NA,"as N","Nitrogen","Total","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926352-0520-4-C/results/933806850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-05-20 23:10:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926352-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"15:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806856",NA,"as N","Nitrogen","Total","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926352-0719-4-C/results/933806856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-07-19 22:07:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926352-0812-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-12,"14:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806859",NA,"as N","Nitrogen","Total","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926352-0812-4-C/results/933806859/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-08-12 21:17:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926352-0914-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-14,"13:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806862",NA,"as N","Nitrogen","Total","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926352-0914-4-C/results/933806862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-09-14 20:59:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926355-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806865",NA,"as N","Nitrogen","Total","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926355-0520-4-C/results/933806865/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-05-20 21:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926355-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806871",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926355-0719-4-C/results/933806871/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-07-19 21:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926355-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"11:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806874",NA,"as N","Nitrogen","Total","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926355-0812-4-C/results/933806874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-08-12 18:37:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926355-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806877",NA,"as N","Nitrogen","Total","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926355-0914-4-C/results/933806877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-09-14 20:28:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926360-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806880",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926360-0520-4-C/results/933806880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-05-20 20:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926360-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"12:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806886",NA,"as N","Nitrogen","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926360-0719-4-C/results/933806886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-07-19 19:07:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926360-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806889",NA,"as N","Nitrogen","Total","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926360-0812-4-C/results/933806889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-08-12 18:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926360-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806892",NA,"as N","Nitrogen","Total","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926360-0914-4-C/results/933806892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-09-14 18:52:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926361-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"14:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806895",NA,"as N","Nitrogen","Total","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926361-0520-4-C/results/933806895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-05-20 21:28:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926361-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"12:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806901",NA,"as N","Nitrogen","Total","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926361-0812-4-C/results/933806901/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-08-12 19:58:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926361-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806904",NA,"as N","Nitrogen","Total","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926361-0914-4-C/results/933806904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-09-14 20:08:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926363-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806910",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926363-0719-4-C/results/933806910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-07-19 20:36:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926363-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"13:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806913",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926363-0812-4-C/results/933806913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-08-12 20:23:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926363-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806916",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926363-0914-4-C/results/933806916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-09-14 19:17:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926370-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"10:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806919",NA,"as N","Nitrogen","Total","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926370-0520-4-C/results/933806919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:21","STORET",7,NA,2021-05-20 17:41:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926370-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806925",NA,"as N","Nitrogen","Total","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926370-0719-4-C/results/933806925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-07-19 16:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926370-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"08:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806928",NA,"as N","Nitrogen","Total","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926370-0812-4-C/results/933806928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-08-12 15:56:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926370-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"09:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806931",NA,"as N","Nitrogen","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926370-0914-4-C/results/933806931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-09-14 16:36:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926380-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806934",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926380-0520-4-C/results/933806934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-05-20 16:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926380-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"08:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806940",NA,"as N","Nitrogen","Total","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926380-0719-4-C/results/933806940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-07-19 15:48:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926380-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"08:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806943",NA,"as N","Nitrogen","Total","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926380-0812-4-C/results/933806943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-08-12 15:38:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926380-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"09:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806946",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926380-0914-4-C/results/933806946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-09-14 16:16:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210520-4926390-0520-4-C","Sample-Routine","Water",NA,2021-05-20,"11:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806949",NA,"as N","Nitrogen","Total","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210520-4926390-0520-4-C/results/933806949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-05-20 18:33:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210719-4926390-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806955",NA,"as N","Nitrogen","Total","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210719-4926390-0719-4-C/results/933806955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-07-19 17:07:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210812-4926390-0812-4-C","Sample-Routine","Water",NA,2021-08-12,"09:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806958",NA,"as N","Nitrogen","Total","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210812-4926390-0812-4-C/results/933806958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-08-12 16:33:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210914-4926390-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"10:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806961",NA,"as N","Nitrogen","Total","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210914-4926390-0914-4-C/results/933806961/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-09-14 17:16:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-27,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806971","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C/results/933806971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-05-27 21:10:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-27,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933806975",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4930007-0527-4-C/results/933806975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-05-27 21:10:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-03,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807002","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C/results/933807002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-06-03 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-03,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807006","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4930007-0603-4-C/results/933807006/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-06-03 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-15,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807033","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C/results/933807033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-06-15 23:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-15,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807037","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4930007-0615-4-C/results/933807037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-06-15 23:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-24,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807064","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C/results/933807064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-06-24 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-24,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807068","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4930007-0624-4-C/results/933807068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:22","STORET",7,NA,2021-06-24 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4930007-0630-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-30,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807095","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4930007-0630-4-C/results/933807095/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-06-30 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4930007-0630-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-30,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807116","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4930007-0630-2-C/results/933807116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-06-30 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-08,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807126","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C/results/933807126/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-07-08 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-08,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807130","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4930007-0708-4-C/results/933807130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-07-08 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-15,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807157","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C/results/933807157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-07-15 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-15,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807161","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-4930007-0715-4-C/results/933807161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-07-15 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-06,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807188","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C/results/933807188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-08-06 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-06,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807192","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-4930007-0806-4-C/results/933807192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-08-06 15:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-18,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807219","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C/results/933807219/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-08-18 20:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-18,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807223",NA,"as N","Nitrogen","Dissolved","0.101","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4930007-0818-4-C/results/933807223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:23","STORET",7,NA,2021-08-18 20:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.101,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-09,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807252",NA,"as N","Nitrogen","Total","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C/results/933807252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-09-09 15:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-09,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807256","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-4930007-0909-4-C/results/933807256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-09-09 15:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807283","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C/results/933807283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-09-15 19:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807287","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4930007-0915-4-C/results/933807287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-09-15 19:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-29,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807314",NA,"as N","Nitrogen","Total","0.115","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C/results/933807314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-09-30 00:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.115,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-29,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807318",NA,"as N","Nitrogen","Dissolved","0.097","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-4930007-0929-4-C/results/933807318/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-09-30 00:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.097,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-27,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807345","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C/results/933807345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-05-27 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-27,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807349",NA,"as N","Nitrogen","Dissolved","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210527-4930009-0527-4-C/results/933807349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-05-27 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-03,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807359","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C/results/933807359/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-06-03 22:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-03,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807363","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-4930009-0603-4-C/results/933807363/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-06-03 22:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-15,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807373","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C/results/933807373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-06-15 23:50:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-15,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807377","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-4930009-0615-4-C/results/933807377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-06-15 23:50:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-24,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807387","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C/results/933807387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-06-24 15:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-24,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807391","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4930009-0624-4-C/results/933807391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-06-24 15:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-30,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807401","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C/results/933807401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-06-30 15:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-30,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807405","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4930009-0630-4-C/results/933807405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:24","STORET",7,NA,2021-06-30 15:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-08,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807415","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C/results/933807415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-07-08 15:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-08,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807419","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-4930009-0708-4-C/results/933807419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-07-08 15:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-15,"08:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807429","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C/results/933807429/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-07-15 15:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-15,"08:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807433","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-4930009-0715-4-C/results/933807433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-07-15 15:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-06,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807443","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C/results/933807443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-08-06 15:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-06,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807447","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-4930009-0806-4-C/results/933807447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-08-06 15:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-18,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807457",NA,"as N","Nitrogen","Total","0.111","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C/results/933807457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-08-18 20:50:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.111,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-18,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807461",NA,"as N","Nitrogen","Dissolved","0.149","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4930009-0818-4-C/results/933807461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-08-18 20:50:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.149,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-09,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807471",NA,"as N","Nitrogen","Total","0.117","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C/results/933807471/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-09-09 15:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.117,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-09,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807475","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-4930009-0909-4-C/results/933807475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-09-09 15:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-15,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807485","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C/results/933807485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-09-15 19:55:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-15,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807489","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-4930009-0915-4-C/results/933807489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-09-15 19:55:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-29,"17:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807499","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C/results/933807499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-09-30 00:35:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-29,"17:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807503",NA,"as N","Nitrogen","Dissolved","0.101","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-4930009-0929-4-C/results/933807503/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-09-30 00:35:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.101,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C","Sample-Routine","Water",NA,2021-04-23,"09:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807513",NA,"as N","Nitrogen","Total","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C/results/933807513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-04-23 16:54:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C","Sample-Routine","Water",NA,2021-04-23,"09:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807516",NA,"as N","Nitrogen","Dissolved","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4930010-0423-4-C/results/933807516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-04-23 16:54:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"14:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807546",NA,"as N","Nitrogen","Total","0.193","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C/results/933807546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-05-19 21:31:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.193,"MG/L","Numeric","Pass","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"14:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807549",NA,"as N","Nitrogen","Dissolved","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4930010-0519-4-C/results/933807549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-05-19 21:31:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807579",NA,"as N","Nitrogen","Total","0.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C/results/933807579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-06-21 19:25:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.3,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807582",NA,"as N","Nitrogen","Dissolved","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4930010-0621-4-C/results/933807582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:25","STORET",7,NA,2021-06-21 19:25:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"08:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807612",NA,"as N","Nitrogen","Total","0.179","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C/results/933807612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:26","STORET",7,NA,2021-07-15 15:02:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.179,"MG/L","Numeric","Pass","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"08:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807615",NA,"as N","Nitrogen","Dissolved","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4930010-0715-4-C/results/933807615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:26","STORET",7,NA,2021-07-15 15:02:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807645",NA,"as N","Nitrogen","Total","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C/results/933807645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:26","STORET",7,NA,2021-08-26 18:50:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807648",NA,"as N","Nitrogen","Dissolved","0.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4930010-0826-4-C/results/933807648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:26","STORET",7,NA,2021-08-26 18:50:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.5,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C","Sample-Routine","Water",NA,2021-04-25,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807711",NA,"as N","Nitrogen","Total","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C/results/933807711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:26","STORET",7,NA,2021-04-25 21:00:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C","Sample-Routine","Water",NA,2021-04-25,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807714",NA,"as N","Nitrogen","Dissolved","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4930150-0425-4-C/results/933807714/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:26","STORET",7,NA,2021-04-25 21:00:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C","Sample-Routine","Water",NA,2021-05-21,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807744",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C/results/933807744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-05-21 16:50:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C","Sample-Routine","Water",NA,2021-05-21,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807747",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4930150-0521-4-C/results/933807747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-05-21 16:50:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C","Sample-Routine","Water",NA,2021-06-19,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807777",NA,"as N","Nitrogen","Total","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C/results/933807777/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-06-19 17:15:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C","Sample-Routine","Water",NA,2021-06-19,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807780",NA,"as N","Nitrogen","Dissolved","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4930150-0619-4-C/results/933807780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-06-19 17:15:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C","Sample-Routine","Water",NA,2021-07-16,"10:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807810",NA,"as N","Nitrogen","Total","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C/results/933807810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-07-16 17:56:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C","Sample-Routine","Water",NA,2021-07-16,"10:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807813",NA,"as N","Nitrogen","Dissolved","0.491","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4930150-0716-4-C/results/933807813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-07-16 17:56:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.491,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C","Sample-Routine","Water",NA,2021-08-30,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807843",NA,"as N","Nitrogen","Total","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C/results/933807843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-08-30 16:10:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C","Sample-Routine","Water",NA,2021-08-30,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807846",NA,"as N","Nitrogen","Dissolved","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4930150-0830-4-C/results/933807846/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-08-30 16:10:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4930290","SAN RAFAEL R AT U24 XING",NA,NA,NA,NA,"38.8597500000","-110.3718700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807925",NA,"as N","Nitrogen","Total","0.665","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C/results/933807925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-05-17 23:00:00,NA,"River/Stream",NA,"14060009",NA,NA,NA,NA,"38.8597500000","-110.3718700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",15,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.665,"MG/L","Numeric","Not Reviewed","Uncensored",38.85975,-110.37187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4930290","SAN RAFAEL R AT U24 XING",NA,NA,NA,NA,"38.8597500000","-110.3718700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807928",NA,"as N","Nitrogen","Dissolved","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4930290-0517-4-C/results/933807928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:27","STORET",7,NA,2021-05-17 23:00:00,NA,"River/Stream",NA,"14060009",NA,NA,NA,NA,"38.8597500000","-110.3718700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",15,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",38.85975,-110.37187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"07:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4931650","PRICE R NEAR WOODSIDE AT US 50&6 XING",NA,NA,NA,NA,"39.2645000000","-110.3429900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807972",NA,"as N","Nitrogen","Total","0.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C/results/933807972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-06-29 14:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.2645000000","-110.3429900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",15,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.94,"MG/L","Numeric","Not Reviewed","Uncensored",39.2645,-110.34299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"07:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4931650","PRICE R NEAR WOODSIDE AT US 50&6 XING",NA,NA,NA,NA,"39.2645000000","-110.3429900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807975",NA,"as N","Nitrogen","Dissolved","0.752","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4931650-0629-4-C/results/933807975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-06-29 14:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.2645000000","-110.3429900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",15,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.752,"MG/L","Numeric","Not Reviewed","Uncensored",39.2645,-110.34299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4932402-0519-4-C","Quality Control Sample-Field Blank","Water",NA,2021-05-19,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4932402","BLM Price Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933807998","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4932402-0519-4-C/results/933807998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-05-19 23:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4932402-0629-4-C","Quality Control Sample-Field Blank","Water",NA,2021-06-29,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4932402","BLM Price Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808019","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4932402-0629-4-C/results/933808019/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-06-29 23:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4932810","PRICE R AB WILLOW CK (PRICE R COAL)",NA,NA,NA,NA,"39.7347800000","-110.8725300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808025",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C/results/933808025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-05-17 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7347800000","-110.8725300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",39.73478,-110.87253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4932810","PRICE R AB WILLOW CK (PRICE R COAL)",NA,NA,NA,NA,"39.7347800000","-110.8725300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808028",NA,"as N","Nitrogen","Dissolved","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4932810-0517-4-C/results/933808028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-05-17 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7347800000","-110.8725300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",39.73478,-110.87253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4932810","PRICE R AB WILLOW CK (PRICE R COAL)",NA,NA,NA,NA,"39.7347800000","-110.8725300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808052",NA,"as N","Nitrogen","Total","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C/results/933808052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-06-28 19:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7347800000","-110.8725300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",39.73478,-110.87253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4932810","PRICE R AB WILLOW CK (PRICE R COAL)",NA,NA,NA,NA,"39.7347800000","-110.8725300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808055",NA,"as N","Nitrogen","Dissolved","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4932810-0628-4-C/results/933808055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-06-28 19:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7347800000","-110.8725300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",39.73478,-110.87253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4932910","MUD CREEK AB SCOFIELD RES",NA,NA,NA,NA,"39.7271800000","-111.1610100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808065",NA,"as N","Nitrogen","Total","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C/results/933808065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-06-22 18:05:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",39.72718,-111.16101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4932910","MUD CREEK AB SCOFIELD RES",NA,NA,NA,NA,"39.7271800000","-111.1610100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808069",NA,"as N","Nitrogen","Dissolved","0.748","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4932910-0622-4-C/results/933808069/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-06-22 18:05:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.748,"MG/L","Numeric","Not Reviewed","Uncensored",39.72718,-111.16101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C","Sample-Routine","Water",NA,2021-08-31,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4932910","MUD CREEK AB SCOFIELD RES",NA,NA,NA,NA,"39.7271800000","-111.1610100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808096",NA,"as N","Nitrogen","Total","0.492","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C/results/933808096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-08-31 18:55:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.492,"MG/L","Numeric","Not Reviewed","Uncensored",39.72718,-111.16101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C","Sample-Routine","Water",NA,2021-08-31,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4932910","MUD CREEK AB SCOFIELD RES",NA,NA,NA,NA,"39.7271800000","-111.1610100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808100",NA,"as N","Nitrogen","Dissolved","0.393","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-4932910-0831-4-C/results/933808100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:28","STORET",7,NA,2021-08-31 18:55:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.393,"MG/L","Numeric","Not Reviewed","Uncensored",39.72718,-111.16101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933770","BITTER CREEK AT MOUTH",NA,NA,NA,NA,"39.9702400000","-109.4123500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808151",NA,"as N","Nitrogen","Total","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C/results/933808151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-05-19 20:30:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9702400000","-109.4123500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",39.97024,-109.41235,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933770","BITTER CREEK AT MOUTH",NA,NA,NA,NA,"39.9702400000","-109.4123500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808154",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933770-0519-4-C/results/933808154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-05-19 20:30:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9702400000","-109.4123500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",39.97024,-109.41235,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933780","WHITE R AB CNFL AB BITTER CK",NA,NA,NA,NA,"39.9699700000","-109.4109500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808178",NA,"as N","Nitrogen","Total","0.317","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C/results/933808178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-05-19 21:00:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9699700000","-109.4109500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.317,"MG/L","Numeric","Not Reviewed","Uncensored",39.96997,-109.41095,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933780","WHITE R AB CNFL AB BITTER CK",NA,NA,NA,NA,"39.9699700000","-109.4109500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808181",NA,"as N","Nitrogen","Dissolved","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933780-0519-4-C/results/933808181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-05-19 21:00:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9699700000","-109.4109500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",39.96997,-109.41095,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C","Sample-Routine","Water",NA,2021-06-30,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933780","WHITE R AB CNFL AB BITTER CK",NA,NA,NA,NA,"39.9699700000","-109.4109500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808205",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C/results/933808205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-06-30 19:00:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9699700000","-109.4109500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",39.96997,-109.41095,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C","Sample-Routine","Water",NA,2021-06-30,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933780","WHITE R AB CNFL AB BITTER CK",NA,NA,NA,NA,"39.9699700000","-109.4109500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808208",NA,"as N","Nitrogen","Dissolved","0.326","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933780-0630-4-C/results/933808208/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-06-30 19:00:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9699700000","-109.4109500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.326,"MG/L","Numeric","Not Reviewed","Uncensored",39.96997,-109.41095,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933970","WHITE R NEAR BONANZA AT U45 XING",NA,NA,NA,NA,"39.9791400000","-109.1781700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808214",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C/results/933808214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-05-19 18:00:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",39.97914,-109.17817,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933970","WHITE R NEAR BONANZA AT U45 XING",NA,NA,NA,NA,"39.9791400000","-109.1781700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808217",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933970-0519-4-C/results/933808217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-05-19 18:00:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",39.97914,-109.17817,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C","Sample-Routine","Water",NA,2021-06-30,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933970","WHITE R NEAR BONANZA AT U45 XING",NA,NA,NA,NA,"39.9791400000","-109.1781700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808241",NA,"as N","Nitrogen","Total","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C/results/933808241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-06-30 16:30:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",39.97914,-109.17817,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C","Sample-Routine","Water",NA,2021-06-30,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933970","WHITE R NEAR BONANZA AT U45 XING",NA,NA,NA,NA,"39.9791400000","-109.1781700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808244",NA,"as N","Nitrogen","Dissolved","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933970-0630-4-C/results/933808244/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-06-30 16:30:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",39.97914,-109.17817,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933972","WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970",NA,NA,NA,NA,"39.9791400000","-109.1781700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808250",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C/results/933808250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-05-19 18:00:00,NA,"River/Stream","Replicate of 4933970","14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",39.97914,-109.17817,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933972","WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970",NA,NA,NA,NA,"39.9791400000","-109.1781700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808253",NA,"as N","Nitrogen","Dissolved","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210517-4933972-0519-4-C/results/933808253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-05-19 18:00:00,NA,"River/Stream","Replicate of 4933970","14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",39.97914,-109.17817,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-30,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933972","WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970",NA,NA,NA,NA,"39.9791400000","-109.1781700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808277",NA,"as N","Nitrogen","Total","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C/results/933808277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-06-30 16:30:00,NA,"River/Stream","Replicate of 4933970","14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",39.97914,-109.17817,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-30,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4933972","WHITE R NEAR BONANZA AT U45 XING Replicate of 4933970",NA,NA,NA,NA,"39.9791400000","-109.1781700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808280",NA,"as N","Nitrogen","Dissolved","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMVERNAL210628-4933972-0630-4-C/results/933808280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-06-30 16:30:00,NA,"River/Stream","Replicate of 4933970","14050007",NA,NA,NA,NA,"39.9791400000","-109.1781700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",39.97914,-109.17817,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"07:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937125","Ouray Park Canal at Mouth ab Pelican Lake",NA,NA,NA,NA,"40.1958800000","-109.6969900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808290",NA,"as N","Nitrogen","Total","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C/results/933808290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-08-18 14:55:00,NA,"Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.1958800000","-109.6969900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.19588,-109.69699,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"07:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937125","Ouray Park Canal at Mouth ab Pelican Lake",NA,NA,NA,NA,"40.1958800000","-109.6969900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808294",NA,"as N","Nitrogen","Dissolved","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937125-0818-4-C/results/933808294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:29","STORET",7,NA,2021-08-18 14:55:00,NA,"Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.1958800000","-109.6969900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.19588,-109.69699,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-29,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808321",NA,"as N","Nitrogen","Total","0.355","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C/results/933808321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-06-29 17:05:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.355,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-29,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808325",NA,"as N","Nitrogen","Dissolved","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937130-0629-2-C/results/933808325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-06-29 17:05:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-18,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808352",NA,"as N","Nitrogen","Total","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C/results/933808352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-08-18 15:50:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-18,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808356",NA,"as N","Nitrogen","Dissolved","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937130-0818-2-C/results/933808356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-08-18 15:50:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-29,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808383",NA,"as N","Nitrogen","Total","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C/results/933808383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-06-29 17:40:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-29,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808387",NA,"as N","Nitrogen","Dissolved","0.506","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937140-0629-2-C/results/933808387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-06-29 17:40:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.506,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-18,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808397",NA,"as N","Nitrogen","Total","0.763","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C/results/933808397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-08-18 16:10:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.763,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-18,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808401",NA,"as N","Nitrogen","Dissolved","0.816","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937140-0818-2-C/results/933808401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-08-18 16:10:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.816,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-29,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808411",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C/results/933808411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-06-29 17:20:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-29,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808415",NA,"as N","Nitrogen","Dissolved","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-4937180-0629-2-C/results/933808415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-06-29 17:20:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-18,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808425",NA,"as N","Nitrogen","Total","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C/results/933808425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-08-18 16:00:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.617,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-18,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808429",NA,"as N","Nitrogen","Dissolved","0.731","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-4937180-0818-2-C/results/933808429/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-08-18 16:00:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.731,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-19,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938550","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP",NA,NA,NA,NA,"40.9171800000","-109.4470900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808437",NA,"as N","Nitrogen","Total","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C/results/933808437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-05-19 15:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",40.91718,-109.44709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-05-19,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938550","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP",NA,NA,NA,NA,"40.9171800000","-109.4470900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808441",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-2-C/results/933808441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-05-19 15:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",40.91718,-109.44709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C","Sample-Routine","Water",NA,2021-05-19,"08:30:00","MST",NA,NA,NA,"AboveThermoclin","6.101","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938550","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP",NA,NA,NA,NA,"40.9171800000","-109.4470900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808446",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C/results/933808446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-05-19 15:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",40.91718,-109.44709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",6.101,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C","Sample-Routine","Water",NA,2021-05-19,"08:30:00","MST",NA,NA,NA,"AboveThermoclin","6.101","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938550","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP",NA,NA,NA,NA,"40.9171800000","-109.4470900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808450",NA,"as N","Nitrogen","Dissolved","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-23-C/results/933808450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-05-19 15:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",40.91718,-109.44709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",6.101,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C","Sample-Routine","Water",NA,2021-05-19,"08:15:00","MST",NA,NA,NA,"Bottom","104.41","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938550","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP",NA,NA,NA,NA,"40.9171800000","-109.4470900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808455",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C/results/933808455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-05-19 15:15:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",40.91718,-109.44709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",104.41,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C","Sample-Routine","Water",NA,2021-05-19,"08:15:00","MST",NA,NA,NA,"Bottom","104.41","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938550","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP",NA,NA,NA,NA,"40.9171800000","-109.4470900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808459",NA,"as N","Nitrogen","Dissolved","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG210518-4938550-0519-29-C/results/933808459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:30","STORET",7,NA,2021-05-19 15:15:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",40.91718,-109.44709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",104.41,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-23,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940720","UPPER ENTERPRISE RES AB DAM 01",NA,NA,NA,NA,"37.5188700000","-113.8627500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808630",NA,"as N","Nitrogen","Total","0.682","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C/results/933808630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:31","STORET",7,NA,2021-06-23 20:10:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.682,"MG/L","Numeric","Not Reviewed","Uncensored",37.51887,-113.86275,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-23,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940720","UPPER ENTERPRISE RES AB DAM 01",NA,NA,NA,NA,"37.5188700000","-113.8627500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808634",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940720-0623-2-C/results/933808634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:31","STORET",7,NA,2021-06-23 20:10:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",37.51887,-113.86275,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C","Sample-Routine","Water",NA,2021-06-23,"13:25:00","MST",NA,NA,NA,"Bottom","7.04","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940720","UPPER ENTERPRISE RES AB DAM 01",NA,NA,NA,NA,"37.5188700000","-113.8627500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808639",NA,"as N","Nitrogen","Total","0.611","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C/results/933808639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:31","STORET",7,NA,2021-06-23 20:25:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.611,"MG/L","Numeric","Not Reviewed","Uncensored",37.51887,-113.86275,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",7.04,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C","Sample-Routine","Water",NA,2021-06-23,"13:25:00","MST",NA,NA,NA,"Bottom","7.04","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940720","UPPER ENTERPRISE RES AB DAM 01",NA,NA,NA,NA,"37.5188700000","-113.8627500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808643",NA,"as N","Nitrogen","Dissolved","0.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940720-0623-29-C/results/933808643/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:31","STORET",7,NA,2021-06-23 20:25:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5188700000","-113.8627500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.66,"MG/L","Numeric","Not Reviewed","Uncensored",37.51887,-113.86275,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",7.04,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-23,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940730","UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02",NA,NA,NA,NA,"37.5166400000","-113.8716400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808670",NA,"as N","Nitrogen","Total","0.645","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C/results/933808670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-06-23 19:55:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5166400000","-113.8716400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.645,"MG/L","Numeric","Not Reviewed","Uncensored",37.51664,-113.87164,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-23,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940730","UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02",NA,NA,NA,NA,"37.5166400000","-113.8716400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808674",NA,"as N","Nitrogen","Dissolved","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940730-0623-2-C/results/933808674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-06-23 19:55:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5166400000","-113.8716400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",37.51664,-113.87164,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C","Sample-Routine","Water",NA,2021-06-23,"13:00:00","MST",NA,NA,NA,"Bottom","5.98","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940730","UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02",NA,NA,NA,NA,"37.5166400000","-113.8716400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808679",NA,"as N","Nitrogen","Total","0.625","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C/results/933808679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-06-23 20:00:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5166400000","-113.8716400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.625,"MG/L","Numeric","Not Reviewed","Uncensored",37.51664,-113.87164,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.98,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C","Sample-Routine","Water",NA,2021-06-23,"13:00:00","MST",NA,NA,NA,"Bottom","5.98","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4940730","UPPER ENTERPRISE RES MIDWAY UP LAKE EMAP and 02",NA,NA,NA,NA,"37.5166400000","-113.8716400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808683",NA,"as N","Nitrogen","Dissolved","0.616","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-4940730-0623-29-C/results/933808683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-06-23 20:00:00,NA,"Lake",NA,"16030006",NA,NA,NA,NA,"37.5166400000","-113.8716400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.616,"MG/L","Numeric","Not Reviewed","Uncensored",37.51664,-113.87164,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.98,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946000-0406-4-C","Quality Control Sample-Field Blank","Water",NA,2021-04-06,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946000","San Pitch River NPS QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808778","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946000-0406-4-C/results/933808778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-04-06 20:10:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946000-0602-4-C","Quality Control Sample-Field Blank","Water",NA,2021-06-02,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946000","San Pitch River NPS QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808784","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946000-0602-4-C/results/933808784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-06-02 16:10:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946000-0914-4-C","Quality Control Sample-Field Blank","Water",NA,2021-09-14,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946000","San Pitch River NPS QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808790",NA,"as N","Nitrogen","Total","0.108","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946000-0914-4-C/results/933808790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-09-14 16:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.108,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946450-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946450","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING",NA,NA,NA,NA,"39.2787100000","-111.6782500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808798",NA,"as N","Nitrogen","Total","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946450-0406-4-C/results/933808798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-04-06 20:10:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",39.27871,-111.67825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946450-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"11:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946450","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING",NA,NA,NA,NA,"39.2787100000","-111.6782500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808804",NA,"as N","Nitrogen","Total","3.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946450-0602-4-C/results/933808804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-06-02 18:17:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.79,"MG/L","Numeric","Not Reviewed","Uncensored",39.27871,-111.67825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946450-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946450","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING",NA,NA,NA,NA,"39.2787100000","-111.6782500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808810",NA,"as N","Nitrogen","Total","3.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946450-0720-4-C/results/933808810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-07-20 21:46:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.66,"MG/L","Numeric","Not Reviewed","Uncensored",39.27871,-111.67825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946650-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946650","SAN PITCH R 1MI W OF CHESTER ON U-117",NA,NA,NA,NA,"39.4756600000","-111.5991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808818",NA,"as N","Nitrogen","Total","0.676","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946650-0406-4-C/results/933808818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-04-06 19:40:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.676,"MG/L","Numeric","Not Reviewed","Uncensored",39.47566,-111.59911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946650-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946650","SAN PITCH R 1MI W OF CHESTER ON U-117",NA,NA,NA,NA,"39.4756600000","-111.5991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808824",NA,"as N","Nitrogen","Total","0.801","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946650-0602-4-C/results/933808824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:32","STORET",7,NA,2021-06-02 17:20:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.801,"MG/L","Numeric","Not Reviewed","Uncensored",39.47566,-111.59911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946650-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946650","SAN PITCH R 1MI W OF CHESTER ON U-117",NA,NA,NA,NA,"39.4756600000","-111.5991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808830",NA,"as N","Nitrogen","Total","0.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946650-0720-4-C/results/933808830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-07-20 21:18:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.65,"MG/L","Numeric","Not Reviewed","Uncensored",39.47566,-111.59911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946650-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946650","SAN PITCH R 1MI W OF CHESTER ON U-117",NA,NA,NA,NA,"39.4756600000","-111.5991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808836",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946650-0914-4-C/results/933808836/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-09-14 18:20:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",39.47566,-111.59911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946750-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946750","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808844",NA,"as N","Nitrogen","Total","0.819","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946750-0406-4-C/results/933808844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-04-06 18:15:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.819,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946750-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946750","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808850",NA,"as N","Nitrogen","Total","0.676","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946750-0602-4-C/results/933808850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-06-02 16:40:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.676,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946750-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946750","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808856",NA,"as N","Nitrogen","Total","0.439","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946750-0720-4-C/results/933808856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-07-20 20:35:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.439,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946750-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946750","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808862",NA,"as N","Nitrogen","Total","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946750-0914-4-C/results/933808862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-09-14 17:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946751-0406-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-06,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946751","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808870",NA,"as N","Nitrogen","Total","0.572","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946751-0406-4-C/results/933808870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-04-06 18:50:00,NA,"River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.572,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946751-0602-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-02,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946751","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808876",NA,"as N","Nitrogen","Total","0.681","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946751-0602-4-C/results/933808876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-06-02 16:40:00,NA,"River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.681,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946751-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"13:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946751","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808882",NA,"as N","Nitrogen","Total","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946751-0720-4-C/results/933808882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-07-20 20:36:00,NA,"River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946751-0914-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-14,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946751","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808888",NA,"as N","Nitrogen","Total","0.518","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946751-0914-4-C/results/933808888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-09-14 17:50:00,NA,"River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.518,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946756-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946756","San Pitch R Bl Fairview WWTP",NA,NA,NA,NA,"39.5747900000","-111.4703900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808896",NA,"as N","Nitrogen","Total","0.801","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946756-0406-4-C/results/933808896/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-04-06 17:30:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.801,"MG/L","Numeric","Not Reviewed","Uncensored",39.57479,-111.47039,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946756-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946756","San Pitch R Bl Fairview WWTP",NA,NA,NA,NA,"39.5747900000","-111.4703900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808902",NA,"as N","Nitrogen","Total","0.717","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946756-0720-4-C/results/933808902/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-07-20 20:21:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.717,"MG/L","Numeric","Not Reviewed","Uncensored",39.57479,-111.47039,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946756-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946756","San Pitch R Bl Fairview WWTP",NA,NA,NA,NA,"39.5747900000","-111.4703900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808908",NA,"as N","Nitrogen","Total","0.921","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946756-0914-4-C/results/933808908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-09-14 17:25:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.921,"MG/L","Numeric","Not Reviewed","Uncensored",39.57479,-111.47039,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946790-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946790","SAN PITCH R @ US 89 XING N OF FAIRVIEW",NA,NA,NA,NA,"39.6382900000","-111.4465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808916",NA,"as N","Nitrogen","Total","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946790-0406-4-C/results/933808916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-04-06 17:05:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6382900000","-111.4465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",39.63829,-111.44658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946840-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"10:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946840","San Pitch R ab Fairview WWTP @ Restoration Project",NA,NA,NA,NA,"39.6086000000","-111.4483200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808924",NA,"as N","Nitrogen","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946840-0406-4-C/results/933808924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-04-06 17:17:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",39.6086,-111.44832,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946840-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946840","San Pitch R ab Fairview WWTP @ Restoration Project",NA,NA,NA,NA,"39.6086000000","-111.4483200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808930",NA,"as N","Nitrogen","Total","0.348","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946840-0602-4-C/results/933808930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-06-02 16:15:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.348,"MG/L","Numeric","Not Reviewed","Uncensored",39.6086,-111.44832,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946840-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946840","San Pitch R ab Fairview WWTP @ Restoration Project",NA,NA,NA,NA,"39.6086000000","-111.4483200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808936",NA,"as N","Nitrogen","Total","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946840-0720-4-C/results/933808936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-07-20 20:05:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",39.6086,-111.44832,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946840-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946840","San Pitch R ab Fairview WWTP @ Restoration Project",NA,NA,NA,NA,"39.6086000000","-111.4483200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808942",NA,"as N","Nitrogen","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946840-0914-4-C/results/933808942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-09-14 16:20:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",39.6086,-111.44832,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946960-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946960","SAN PITCH R AB MORONI WWTP",NA,NA,NA,NA,"39.5147000000","-111.5862800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808950",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946960-0406-4-C/results/933808950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-04-06 19:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",39.5147,-111.58628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946960-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946960","SAN PITCH R AB MORONI WWTP",NA,NA,NA,NA,"39.5147000000","-111.5862800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808956",NA,"as N","Nitrogen","Total","0.701","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946960-0602-4-C/results/933808956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-06-02 16:55:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.701,"MG/L","Numeric","Not Reviewed","Uncensored",39.5147,-111.58628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946960-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"13:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946960","SAN PITCH R AB MORONI WWTP",NA,NA,NA,NA,"39.5147000000","-111.5862800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808962",NA,"as N","Nitrogen","Total","0.912","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946960-0720-4-C/results/933808962/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-07-20 20:48:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.912,"MG/L","Numeric","Not Reviewed","Uncensored",39.5147,-111.58628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210914-4946960-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946960","SAN PITCH R AB MORONI WWTP",NA,NA,NA,NA,"39.5147000000","-111.5862800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808968",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210914-4946960-0914-4-C/results/933808968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-09-14 18:05:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",39.5147,-111.58628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210406-4946980-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"12:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946980","SAN PITCH R AT BRIDGE BL MORONI WWTP",NA,NA,NA,NA,"39.5010700000","-111.5854800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808976",NA,"as N","Nitrogen","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210406-4946980-0406-4-C/results/933808976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-04-06 19:26:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",39.50107,-111.58548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210602-4946980-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946980","SAN PITCH R AT BRIDGE BL MORONI WWTP",NA,NA,NA,NA,"39.5010700000","-111.5854800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808982",NA,"as N","Nitrogen","Total","7.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210602-4946980-0602-4-C/results/933808982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:33","STORET",7,NA,2021-06-02 17:10:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.5,"MG/L","Numeric","Not Reviewed","Uncensored",39.50107,-111.58548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS210720-4946980-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"14:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946980","SAN PITCH R AT BRIDGE BL MORONI WWTP",NA,NA,NA,NA,"39.5010700000","-111.5854800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808988",NA,"as N","Nitrogen","Total","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS210720-4946980-0720-4-C/results/933808988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-07-20 21:06:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",39.50107,-111.58548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4948002-0421-4-C","Quality Control Sample-Field Blank","Water",NA,2021-04-21,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4948002","BLM Richfield QA/QC Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933808991","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4948002-0421-4-C/results/933808991/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-04-21 21:20:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4948868-0602-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-02,"13:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948868","EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809017","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4948868-0602-4-C/results/933809017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-06-02 20:03:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4948868-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-20,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948868","EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809024","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4948868-0720-4-C/results/933809024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-07-20 16:55:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4948868-0914-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-14,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948868","EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809031","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4948868-0914-4-C/results/933809031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-09-14 20:50:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4948870-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948870","OTTER CK AB DIVERSION 1MI N OF ANGLE",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809038",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4948870-0602-4-C/results/933809038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-06-02 21:40:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4948870-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"09:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948870","OTTER CK AB DIVERSION 1MI N OF ANGLE",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809045",NA,"as N","Nitrogen","Total","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4948870-0720-4-C/results/933809045/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-07-20 16:58:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4948870-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948870","OTTER CK AB DIVERSION 1MI N OF ANGLE",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809052",NA,"as N","Nitrogen","Total","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4948870-0914-4-C/results/933809052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-09-14 20:50:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4948930-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948930","OTTER CK AT CR XING 2MI S E OF GREENWICH",NA,NA,NA,NA,"38.4160900000","-111.9029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809059",NA,"as N","Nitrogen","Total","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4948930-0602-4-C/results/933809059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-06-02 20:40:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.4160900000","-111.9029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",38.41609,-111.90297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4948930-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948930","OTTER CK AT CR XING 2MI S E OF GREENWICH",NA,NA,NA,NA,"38.4160900000","-111.9029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809066",NA,"as N","Nitrogen","Total","0.799","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4948930-0720-4-C/results/933809066/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-07-20 17:40:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.4160900000","-111.9029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.799,"MG/L","Numeric","Not Reviewed","Uncensored",38.41609,-111.90297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4948930-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948930","OTTER CK AT CR XING 2MI S E OF GREENWICH",NA,NA,NA,NA,"38.4160900000","-111.9029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809073",NA,"as N","Nitrogen","Total","0.803","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4948930-0914-4-C/results/933809073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-09-14 21:25:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.4160900000","-111.9029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.803,"MG/L","Numeric","Not Reviewed","Uncensored",38.41609,-111.90297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4948940-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948940","OTTER CREEK AT THE NARROWS",NA,NA,NA,NA,"38.3520900000","-111.9464200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809080",NA,"as N","Nitrogen","Total","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4948940-0602-4-C/results/933809080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-06-02 21:05:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",38.35209,-111.94642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4948940-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948940","OTTER CREEK AT THE NARROWS",NA,NA,NA,NA,"38.3520900000","-111.9464200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809087",NA,"as N","Nitrogen","Total","0.177","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4948940-0720-4-C/results/933809087/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-07-20 17:21:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.177,"MG/L","Numeric","Pass","Uncensored",38.35209,-111.94642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4948940-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948940","OTTER CREEK AT THE NARROWS",NA,NA,NA,NA,"38.3520900000","-111.9464200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809094",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4948940-0914-4-C/results/933809094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-09-14 21:10:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",38.35209,-111.94642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4949040-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949040","OTTER CK AT CR XING NE OF KOOSHAREM",NA,NA,NA,NA,"38.5202600000","-111.8638000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809101",NA,"as N","Nitrogen","Total","0.593","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4949040-0602-4-C/results/933809101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-06-02 20:20:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5202600000","-111.8638000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.593,"MG/L","Numeric","Not Reviewed","Uncensored",38.52026,-111.8638,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4949040-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949040","OTTER CK AT CR XING NE OF KOOSHAREM",NA,NA,NA,NA,"38.5202600000","-111.8638000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809108",NA,"as N","Nitrogen","Total","0.634","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4949040-0720-4-C/results/933809108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-07-20 17:55:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5202600000","-111.8638000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.634,"MG/L","Numeric","Not Reviewed","Uncensored",38.52026,-111.8638,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4949040-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949040","OTTER CK AT CR XING NE OF KOOSHAREM",NA,NA,NA,NA,"38.5202600000","-111.8638000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809115",NA,"as N","Nitrogen","Total","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4949040-0914-4-C/results/933809115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-09-14 21:40:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5202600000","-111.8638000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",38.52026,-111.8638,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4949070-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949070","OTTER CK AT U62 XING N OF KOOSHAREM",NA,NA,NA,NA,"38.5641400000","-111.8493600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809122",NA,"as N","Nitrogen","Total","0.534","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4949070-0602-4-C/results/933809122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-06-02 20:05:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5641400000","-111.8493600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.534,"MG/L","Numeric","Not Reviewed","Uncensored",38.56414,-111.84936,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4949070-0720-4-C","Sample-Routine","Water",NA,2021-07-20,"11:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949070","OTTER CK AT U62 XING N OF KOOSHAREM",NA,NA,NA,NA,"38.5641400000","-111.8493600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809129",NA,"as N","Nitrogen","Total","0.181","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4949070-0720-4-C/results/933809129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:34","STORET",7,NA,2021-07-20 18:08:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5641400000","-111.8493600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.181,"MG/L","Numeric","Pass","Uncensored",38.56414,-111.84936,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4949070-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949070","OTTER CK AT U62 XING N OF KOOSHAREM",NA,NA,NA,NA,"38.5641400000","-111.8493600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809136",NA,"as N","Nitrogen","Total","0.407","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4949070-0914-4-C/results/933809136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-09-14 21:50:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5641400000","-111.8493600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.407,"MG/L","Numeric","Not Reviewed","Uncensored",38.56414,-111.84936,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949263","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah",NA,NA,NA,NA,"38.1018500000","-112.0214700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809142","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C/results/933809142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-22 00:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.10185,-112.02147,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949263","Pole Canyon Creek one mile ab confluence with East Fork Sevier River near Antimony Utah",NA,NA,NA,NA,"38.1018500000","-112.0214700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809145","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949263-0421-4-C/results/933809145/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-22 00:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.1018500000","-112.0214700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.10185,-112.02147,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949533","Deep Creek at Road Crossing 1.3 miles above confluence w/Pine Creek",NA,NA,NA,NA,"38.0472700000","-112.0197700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809170",NA,"as N","Nitrogen","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C/results/933809170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-21 22:30:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0472700000","-112.0197700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",38.04727,-112.01977,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949533","Deep Creek at Road Crossing 1.3 miles above confluence w/Pine Creek",NA,NA,NA,NA,"38.0472700000","-112.0197700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809173",NA,"as N","Nitrogen","Dissolved","0.095","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949533-0421-4-C/results/933809173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-21 22:30:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0472700000","-112.0197700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.095,"MG/L","Numeric","Pass","Uncensored",38.04727,-112.01977,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949583","Deer Creek above Mountain Spring Fork and below BLM/USFS boundary",NA,NA,NA,NA,"38.0005700000","-112.0554900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809198",NA,"as N","Nitrogen","Total","0.111","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C/results/933809198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-21 21:15:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0005700000","-112.0554900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.111,"MG/L","Numeric","Pass","Uncensored",38.00057,-112.05549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949583","Deer Creek above Mountain Spring Fork and below BLM/USFS boundary",NA,NA,NA,NA,"38.0005700000","-112.0554900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809201",NA,"as N","Nitrogen","Dissolved","0.104","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949583-0421-4-C/results/933809201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-21 21:15:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0005700000","-112.0554900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.104,"MG/L","Numeric","Pass","Uncensored",38.00057,-112.05549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949630-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949630","SEVIER R AT U12 XING",NA,NA,NA,NA,"37.7494200000","-112.3749200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809226",NA,"as N","Nitrogen","Total","0.085","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949630-0407-4-C/results/933809226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-07 17:40:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7494200000","-112.3749200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.085,"MG/L","Numeric","Pass","Uncensored",37.74942,-112.37492,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949630-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949630","SEVIER R AT U12 XING",NA,NA,NA,NA,"37.7494200000","-112.3749200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809232",NA,"as N","Nitrogen","Total","0.122","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949630-0601-4-C/results/933809232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-06-01 17:40:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7494200000","-112.3749200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.122,"MG/L","Numeric","Pass","Uncensored",37.74942,-112.37492,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949630-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949630","SEVIER R AT U12 XING",NA,NA,NA,NA,"37.7494200000","-112.3749200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809238",NA,"as N","Nitrogen","Total","0.177","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949630-0913-4-C/results/933809238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-09-13 17:25:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7494200000","-112.3749200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.177,"MG/L","Numeric","Pass","Uncensored",37.74942,-112.37492,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949635-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949635","Sevier River at bridge at US89 MP126 and 0.6 Mile ab Casto Wash",NA,NA,NA,NA,"37.7717900000","-112.3910200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809244","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949635-0407-4-C/results/933809244/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-07 18:21:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7717900000","-112.3910200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.77179,-112.39102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949635-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949635","Sevier River at bridge at US89 MP126 and 0.6 Mile ab Casto Wash",NA,NA,NA,NA,"37.7717900000","-112.3910200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809250",NA,"as N","Nitrogen","Total","0.115","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949635-0601-4-C/results/933809250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-06-01 17:55:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7717900000","-112.3910200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.115,"MG/L","Numeric","Pass","Uncensored",37.77179,-112.39102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949640-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949640","SEVIER R @ SANFORD ROAD XING",NA,NA,NA,NA,"37.9419200000","-112.4166000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809256",NA,"as N","Nitrogen","Total","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949640-0407-4-C/results/933809256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-07 18:55:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.9419200000","-112.4166000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",37.94192,-112.4166,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949640-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949640","SEVIER R @ SANFORD ROAD XING",NA,NA,NA,NA,"37.9419200000","-112.4166000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809262",NA,"as N","Nitrogen","Total","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949640-0601-4-C/results/933809262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-06-01 18:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.9419200000","-112.4166000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",37.94192,-112.4166,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949640-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949640","SEVIER R @ SANFORD ROAD XING",NA,NA,NA,NA,"37.9419200000","-112.4166000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809268",NA,"as N","Nitrogen","Total","0.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949640-0913-4-C/results/933809268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-09-13 18:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.9419200000","-112.4166000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.42,"MG/L","Numeric","Not Reviewed","Uncensored",37.94192,-112.4166,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949650-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949650","SEVIER R NEAR HATCH",NA,NA,NA,NA,"37.6515000000","-112.4304300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809274",NA,"as N","Nitrogen","Total","0.095","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949650-0407-4-C/results/933809274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-04-07 17:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6515000000","-112.4304300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.095,"MG/L","Numeric","Pass","Uncensored",37.6515,-112.43043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949650-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949650","SEVIER R NEAR HATCH",NA,NA,NA,NA,"37.6515000000","-112.4304300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809280",NA,"as N","Nitrogen","Total","0.124","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949650-0601-4-C/results/933809280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:35","STORET",7,NA,2021-06-01 17:25:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6515000000","-112.4304300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.124,"MG/L","Numeric","Pass","Uncensored",37.6515,-112.43043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949650-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949650","SEVIER R NEAR HATCH",NA,NA,NA,NA,"37.6515000000","-112.4304300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809286",NA,"as N","Nitrogen","Total","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949650-0913-4-C/results/933809286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-09-13 16:50:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6515000000","-112.4304300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",37.6515,-112.43043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949660-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949660","SEVIER R EAST OF PANGUITCH",NA,NA,NA,NA,"37.8234000000","-112.4061500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809292",NA,"as N","Nitrogen","Total","0.115","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949660-0407-4-C/results/933809292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-04-07 18:35:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8234000000","-112.4061500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.115,"MG/L","Numeric","Pass","Uncensored",37.8234,-112.40615,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949660-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949660","SEVIER R EAST OF PANGUITCH",NA,NA,NA,NA,"37.8234000000","-112.4061500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809298",NA,"as N","Nitrogen","Total","0.126","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949660-0601-4-C/results/933809298/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-06-01 18:05:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8234000000","-112.4061500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.126,"MG/L","Numeric","Pass","Uncensored",37.8234,-112.40615,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949670-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949670","SEVIER R @ PANGUITCH AIRPORT RD XING",NA,NA,NA,NA,"37.8516400000","-112.4360400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809304",NA,"as N","Nitrogen","Total","0.573","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949670-0407-4-C/results/933809304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-04-07 19:40:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8516400000","-112.4360400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.573,"MG/L","Numeric","Not Reviewed","Uncensored",37.85164,-112.43604,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949670-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949670","SEVIER R @ PANGUITCH AIRPORT RD XING",NA,NA,NA,NA,"37.8516400000","-112.4360400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809310",NA,"as N","Nitrogen","Total","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949670-0601-4-C/results/933809310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-06-01 18:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8516400000","-112.4360400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",37.85164,-112.43604,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949670-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949670","SEVIER R @ PANGUITCH AIRPORT RD XING",NA,NA,NA,NA,"37.8516400000","-112.4360400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809316",NA,"as N","Nitrogen","Total","0.769","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949670-0913-4-C/results/933809316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-09-13 17:55:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8516400000","-112.4360400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.769,"MG/L","Numeric","Not Reviewed","Uncensored",37.85164,-112.43604,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949700-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949700","MAMMOTH CK AT US89 XING",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809322",NA,"as N","Nitrogen","Total","0.148","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949700-0407-4-C/results/933809322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-04-07 16:50:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.148,"MG/L","Numeric","Pass","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949700-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949700","MAMMOTH CK AT US89 XING",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809328",NA,"as N","Nitrogen","Total","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949700-0601-4-C/results/933809328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-06-01 17:10:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949700-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"09:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949700","MAMMOTH CK AT US89 XING",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809334",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949700-0913-4-C/results/933809334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-09-13 16:32:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949702-0407-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-07,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949702","MAMMOTH CK AT US89 XING Replicate of 4949700",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809340",NA,"as N","Nitrogen","Total","0.166","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949702-0407-4-C/results/933809340/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-04-07 16:55:00,NA,"River/Stream","Replicate of 4949700","16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.166,"MG/L","Numeric","Pass","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949702-0601-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-01,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949702","MAMMOTH CK AT US89 XING Replicate of 4949700",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809346",NA,"as N","Nitrogen","Total","0.264","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949702-0601-4-C/results/933809346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-06-01 17:00:00,NA,"River/Stream","Replicate of 4949700","16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.264,"MG/L","Numeric","Not Reviewed","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949702-0913-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-13,"09:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949702","MAMMOTH CK AT US89 XING Replicate of 4949700",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809352",NA,"as N","Nitrogen","Total","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949702-0913-4-C/results/933809352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-09-13 16:32:00,NA,"River/Stream","Replicate of 4949700","16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949710-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949710","Sevier R bl USU Farm @ Sandwash Rd Xing",NA,NA,NA,NA,"37.8762300000","-112.4277600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809358",NA,"as N","Nitrogen","Total","0.669","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949710-0913-4-C/results/933809358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-09-13 18:10:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8762300000","-112.4277600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.669,"MG/L","Numeric","Not Reviewed","Uncensored",37.87623,-112.42776,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949718-0407-4-C","Quality Control Sample-Field Blank","Water",NA,2021-04-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949718","Upper Sevier Watershed Nonpoint Source Monitoring Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809364","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949718-0407-4-C/results/933809364/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-04-07 17:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949718-0601-4-C","Quality Control Sample-Field Blank","Water",NA,2021-06-01,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949718","Upper Sevier Watershed Nonpoint Source Monitoring Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809370","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949718-0601-4-C/results/933809370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-06-01 18:35:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949718-0913-4-C","Quality Control Sample-Field Blank","Water",NA,2021-09-13,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949718","Upper Sevier Watershed Nonpoint Source Monitoring Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809376","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949718-0913-4-C/results/933809376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-09-13 16:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210407-4949900-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949900","ASAY CK AT US89 XING",NA,NA,NA,NA,"37.5841500000","-112.4766000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809382",NA,"as N","Nitrogen","Total","0.13","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210407-4949900-0407-4-C/results/933809382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-04-07 16:05:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.5841500000","-112.4766000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.13,"MG/L","Numeric","Pass","Uncensored",37.58415,-112.4766,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210601-4949900-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949900","ASAY CK AT US89 XING",NA,NA,NA,NA,"37.5841500000","-112.4766000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809388",NA,"as N","Nitrogen","Total","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210601-4949900-0601-4-C/results/933809388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-06-01 16:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.5841500000","-112.4766000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",37.58415,-112.4766,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSVRNPS210913-4949900-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"09:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949900","ASAY CK AT US89 XING",NA,NA,NA,NA,"37.5841500000","-112.4766000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809394",NA,"as N","Nitrogen","Total","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSVRNPS210913-4949900-0913-4-C/results/933809394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-09-13 16:17:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.5841500000","-112.4766000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",37.58415,-112.4766,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210602-4949950-0602-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-02,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949950","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809401",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210602-4949950-0602-4-C/results/933809401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-06-02 21:40:00,NA,"River/Stream","Replicate of 4948870","16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210720-4949950-0720-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-20,"10:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949950","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809408",NA,"as N","Nitrogen","Total","0.439","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210720-4949950-0720-4-C/results/933809408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-07-20 17:04:00,NA,"River/Stream","Replicate of 4948870","16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.439,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS210914-4949950-0914-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-14,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949950","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809415",NA,"as N","Nitrogen","Total","0.521","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS210914-4949950-0914-4-C/results/933809415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-09-14 20:50:00,NA,"River/Stream","Replicate of 4948870","16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.521,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949970","E FK SEVIER R AB CNFL/ DEER CK",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809421",NA,"as N","Nitrogen","Total","0.584","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C/results/933809421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-04-21 20:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.584,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949970","E FK SEVIER R AB CNFL/ DEER CK",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809424",NA,"as N","Nitrogen","Dissolved","0.616","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949970-0421-4-C/results/933809424/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:36","STORET",7,NA,2021-04-21 20:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.616,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-21,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949971","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809449",NA,"as N","Nitrogen","Total","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C/results/933809449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-04-21 20:15:00,NA,"River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-21,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949971","E FK SEVIER R AB CNFL/ DEER CK Replicate of 4949970",NA,NA,NA,NA,"38.0108200000","-111.9657400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809452",NA,"as N","Nitrogen","Dissolved","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949971-0421-4-C/results/933809452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-04-21 20:15:00,NA,"River/Stream","Replicate of 4949970","16030002",NA,NA,NA,NA,"38.0108200000","-111.9657400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",38.01082,-111.96574,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949980","DEER CK AB CNFL/ E FK SEVIER R",NA,NA,NA,NA,"38.0112200000","-111.9665800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809477",NA,"as N","Nitrogen","Total","0.469","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C/results/933809477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-04-21 20:30:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.469,"MG/L","Numeric","Not Reviewed","Uncensored",38.01122,-111.96658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C","Sample-Routine","Water",NA,2021-04-21,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4949980","DEER CK AB CNFL/ E FK SEVIER R",NA,NA,NA,NA,"38.0112200000","-111.9665800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809480",NA,"as N","Nitrogen","Dissolved","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMRF210421-4949980-0421-4-C/results/933809480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-04-21 20:30:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.0112200000","-111.9665800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",38.01122,-111.96658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C","Sample-Routine","Water",NA,2021-04-02,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809509",NA,"as N","Nitrogen","Total","0.098","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C/results/933809509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-04-02 19:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.098,"MG/L","Numeric","Pass","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C","Sample-Routine","Water",NA,2021-04-02,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809512","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4950800-0402-4-C/results/933809512/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-04-02 19:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C","Sample-Routine","Water",NA,2021-05-07,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809542","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C/results/933809542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-05-07 18:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C","Sample-Routine","Water",NA,2021-05-07,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809545","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4950800-0507-4-C/results/933809545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-05-07 18:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C","Sample-Routine","Water",NA,2021-06-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809559",NA,"as N","Nitrogen","Total","0.105","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C/results/933809559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-06-11 19:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.105,"MG/L","Numeric","Pass","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C","Sample-Routine","Water",NA,2021-06-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809562","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4950800-0611-4-C/results/933809562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-06-11 19:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C","Sample-Routine","Water",NA,2021-07-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809576",NA,"as N","Nitrogen","Total","0.095","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C/results/933809576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-07-28 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.095,"MG/L","Numeric","Pass","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C","Sample-Routine","Water",NA,2021-07-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809579","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4950800-0728-4-C/results/933809579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:37","STORET",7,NA,2021-07-28 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809608","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C/results/933809608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-08-10 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809611","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4950800-0810-4-C/results/933809611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-08-10 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C","Sample-Routine","Water",NA,2021-09-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809625",NA,"as N","Nitrogen","Total","0.103","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C/results/933809625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-09-10 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.103,"MG/L","Numeric","Pass","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C","Sample-Routine","Water",NA,2021-09-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809628",NA,"as N","Nitrogen","Dissolved","0.114","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4950800-0910-4-C/results/933809628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-09-10 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.114,"MG/L","Numeric","Pass","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C","Sample-Routine","Water",NA,2021-04-02,"17:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809642",NA,"as N","Nitrogen","Total","0.533","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C/results/933809642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-04-03 00:10:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.533,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C","Sample-Routine","Water",NA,2021-04-02,"17:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809645",NA,"as N","Nitrogen","Dissolved","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4950920-0402-4-C/results/933809645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-04-03 00:10:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C","Sample-Routine","Water",NA,2021-05-07,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809675",NA,"as N","Nitrogen","Total","0.596","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C/results/933809675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-05-07 23:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.596,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C","Sample-Routine","Water",NA,2021-05-07,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809678",NA,"as N","Nitrogen","Dissolved","0.516","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4950920-0507-4-C/results/933809678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-05-07 23:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.516,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C","Sample-Routine","Water",NA,2021-06-12,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809692",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C/results/933809692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-06-12 19:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C","Sample-Routine","Water",NA,2021-06-12,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809695",NA,"as N","Nitrogen","Dissolved","0.583","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4950920-0612-4-C/results/933809695/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-06-12 19:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.583,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809709",NA,"as N","Nitrogen","Total","0.937","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C/results/933809709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-07-15 21:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.937,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809712",NA,"as N","Nitrogen","Dissolved","0.754","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4950920-0715-4-C/results/933809712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:38","STORET",7,NA,2021-07-15 21:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.754,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809742",NA,"as N","Nitrogen","Total","0.536","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C/results/933809742/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-08-10 23:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.536,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809745",NA,"as N","Nitrogen","Dissolved","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4950920-0810-4-C/results/933809745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-08-10 23:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C","Sample-Routine","Water",NA,2021-09-10,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809759",NA,"as N","Nitrogen","Total","0.675","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C/results/933809759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-09-10 23:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.675,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C","Sample-Routine","Water",NA,2021-09-10,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809762",NA,"as N","Nitrogen","Dissolved","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4950920-0910-4-C/results/933809762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-09-10 23:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C","Sample-Routine","Water",NA,2021-04-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809776",NA,"as N","Nitrogen","Total","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C/results/933809776/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-04-01 22:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C","Sample-Routine","Water",NA,2021-04-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809779","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951265-0401-4-C/results/933809779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-04-01 22:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C","Sample-Routine","Water",NA,2021-05-06,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809809","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C/results/933809809/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-05-06 22:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C","Sample-Routine","Water",NA,2021-05-06,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809812","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951265-0506-4-C/results/933809812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-05-06 22:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809826",NA,"as N","Nitrogen","Total","0.133","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C/results/933809826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-06-10 22:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.133,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809829",NA,"as N","Nitrogen","Dissolved","0.108","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951265-0610-4-C/results/933809829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-06-10 22:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.108,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809843","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C/results/933809843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-08-09 20:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809846","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951265-0809-4-C/results/933809846/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-08-09 20:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809860",NA,"as N","Nitrogen","Total","0.129","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C/results/933809860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-09-09 21:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.129,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809863",NA,"as N","Nitrogen","Dissolved","0.11","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951265-0909-4-C/results/933809863/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-09-09 21:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.11,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-01,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809877",NA,"as N","Nitrogen","Total","0.085","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C/results/933809877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-04-01 22:05:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.085,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-01,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809880","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951266-0401-4-C/results/933809880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:39","STORET",7,NA,2021-04-01 22:05:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-10,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809910",NA,"as N","Nitrogen","Total","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C/results/933809910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-06-10 22:50:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-10,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809913",NA,"as N","Nitrogen","Dissolved","0.099","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951266-0610-4-C/results/933809913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-06-10 22:50:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.099,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-09,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809921","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C/results/933809921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-08-09 20:50:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-09,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809924","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951266-0809-4-C/results/933809924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-08-09 20:50:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C","Quality Control Sample-Field Blank","Water",NA,2021-05-02,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809940","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C/results/933809940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-05-03 00:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C","Quality Control Sample-Field Blank","Water",NA,2021-05-02,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809943","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4951766-0502-4-C/results/933809943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-05-03 00:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C","Quality Control Sample-Field Blank","Water",NA,2021-06-10,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809966",NA,"as N","Nitrogen","Total","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C/results/933809966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-06-10 21:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C","Quality Control Sample-Field Blank","Water",NA,2021-06-10,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809969","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4951766-0610-4-C/results/933809969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-06-10 21:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C","Quality Control Sample-Field Blank","Water",NA,2021-07-02,"13:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809992","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C/results/933809992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-07-02 20:56:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C","Quality Control Sample-Field Blank","Water",NA,2021-07-02,"13:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933809995","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4951766-0702-4-C/results/933809995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-07-02 20:56:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4951850-0502-4-C","Sample-Routine","Water",NA,2021-05-02,"13:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951850","PARIA R AT US89 XING",NA,NA,NA,NA,"37.1074900000","-111.9068500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810018",NA,"as N","Nitrogen","Total","0.098","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4951850-0502-4-C/results/933810018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-05-02 20:28:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.098,"MG/L","Numeric","Pass","Uncensored",37.10749,-111.90685,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4951850-0822-4-C","Sample-Routine","Water",NA,2021-08-22,"07:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951850","PARIA R AT US89 XING",NA,NA,NA,NA,"37.1074900000","-111.9068500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810024",NA,"as N","Nitrogen","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4951850-0822-4-C/results/933810024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-08-22 14:42:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",37.10749,-111.90685,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4951850-0904-4-C","Sample-Routine","Water",NA,2021-09-04,"08:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951850","PARIA R AT US89 XING",NA,NA,NA,NA,"37.1074900000","-111.9068500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810030",NA,"as N","Nitrogen","Total","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4951850-0904-4-C/results/933810030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:40","STORET",7,NA,2021-09-04 15:35:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",37.10749,-111.90685,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810040","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C/results/933810040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-04-06 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810043","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951855-0406-4-C/results/933810043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-04-06 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810072","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C/results/933810072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-05-04 20:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810075","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951855-0504-4-C/results/933810075/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-05-04 20:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810089","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C/results/933810089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-06-15 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810092","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951855-0615-4-C/results/933810092/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-06-15 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C","Sample-Routine","Water",NA,2021-07-07,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810106","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C/results/933810106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-07-07 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C","Sample-Routine","Water",NA,2021-07-07,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810109","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4951855-0707-4-C/results/933810109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-07-07 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810138","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C/results/933810138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-08-17 17:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810141",NA,"as N","Nitrogen","Dissolved","0.124","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951855-0817-4-C/results/933810141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-08-17 17:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.124,"MG/L","Numeric","Pass","Uncensored",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C","Sample-Routine","Water",NA,2021-09-05,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810155",NA,"as N","Nitrogen","Total","0.148","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C/results/933810155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-09-05 21:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.148,"MG/L","Numeric","Pass","Uncensored",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C","Sample-Routine","Water",NA,2021-09-05,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810158",NA,"as N","Nitrogen","Dissolved","0.137","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951855-0905-4-C/results/933810158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-09-05 21:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.137,"MG/L","Numeric","Pass","Uncensored",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810172","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C/results/933810172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-04-06 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C","Sample-Routine","Water",NA,2021-04-06,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810175","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4951857-0406-4-C/results/933810175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-04-06 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810204","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C/results/933810204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-05-04 18:15:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C","Sample-Routine","Water",NA,2021-05-04,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810207","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4951857-0504-4-C/results/933810207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:41","STORET",7,NA,2021-05-04 18:15:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810221","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C/results/933810221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-06-15 18:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810224","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4951857-0615-4-C/results/933810224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-06-15 18:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C","Sample-Routine","Water",NA,2021-07-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810238","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C/results/933810238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-07-07 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C","Sample-Routine","Water",NA,2021-07-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810241","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4951857-0707-4-C/results/933810241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-07-07 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C","Sample-Routine","Water",NA,2021-08-16,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810270","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C/results/933810270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-08-16 19:50:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C","Sample-Routine","Water",NA,2021-08-16,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810273",NA,"as N","Nitrogen","Dissolved","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4951857-0816-4-C/results/933810273/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-08-16 19:50:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C","Sample-Routine","Water",NA,2021-09-05,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810287",NA,"as N","Nitrogen","Total","0.105","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C/results/933810287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-09-05 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.105,"MG/L","Numeric","Pass","Uncensored",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C","Sample-Routine","Water",NA,2021-09-05,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810290",NA,"as N","Nitrogen","Dissolved","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4951857-0905-4-C/results/933810290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-09-05 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C","Sample-Routine","Water",NA,2021-06-17,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952917","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon",NA,NA,NA,NA,"37.8050000000","-110.4710000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810314",NA,"as N","Nitrogen","Total","0.511","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C/results/933810314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-06-18 00:00:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.511,"MG/L","Numeric","Not Reviewed","Uncensored",37.805,-110.471,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C","Sample-Routine","Water",NA,2021-06-17,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952917","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon",NA,NA,NA,NA,"37.8050000000","-110.4710000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810318",NA,"as N","Nitrogen","Dissolved","0.846","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-4952370-0617-4-C/results/933810318/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-06-18 00:00:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.846,"MG/L","Numeric","Not Reviewed","Uncensored",37.805,-110.471,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952917","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon",NA,NA,NA,NA,"37.8050000000","-110.4710000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810343",NA,"as N","Nitrogen","Total","0.855","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C/results/933810343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-09-23 00:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.855,"MG/L","Numeric","Not Reviewed","Uncensored",37.805,-110.471,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"17:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952917","Lake Powell mid channel midway between Trachyte Creek and Twomile Canyon",NA,NA,NA,NA,"37.8050000000","-110.4710000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810347",NA,"as N","Nitrogen","Dissolved","0.639","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-4952370-0922-4-C/results/933810347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:42","STORET",7,NA,2021-09-23 00:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.8050000000","-110.4710000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.639,"MG/L","Numeric","Not Reviewed","Uncensored",37.805,-110.471,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C","Sample-Routine","Water",NA,2021-04-23,"08:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810374",NA,"as N","Nitrogen","Total","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C/results/933810374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:43","STORET",7,NA,2021-04-23 15:49:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C","Sample-Routine","Water",NA,2021-04-23,"08:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810377",NA,"as N","Nitrogen","Dissolved","0.344","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4952380-0423-4-C/results/933810377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:43","STORET",7,NA,2021-04-23 15:49:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.344,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"13:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810407",NA,"as N","Nitrogen","Total","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C/results/933810407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:43","STORET",7,NA,2021-05-19 20:47:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"13:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810410",NA,"as N","Nitrogen","Dissolved","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4952380-0519-4-C/results/933810410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:43","STORET",7,NA,2021-05-19 20:47:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810439",NA,"as N","Nitrogen","Total","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C/results/933810439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:43","STORET",7,NA,2021-06-21 18:45:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810442",NA,"as N","Nitrogen","Dissolved","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4952380-0621-4-C/results/933810442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:43","STORET",7,NA,2021-06-21 18:45:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4952380-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"07:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810472",NA,"as N","Nitrogen","Total","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4952380-0715-4-C/results/933810472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:43","STORET",7,NA,2021-07-15 14:25:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"11:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810502",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C/results/933810502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:44","STORET",7,NA,2021-08-26 18:19:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"11:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810505",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4952380-0826-4-C/results/933810505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:44","STORET",7,NA,2021-08-26 18:19:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C","Sample-Routine","Water",NA,2021-04-23,"10:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810568",NA,"as N","Nitrogen","Total","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C/results/933810568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:44","STORET",7,NA,2021-04-23 17:08:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C","Sample-Routine","Water",NA,2021-04-23,"10:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810571",NA,"as N","Nitrogen","Dissolved","0.508","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4952400-0423-4-C/results/933810571/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:44","STORET",7,NA,2021-04-23 17:08:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.508,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"14:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810601",NA,"as N","Nitrogen","Total","0.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C/results/933810601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:44","STORET",7,NA,2021-05-19 21:38:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.35,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"14:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810604",NA,"as N","Nitrogen","Dissolved","0.326","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4952400-0519-4-C/results/933810604/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:44","STORET",7,NA,2021-05-19 21:38:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.326,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810633",NA,"as N","Nitrogen","Total","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C/results/933810633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:45","STORET",7,NA,2021-06-21 19:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810636",NA,"as N","Nitrogen","Dissolved","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4952400-0621-4-C/results/933810636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:45","STORET",7,NA,2021-06-21 19:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"08:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810666",NA,"as N","Nitrogen","Total","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C/results/933810666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:45","STORET",7,NA,2021-07-15 15:14:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"08:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810669",NA,"as N","Nitrogen","Dissolved","0.609","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4952400-0715-4-C/results/933810669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:45","STORET",7,NA,2021-07-15 15:14:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.609,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"12:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810699",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C/results/933810699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:45","STORET",7,NA,2021-08-26 19:01:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"12:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810702",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4952400-0826-4-C/results/933810702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:45","STORET",7,NA,2021-08-26 19:01:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C","Sample-Routine","Water",NA,2021-06-16,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952930","San Juan River about 4.0 miles BL Alcove Canyon (Great Bend)",NA,NA,NA,NA,"37.2404600000","-110.6703700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810763",NA,"as N","Nitrogen","Total","0.555","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C/results/933810763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:45","STORET",7,NA,2021-06-16 22:15:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2404600000","-110.6703700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.555,"MG/L","Numeric","Not Reviewed","Uncensored",37.24046,-110.67037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C","Sample-Routine","Water",NA,2021-06-16,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952930","San Juan River about 4.0 miles BL Alcove Canyon (Great Bend)",NA,NA,NA,NA,"37.2404600000","-110.6703700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810767",NA,"as N","Nitrogen","Dissolved","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-4952940-0616-4-C/results/933810767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:45","STORET",7,NA,2021-06-16 22:15:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2404600000","-110.6703700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",37.24046,-110.67037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810792",NA,"as N","Nitrogen","Total","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C/results/933810792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:46","STORET",7,NA,2021-09-22 00:15:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810796",NA,"as N","Nitrogen","Dissolved","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-4952940-0921-4-C/results/933810796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:46","STORET",7,NA,2021-09-22 00:15:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4953060-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810822",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4953060-0428-4-C/results/933810822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:46","STORET",7,NA,2021-04-28 18:30:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4953193-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810851",NA,"as N","Nitrogen","Total","0.104","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4953193-0428-4-C/results/933810851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:46","STORET",7,NA,2021-04-28 21:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.104,"MG/L","Numeric","Pass","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4953205-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810880",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4953205-0428-4-C/results/933810880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:46","STORET",7,NA,2021-04-28 20:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4953210-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953210","COMB WASH BL FISH CK",NA,NA,NA,NA,"37.3841600000","-109.6684600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810909",NA,"as N","Nitrogen","Total","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4953210-0428-4-C/results/933810909/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:46","STORET",7,NA,2021-04-28 19:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3841600000","-109.6684600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",37.38416,-109.66846,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C","Sample-Routine","Water",NA,2021-05-01,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810935","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C/results/933810935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-05-01 20:15:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C","Sample-Routine","Water",NA,2021-05-01,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810938",NA,"as N","Nitrogen","Dissolved","0.763","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4953980-0501-4-C/results/933810938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-05-01 20:15:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.763,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"13:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810961","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C/results/933810961/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-06-09 20:06:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"13:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810964",NA,"as N","Nitrogen","Dissolved","0.101","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4953980-0609-4-C/results/933810964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-06-09 20:06:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.101,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C","Sample-Routine","Water",NA,2021-07-02,"09:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810987","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C/results/933810987/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-07-02 16:17:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C","Sample-Routine","Water",NA,2021-07-02,"09:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933810990",NA,"as N","Nitrogen","Dissolved","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4953980-0702-4-C/results/933810990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-07-02 16:17:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C","Sample-Routine","Water",NA,2021-08-22,"13:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811013",NA,"as N","Nitrogen","Total","0.196","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C/results/933811013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-08-22 20:19:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.196,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C","Sample-Routine","Water",NA,2021-08-22,"13:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811016",NA,"as N","Nitrogen","Dissolved","0.513","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4953980-0822-4-C/results/933811016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-08-22 20:19:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.513,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C","Sample-Routine","Water",NA,2021-09-04,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811039",NA,"as N","Nitrogen","Total","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C/results/933811039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-09-04 20:45:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C","Sample-Routine","Water",NA,2021-09-04,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811042",NA,"as N","Nitrogen","Dissolved","0.206","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4953980-0904-4-C/results/933811042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-09-04 20:45:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.206,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-01,"13:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811065","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C/results/933811065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-05-01 20:27:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-01,"13:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811068","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-4953981-0501-4-C/results/933811068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:47","STORET",7,NA,2021-05-01 20:27:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-09,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811091",NA,"as N","Nitrogen","Total","0.16","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C/results/933811091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-06-09 20:20:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.16,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-09,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811094",NA,"as N","Nitrogen","Dissolved","0.11","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-4953981-0609-4-C/results/933811094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-06-09 20:20:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.11,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-02,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811117","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C/results/933811117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-07-02 16:30:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-02,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811120","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-4953981-0702-4-C/results/933811120/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-07-02 16:30:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-22,"13:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811143",NA,"as N","Nitrogen","Total","0.172","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C/results/933811143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-08-22 20:26:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.172,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-22,"13:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811146",NA,"as N","Nitrogen","Dissolved","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4953981-0822-4-C/results/933811146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-08-22 20:26:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-04,"13:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811169",NA,"as N","Nitrogen","Total","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C/results/933811169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-09-04 20:57:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-04,"13:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811172",NA,"as N","Nitrogen","Dissolved","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4953981-0904-4-C/results/933811172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-09-04 20:57:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811209",NA,"as N","Nitrogen","Total","0.174","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C/results/933811209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-04-05 18:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.174,"MG/L","Numeric","Pass","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811212",NA,"as N","Nitrogen","Dissolved","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954770-0405-4-C/results/933811212/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:48","STORET",7,NA,2021-04-05 18:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811242",NA,"as N","Nitrogen","Total","0.264","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C/results/933811242/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-05-03 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.264,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811245",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954770-0503-4-C/results/933811245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-05-03 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811259",NA,"as N","Nitrogen","Total","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C/results/933811259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-06-08 23:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811262",NA,"as N","Nitrogen","Dissolved","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954770-0608-4-C/results/933811262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-06-08 23:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811276",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C/results/933811276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-07-06 20:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811279",NA,"as N","Nitrogen","Dissolved","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954770-0706-4-C/results/933811279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-07-06 20:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C","Sample-Routine","Water",NA,2021-08-05,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811309",NA,"as N","Nitrogen","Total","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C/results/933811309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-08-05 23:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C","Sample-Routine","Water",NA,2021-08-05,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811312",NA,"as N","Nitrogen","Dissolved","0.464","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954770-0805-4-C/results/933811312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-08-05 23:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.464,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C","Sample-Routine","Water",NA,2021-09-07,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811326",NA,"as N","Nitrogen","Total","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C/results/933811326/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-09-07 21:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C","Sample-Routine","Water",NA,2021-09-07,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811329",NA,"as N","Nitrogen","Dissolved","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954770-0907-4-C/results/933811329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-09-07 21:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811343",NA,"as N","Nitrogen","Total","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C/results/933811343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-04-05 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811346",NA,"as N","Nitrogen","Dissolved","0.195","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954775-0405-4-C/results/933811346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:49","STORET",7,NA,2021-04-05 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811376",NA,"as N","Nitrogen","Total","0.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C/results/933811376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-05-03 23:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.22,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811379",NA,"as N","Nitrogen","Dissolved","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954775-0503-4-C/results/933811379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-05-03 23:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811393",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C/results/933811393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-06-08 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C","Sample-Routine","Water",NA,2021-06-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811396",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954775-0608-4-C/results/933811396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-06-08 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811410",NA,"as N","Nitrogen","Total","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C/results/933811410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-07-07 00:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811413",NA,"as N","Nitrogen","Dissolved","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954775-0706-4-C/results/933811413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-07-07 00:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C","Sample-Routine","Water",NA,2021-08-05,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811443",NA,"as N","Nitrogen","Total","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C/results/933811443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-08-05 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C","Sample-Routine","Water",NA,2021-08-05,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811446",NA,"as N","Nitrogen","Dissolved","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954775-0805-4-C/results/933811446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-08-05 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C","Sample-Routine","Water",NA,2021-09-07,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811460",NA,"as N","Nitrogen","Total","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C/results/933811460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-09-07 18:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C","Sample-Routine","Water",NA,2021-09-07,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811463",NA,"as N","Nitrogen","Dissolved","0.303","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954775-0907-4-C/results/933811463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-09-07 18:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.303,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C","Sample-Routine","Water",NA,2021-04-12,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811477",NA,"as N","Nitrogen","Total","0.088","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C/results/933811477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-04-12 21:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.088,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C","Sample-Routine","Water",NA,2021-04-12,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811480","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954780-0412-4-C/results/933811480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:50","STORET",7,NA,2021-04-12 21:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811510",NA,"as N","Nitrogen","Total","0.092","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C/results/933811510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-05-05 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.092,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C","Sample-Routine","Water",NA,2021-05-05,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811513",NA,"as N","Nitrogen","Dissolved","0.085","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954780-0505-4-C/results/933811513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-05-05 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.085,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811527",NA,"as N","Nitrogen","Total","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C/results/933811527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-06-09 17:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811530",NA,"as N","Nitrogen","Dissolved","0.126","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210608-4954780-0609-4-C/results/933811530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-06-09 17:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.126,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811544",NA,"as N","Nitrogen","Total","0.112","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C/results/933811544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-07-06 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.112,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C","Sample-Routine","Water",NA,2021-07-06,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811547",NA,"as N","Nitrogen","Dissolved","0.135","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-4954780-0706-4-C/results/933811547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-07-06 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.135,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C","Sample-Routine","Water",NA,2021-08-06,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811577",NA,"as N","Nitrogen","Total","0.101","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C/results/933811577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-08-06 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.101,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C","Sample-Routine","Water",NA,2021-08-06,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811580",NA,"as N","Nitrogen","Dissolved","0.092","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210805-4954780-0806-4-C/results/933811580/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-08-06 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.092,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C","Sample-Routine","Water",NA,2021-09-07,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811594",NA,"as N","Nitrogen","Total","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C/results/933811594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-09-07 23:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C","Sample-Routine","Water",NA,2021-09-07,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811597",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954780-0907-4-C/results/933811597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-09-07 23:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811611",NA,"as N","Nitrogen","Total","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C/results/933811611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-04-13 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811614",NA,"as N","Nitrogen","Dissolved","0.105","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210401-4954795-0413-4-C/results/933811614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:51","STORET",7,NA,2021-04-13 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.105,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811644",NA,"as N","Nitrogen","Total","0.085","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C/results/933811644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:52","STORET",7,NA,2021-05-10 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.085,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811647",NA,"as N","Nitrogen","Dissolved","0.089","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-4954795-0510-4-C/results/933811647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:52","STORET",7,NA,2021-05-10 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.089,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811661",NA,"as N","Nitrogen","Total","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C/results/933811661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:52","STORET",7,NA,2021-09-13 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811664",NA,"as N","Nitrogen","Dissolved","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-4954795-0913-4-C/results/933811664/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:52","STORET",7,NA,2021-09-13 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811735","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C/results/933811735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:52","STORET",7,NA,2021-04-07 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811738",NA,"as N","Nitrogen","Dissolved","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955780-0407-4-C/results/933811738/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:52","STORET",7,NA,2021-04-07 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811747",NA,"as N","Nitrogen","Total","0.103","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C/results/933811747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:52","STORET",7,NA,2021-05-17 22:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.103,"MG/L","Numeric","Pass","Uncensored",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811750",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955780-0517-4-C/results/933811750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:52","STORET",7,NA,2021-05-17 22:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811779","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C/results/933811779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-04-07 22:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811782",NA,"as N","Nitrogen","Dissolved","0.104","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955790-0407-4-C/results/933811782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-04-07 22:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.104,"MG/L","Numeric","Pass","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811791",NA,"as N","Nitrogen","Total","0.144","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C/results/933811791/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-05-17 22:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.144,"MG/L","Numeric","Pass","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811794",NA,"as N","Nitrogen","Dissolved","0.156","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955790-0517-4-C/results/933811794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-05-17 22:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.156,"MG/L","Numeric","Pass","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-07,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811823","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C/results/933811823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-04-07 22:15:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-07,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811826","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955791-0407-4-C/results/933811826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-04-07 22:15:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-17,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811835","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C/results/933811835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-05-17 22:45:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-17,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811838",NA,"as N","Nitrogen","Dissolved","0.135","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955791-0517-4-C/results/933811838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-05-17 22:45:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.135,"MG/L","Numeric","Pass","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811867",NA,"as N","Nitrogen","Total","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C/results/933811867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-04-07 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811870",NA,"as N","Nitrogen","Dissolved","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955810-0407-4-C/results/933811870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:53","STORET",7,NA,2021-04-07 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811879",NA,"as N","Nitrogen","Total","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C/results/933811879/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-05-17 21:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811882",NA,"as N","Nitrogen","Dissolved","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955810-0517-4-C/results/933811882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-05-17 21:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811911","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C/results/933811911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-04-07 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C","Sample-Routine","Water",NA,2021-04-07,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811914","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4955815-0407-4-C/results/933811914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-04-07 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811923",NA,"as N","Nitrogen","Total","0.1","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C/results/933811923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-05-17 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.1,"MG/L","Numeric","Pass","Uncensored",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811926",NA,"as N","Nitrogen","Dissolved","0.127","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210517-4955815-0517-4-C/results/933811926/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-05-17 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.127,"MG/L","Numeric","Pass","Uncensored",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C","Sample-Routine","Water",NA,2021-04-23,"14:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811956",NA,"as N","Nitrogen","Total","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C/results/933811956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-04-23 21:56:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C","Sample-Routine","Water",NA,2021-04-23,"14:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811959",NA,"as N","Nitrogen","Dissolved","0.683","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4956290-0423-4-C/results/933811959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-04-23 21:56:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.683,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"17:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811989",NA,"as N","Nitrogen","Total","0.708","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C/results/933811989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-05-20 00:05:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.708,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C","Sample-Routine","Water",NA,2021-05-19,"17:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933811992",NA,"as N","Nitrogen","Dissolved","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210519-4956290-0519-4-C/results/933811992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:54","STORET",7,NA,2021-05-20 00:05:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812021",NA,"as N","Nitrogen","Total","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C/results/933812021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:55","STORET",7,NA,2021-06-21 22:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812024",NA,"as N","Nitrogen","Dissolved","0.684","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4956290-0621-4-C/results/933812024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:55","STORET",7,NA,2021-06-21 22:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.684,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812054",NA,"as N","Nitrogen","Total","0.761","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C/results/933812054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:55","STORET",7,NA,2021-07-15 21:10:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.761,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812057",NA,"as N","Nitrogen","Dissolved","0.779","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210715-4956290-0715-4-C/results/933812057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:55","STORET",7,NA,2021-07-15 21:10:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.779,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"14:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812087",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C/results/933812087/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:55","STORET",7,NA,2021-08-26 21:11:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"14:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812090",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4956290-0826-4-C/results/933812090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:55","STORET",7,NA,2021-08-26 21:11:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-23,"15:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812153",NA,"as N","Nitrogen","Total","0.686","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C/results/933812153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:56","STORET",7,NA,2021-04-23 22:02:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.686,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-23,"15:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812156",NA,"as N","Nitrogen","Dissolved","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-4956291-0423-4-C/results/933812156/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:56","STORET",7,NA,2021-04-23 22:02:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-21,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812186",NA,"as N","Nitrogen","Total","0.464","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C/results/933812186/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:56","STORET",7,NA,2021-06-21 22:45:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.464,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-21,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812189",NA,"as N","Nitrogen","Dissolved","0.488","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-4956291-0621-4-C/results/933812189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:56","STORET",7,NA,2021-06-21 22:45:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.488,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-26,"14:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812219",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C/results/933812219/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:56","STORET",7,NA,2021-08-26 21:14:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-26,"14:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812222",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-4956291-0826-4-C/results/933812222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:56","STORET",7,NA,2021-08-26 21:14:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C","Sample-Routine","Water",NA,2021-04-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4958750","FISHER CK AT MOUTH",NA,NA,NA,NA,"38.7433200000","-109.1351100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812251",NA,"as N","Nitrogen","Total","0.11","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C/results/933812251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:57","STORET",7,NA,2021-04-14 22:00:00,NA,"River/Stream",NA,"14030004",NA,NA,NA,NA,"38.7433200000","-109.1351100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.11,"MG/L","Numeric","Pass","Uncensored",38.74332,-109.13511,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C","Sample-Routine","Water",NA,2021-04-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4958750","FISHER CK AT MOUTH",NA,NA,NA,NA,"38.7433200000","-109.1351100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812254",NA,"as N","Nitrogen","Dissolved","0.111","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4958750-0414-4-C/results/933812254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:57","STORET",7,NA,2021-04-14 22:00:00,NA,"River/Stream",NA,"14030004",NA,NA,NA,NA,"38.7433200000","-109.1351100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.111,"MG/L","Numeric","Pass","Uncensored",38.74332,-109.13511,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-28,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812289","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C/results/933812289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:57","STORET",7,NA,2021-04-28 17:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-28,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812292","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4990006-0428-4-C/results/933812292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:57","STORET",7,NA,2021-04-28 17:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812319","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C/results/933812319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:57","STORET",7,NA,2021-05-26 17:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812322","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4990006-0526-4-C/results/933812322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:57","STORET",7,NA,2021-05-26 17:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-28,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812349","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C/results/933812349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:57","STORET",7,NA,2021-06-28 17:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-28,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812352","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4990006-0628-4-C/results/933812352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:57","STORET",7,NA,2021-06-28 17:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-26,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812379","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C/results/933812379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-07-26 18:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-26,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812382","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4990006-0726-4-C/results/933812382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-07-26 18:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-26,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812409","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C/results/933812409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-08-26 16:25:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-26,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812412",NA,"as N","Nitrogen","Dissolved","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4990006-0826-4-C/results/933812412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-08-26 16:25:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990360-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812441",NA,"as N","Nitrogen","Total","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990360-0420-4-C/results/933812441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-04-20 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990360-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812445",NA,"as N","Nitrogen","Dissolved","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990360-0420-4-C/results/933812445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-04-20 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990360-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812469",NA,"as N","Nitrogen","Total","0.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990360-0518-4-C/results/933812469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-05-18 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990360-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990360","DUEL CK @ 850 East crossing",NA,NA,NA,NA,"40.9163900000","-111.8658100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812473",NA,"as N","Nitrogen","Dissolved","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990360-0518-4-C/results/933812473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-05-18 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9163900000","-111.8658100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",40.91639,-111.86581,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990373-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812482",NA,"as N","Nitrogen","Total","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990373-0420-4-C/results/933812482/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-04-20 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990373-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812486",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990373-0420-4-C/results/933812486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-04-20 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990373-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812510",NA,"as N","Nitrogen","Total","0.517","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990373-0518-4-C/results/933812510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-05-18 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.517,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990373-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812514",NA,"as N","Nitrogen","Dissolved","0.477","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990373-0518-4-C/results/933812514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-05-18 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.477,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990373-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812523",NA,"as N","Nitrogen","Total","0.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990373-0622-4-C/results/933812523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-06-22 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990373-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812527",NA,"as N","Nitrogen","Dissolved","0.604","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990373-0622-4-C/results/933812527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-06-22 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.604,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990373-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812552",NA,"as N","Nitrogen","Total","0.882","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990373-0727-4-C/results/933812552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-07-27 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.882,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990373-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812556",NA,"as N","Nitrogen","Dissolved","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990373-0727-4-C/results/933812556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:58","STORET",7,NA,2021-07-27 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990373-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812565",NA,"as N","Nitrogen","Total","0.993","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990373-0817-4-C/results/933812565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-08-17 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.993,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990373-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990373","PARRISH CK @ 900 W",NA,NA,NA,NA,"40.9257900000","-111.9002200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812569",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990373-0817-4-C/results/933812569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-08-17 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9257900000","-111.9002200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.92579,-111.90022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990376-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812593",NA,"as N","Nitrogen","Total","0.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990376-0420-4-C/results/933812593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-04-20 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990376-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812597",NA,"as N","Nitrogen","Dissolved","0.317","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990376-0420-4-C/results/933812597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-04-20 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.317,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990376-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812621",NA,"as N","Nitrogen","Total","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990376-0518-4-C/results/933812621/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-05-18 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990376-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812625",NA,"as N","Nitrogen","Dissolved","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990376-0518-4-C/results/933812625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-05-18 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990376-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812634",NA,"as N","Nitrogen","Total","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990376-0622-4-C/results/933812634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-06-22 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990376-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812638",NA,"as N","Nitrogen","Dissolved","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990376-0622-4-C/results/933812638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-06-22 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990376-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812663","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990376-0727-4-C/results/933812663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-07-27 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990376-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812667",NA,"as N","Nitrogen","Dissolved","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990376-0727-4-C/results/933812667/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-07-27 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990376-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812676",NA,"as N","Nitrogen","Total","0.087","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990376-0817-4-C/results/933812676/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-08-17 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.087,"MG/L","Numeric","Pass","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990376-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990376","PARRISH CK @ FIREBREAK RD XING",NA,NA,NA,NA,"40.9232400000","-111.8648600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812680",NA,"as N","Nitrogen","Dissolved","0.139","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990376-0817-4-C/results/933812680/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-08-17 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9232400000","-111.8648600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.139,"MG/L","Numeric","Pass","Uncensored",40.92324,-111.86486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990555-0420-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-20,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812704","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990555-0420-4-C/results/933812704/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-04-20 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990555-0420-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-20,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812708","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990555-0420-4-C/results/933812708/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-04-20 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990555-0518-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-18,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812732","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990555-0518-4-C/results/933812732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-05-18 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990555-0518-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-18,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812736","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990555-0518-4-C/results/933812736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:17:59","STORET",7,NA,2021-05-18 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990555-0622-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-22,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812745",NA,"as N","Nitrogen","Total","0.116","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990555-0622-4-C/results/933812745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-06-22 15:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.116,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990555-0622-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-22,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812749","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990555-0622-4-C/results/933812749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-06-22 15:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990555-0727-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-27,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812774","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990555-0727-4-C/results/933812774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-07-27 16:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990555-0727-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-27,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812778","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990555-0727-4-C/results/933812778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-07-27 16:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990555-0817-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-17,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812787",NA,"as N","Nitrogen","Total","0.104","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990555-0817-4-C/results/933812787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-08-17 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.104,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990555-0817-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-17,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812791",NA,"as N","Nitrogen","Dissolved","0.096","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990555-0817-4-C/results/933812791/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-08-17 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.096,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990620-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812815","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990620-0420-4-C/results/933812815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-04-20 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990620-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812819","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990620-0420-4-C/results/933812819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-04-20 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990620-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812843",NA,"as N","Nitrogen","Total","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990620-0518-4-C/results/933812843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-05-18 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990620-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812847",NA,"as N","Nitrogen","Dissolved","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990620-0518-4-C/results/933812847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-05-18 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990620-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812856","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990620-0817-4-C/results/933812856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-08-17 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990620-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990620","STONE CK AB 1300 EAST",NA,NA,NA,NA,"40.8930800000","-111.8527100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812860",NA,"as N","Nitrogen","Dissolved","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990620-0817-4-C/results/933812860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-08-17 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8930800000","-111.8527100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",40.89308,-111.85271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990640-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812884",NA,"as N","Nitrogen","Total","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990640-0420-4-C/results/933812884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-04-20 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990640-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812888",NA,"as N","Nitrogen","Dissolved","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990640-0420-4-C/results/933812888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-04-20 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990640-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812912",NA,"as N","Nitrogen","Total","0.748","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990640-0518-4-C/results/933812912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:00","STORET",7,NA,2021-05-18 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.748,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990640-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812916",NA,"as N","Nitrogen","Dissolved","0.573","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990640-0518-4-C/results/933812916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-05-18 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.573,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990640-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812925",NA,"as N","Nitrogen","Total","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990640-0622-4-C/results/933812925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-06-22 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990640-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812929",NA,"as N","Nitrogen","Dissolved","0.664","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990640-0622-4-C/results/933812929/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-06-22 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.664,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990640-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812954",NA,"as N","Nitrogen","Total","0.675","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990640-0727-4-C/results/933812954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-07-27 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.675,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990640-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812958",NA,"as N","Nitrogen","Dissolved","0.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990640-0727-4-C/results/933812958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-07-27 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990640-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812967",NA,"as N","Nitrogen","Total","0.827","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990640-0817-4-C/results/933812967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-08-17 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.827,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990640-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990640","STONE CK AT ENTRANCE TO FARMINGTON BAY WMA (BARD)",NA,NA,NA,NA,"40.9093900000","-111.9110500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812971",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990640-0817-4-C/results/933812971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-08-17 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9093900000","-111.9110500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.90939,-111.91105,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990650-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812995",NA,"as N","Nitrogen","Total","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990650-0420-4-C/results/933812995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-04-20 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990650-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933812999",NA,"as N","Nitrogen","Dissolved","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990650-0420-4-C/results/933812999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-04-20 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990650-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813023",NA,"as N","Nitrogen","Total","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990650-0518-4-C/results/933813023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-05-18 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990650-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813027",NA,"as N","Nitrogen","Dissolved","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990650-0518-4-C/results/933813027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-05-18 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990650-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813036",NA,"as N","Nitrogen","Total","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990650-0622-4-C/results/933813036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-06-22 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.331,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990650-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813040",NA,"as N","Nitrogen","Dissolved","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990650-0622-4-C/results/933813040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-06-22 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990650-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813065",NA,"as N","Nitrogen","Total","0.111","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990650-0727-4-C/results/933813065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-07-27 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.111,"MG/L","Numeric","Pass","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990650-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813069",NA,"as N","Nitrogen","Dissolved","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990650-0727-4-C/results/933813069/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-07-27 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990650-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813078",NA,"as N","Nitrogen","Total","0.133","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990650-0817-4-C/results/933813078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:01","STORET",7,NA,2021-08-17 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.133,"MG/L","Numeric","Pass","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990650-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990650","BARTON CK ABOVE BOUNTIFUL BLVD",NA,NA,NA,NA,"40.8808900000","-111.8428200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813082",NA,"as N","Nitrogen","Dissolved","0.128","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990650-0817-4-C/results/933813082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-08-17 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8808900000","-111.8428200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.128,"MG/L","Numeric","Pass","Uncensored",40.88089,-111.84282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990680-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813106",NA,"as N","Nitrogen","Total","0.139","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990680-0420-4-C/results/933813106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-04-20 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.139,"MG/L","Numeric","Pass","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990680-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813110",NA,"as N","Nitrogen","Dissolved","0.151","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990680-0420-4-C/results/933813110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-04-20 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.151,"MG/L","Numeric","Pass","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990680-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813134",NA,"as N","Nitrogen","Total","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990680-0518-4-C/results/933813134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-05-18 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990680-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813138",NA,"as N","Nitrogen","Dissolved","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990680-0518-4-C/results/933813138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-05-18 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990680-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813147",NA,"as N","Nitrogen","Total","0.666","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990680-0622-4-C/results/933813147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-06-22 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.666,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990680-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813151",NA,"as N","Nitrogen","Dissolved","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990680-0622-4-C/results/933813151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-06-22 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990680-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813176",NA,"as N","Nitrogen","Total","0.912","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990680-0727-4-C/results/933813176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-07-27 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.912,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990680-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813180",NA,"as N","Nitrogen","Dissolved","0.771","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990680-0727-4-C/results/933813180/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-07-27 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.771,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990680-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813189",NA,"as N","Nitrogen","Total","0.693","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990680-0817-4-C/results/933813189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-08-17 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.693,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990680-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990680","MILL CK AT 1100 WEST",NA,NA,NA,NA,"40.8898200000","-111.9126400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813193",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990680-0817-4-C/results/933813193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-08-17 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8898200000","-111.9126400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.88982,-111.91264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990700-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813217",NA,"as N","Nitrogen","Total","0.107","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990700-0420-4-C/results/933813217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-04-20 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.107,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990700-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813221",NA,"as N","Nitrogen","Dissolved","0.128","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990700-0420-4-C/results/933813221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-04-20 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.128,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990700-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813245",NA,"as N","Nitrogen","Total","0.197","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990700-0518-4-C/results/933813245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-05-18 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.197,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990700-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813249",NA,"as N","Nitrogen","Dissolved","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990700-0518-4-C/results/933813249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:02","STORET",7,NA,2021-05-18 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990700-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813258",NA,"as N","Nitrogen","Total","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990700-0622-4-C/results/933813258/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-06-22 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990700-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813262",NA,"as N","Nitrogen","Dissolved","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990700-0622-4-C/results/933813262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-06-22 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990700-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813287",NA,"as N","Nitrogen","Total","0.097","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990700-0727-4-C/results/933813287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-07-27 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.097,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990700-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813291",NA,"as N","Nitrogen","Dissolved","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990700-0727-4-C/results/933813291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-07-27 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990700-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813300",NA,"as N","Nitrogen","Total","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990700-0817-4-C/results/933813300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-08-17 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990700-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990700","MILL CK @ Mueller Park Entrance",NA,NA,NA,NA,"40.8680000000","-111.8457700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813304",NA,"as N","Nitrogen","Dissolved","0.1","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990700-0817-4-C/results/933813304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-08-17 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8680000000","-111.8457700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.1,"MG/L","Numeric","Pass","Uncensored",40.868,-111.84577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990987-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813328",NA,"as N","Nitrogen","Total","2.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990987-0420-4-C/results/933813328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-04-20 17:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.72,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990987-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813332",NA,"as N","Nitrogen","Dissolved","2.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990987-0420-4-C/results/933813332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-04-20 17:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990987-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813356",NA,"as N","Nitrogen","Total","2.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990987-0518-4-C/results/933813356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-05-18 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990987-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813360",NA,"as N","Nitrogen","Dissolved","2.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990987-0518-4-C/results/933813360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-05-18 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990987-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813369",NA,"as N","Nitrogen","Total","2.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990987-0622-4-C/results/933813369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-06-22 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990987-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813373",NA,"as N","Nitrogen","Dissolved","2.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990987-0622-4-C/results/933813373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-06-22 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990987-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813398",NA,"as N","Nitrogen","Total","1.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990987-0727-4-C/results/933813398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-07-27 18:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990987-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813402",NA,"as N","Nitrogen","Dissolved","1.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990987-0727-4-C/results/933813402/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-07-27 18:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.93,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990987-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813411",NA,"as N","Nitrogen","Total","3.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990987-0817-4-C/results/933813411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-08-17 17:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990987-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990987","North Canyon Creek in Legacy Nature Preserve",NA,NA,NA,NA,"40.8492700000","-111.9543300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813415",NA,"as N","Nitrogen","Dissolved","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990987-0817-4-C/results/933813415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:03","STORET",7,NA,2021-08-17 17:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8492700000","-111.9543300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.84927,-111.95433,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990996-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813439",NA,"as N","Nitrogen","Total","0.121","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990996-0420-4-C/results/933813439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-04-20 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.121,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990996-0420-4-C","Sample-Routine","Water",NA,2021-04-20,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813443",NA,"as N","Nitrogen","Dissolved","0.127","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990996-0420-4-C/results/933813443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-04-20 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.127,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990996-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813467",NA,"as N","Nitrogen","Total","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990996-0518-4-C/results/933813467/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-05-18 17:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990996-0518-4-C","Sample-Routine","Water",NA,2021-05-18,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813471",NA,"as N","Nitrogen","Dissolved","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990996-0518-4-C/results/933813471/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-05-18 17:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990996-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813480",NA,"as N","Nitrogen","Total","0.374","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990996-0622-4-C/results/933813480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-06-22 18:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.374,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990996-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813484",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990996-0622-4-C/results/933813484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-06-22 18:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990997-0622-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-22,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813504",NA,"as N","Nitrogen","Total","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990997-0622-4-C/results/933813504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-06-22 18:05:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210622-4990997-0622-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-22,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813513",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210622-4990997-0622-4-C/results/933813513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-06-22 18:05:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990996-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813538",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990996-0727-4-C/results/933813538/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-07-27 19:05:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990996-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813542",NA,"as N","Nitrogen","Dissolved","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990996-0727-4-C/results/933813542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-07-27 19:05:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990996-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813551",NA,"as N","Nitrogen","Total","0.222","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990996-0817-4-C/results/933813551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-08-17 18:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.222,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990996-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990996","N. CANYON CK @ CANYON CREEK DR",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813555",NA,"as N","Nitrogen","Dissolved","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990996-0817-4-C/results/933813555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-08-17 18:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990997-0420-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-20,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813579",NA,"as N","Nitrogen","Total","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990997-0420-4-C/results/933813579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:04","STORET",7,NA,2021-04-20 17:20:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210420-4990997-0420-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-20,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813583",NA,"as N","Nitrogen","Dissolved","0.124","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210420-4990997-0420-4-C/results/933813583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-04-20 17:20:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.124,"MG/L","Numeric","Pass","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990997-0518-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-18,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813607",NA,"as N","Nitrogen","Total","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990997-0518-4-C/results/933813607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-05-18 17:25:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210518-4990997-0518-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-18,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813611",NA,"as N","Nitrogen","Dissolved","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210518-4990997-0518-4-C/results/933813611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-05-18 17:25:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990997-0727-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-27,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813620",NA,"as N","Nitrogen","Total","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990997-0727-4-C/results/933813620/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-07-27 19:10:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210727-4990997-0727-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-27,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813624",NA,"as N","Nitrogen","Dissolved","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210727-4990997-0727-4-C/results/933813624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-07-27 19:10:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990997-0817-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-17,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813633",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990997-0817-4-C/results/933813633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-08-17 18:25:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC210817-4990997-0817-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-17,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990997","N. CANYON CK @ CANYON CREEK DR Replicate of 4990996",NA,NA,NA,NA,"40.8462900000","-111.8533600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813637",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC210817-4990997-0817-4-C/results/933813637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-08-17 18:25:00,NA,"River/Stream","Replicate of 4990996","16020204",NA,NA,NA,NA,"40.8462900000","-111.8533600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.84629,-111.85336,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813659",NA,"as N","Nitrogen","Total","4.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C/results/933813659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-04-28 17:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813662",NA,"as N","Nitrogen","Dissolved","4.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994175-0428-4-C/results/933813662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-04-28 17:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C","Sample-Routine","Water",NA,2021-05-26,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813689",NA,"as N","Nitrogen","Total","2.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C/results/933813689/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-05-26 16:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C","Sample-Routine","Water",NA,2021-05-26,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813692",NA,"as N","Nitrogen","Dissolved","3.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994175-0526-4-C/results/933813692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:05","STORET",7,NA,2021-05-26 16:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813719",NA,"as N","Nitrogen","Total","3.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C/results/933813719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-06-28 17:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813722",NA,"as N","Nitrogen","Dissolved","3.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4994175-0628-4-C/results/933813722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-06-28 17:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813749",NA,"as N","Nitrogen","Total","3.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C/results/933813749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-07-26 18:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813752",NA,"as N","Nitrogen","Dissolved","3.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994175-0726-4-C/results/933813752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-07-26 18:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813779",NA,"as N","Nitrogen","Total","3.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C/results/933813779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-08-26 16:05:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813782",NA,"as N","Nitrogen","Dissolved","3.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4994175-0826-4-C/results/933813782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-08-26 16:05:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813809",NA,"as N","Nitrogen","Total","2.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C/results/933813809/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-09-22 21:35:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813812",NA,"as N","Nitrogen","Dissolved","3.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994175-0922-4-C/results/933813812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-09-22 21:35:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813839",NA,"as N","Nitrogen","Total","4.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C/results/933813839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-04-28 16:10:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C","Sample-Routine","Water",NA,2021-04-28,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813842",NA,"as N","Nitrogen","Dissolved","4.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994270-0428-4-C/results/933813842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:06","STORET",7,NA,2021-04-28 16:10:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C","Sample-Routine","Water",NA,2021-05-26,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813869",NA,"as N","Nitrogen","Total","3.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C/results/933813869/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:07","STORET",7,NA,2021-05-26 15:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C","Sample-Routine","Water",NA,2021-05-26,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813872",NA,"as N","Nitrogen","Dissolved","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994270-0526-4-C/results/933813872/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:07","STORET",7,NA,2021-05-26 15:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813899",NA,"as N","Nitrogen","Total","3.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C/results/933813899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:07","STORET",7,NA,2021-06-28 16:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813902",NA,"as N","Nitrogen","Dissolved","3.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210628-4994270-0628-4-C/results/933813902/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:07","STORET",7,NA,2021-06-28 16:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813929",NA,"as N","Nitrogen","Total","3.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C/results/933813929/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:07","STORET",7,NA,2021-07-26 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.77,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813932",NA,"as N","Nitrogen","Dissolved","3.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994270-0726-4-C/results/933813932/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:07","STORET",7,NA,2021-07-26 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.85,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"08:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813959",NA,"as N","Nitrogen","Total","3.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C/results/933813959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:07","STORET",7,NA,2021-08-26 15:35:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C","Sample-Routine","Water",NA,2021-08-26,"08:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813962",NA,"as N","Nitrogen","Dissolved","3.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210826-4994270-0826-4-C/results/933813962/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:07","STORET",7,NA,2021-08-26 15:35:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813989",NA,"as N","Nitrogen","Total","3.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C/results/933813989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:08","STORET",7,NA,2021-09-22 21:05:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933813992",NA,"as N","Nitrogen","Dissolved","3.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994270-0922-4-C/results/933813992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:08","STORET",7,NA,2021-09-22 21:05:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-28,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814019",NA,"as N","Nitrogen","Total","4.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C/results/933814019/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:08","STORET",7,NA,2021-04-28 16:15:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-28,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814022",NA,"as N","Nitrogen","Dissolved","4.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210428-4994271-0428-4-C/results/933814022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:08","STORET",7,NA,2021-04-28 16:15:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-26,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814049",NA,"as N","Nitrogen","Total","3.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C/results/933814049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:08","STORET",7,NA,2021-05-26 15:40:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-26,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814052",NA,"as N","Nitrogen","Dissolved","3.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210526-4994271-0526-4-C/results/933814052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:08","STORET",7,NA,2021-05-26 15:40:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-26,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814079",NA,"as N","Nitrogen","Total","3.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C/results/933814079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:08","STORET",7,NA,2021-07-26 17:30:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-26,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814082",NA,"as N","Nitrogen","Dissolved","3.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210726-4994271-0726-4-C/results/933814082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:08","STORET",7,NA,2021-07-26 17:30:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-22,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814109",NA,"as N","Nitrogen","Total","3.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C/results/933814109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-09-22 21:15:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-22,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814112",NA,"as N","Nitrogen","Dissolved","3.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4994271-0922-4-C/results/933814112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-09-22 21:15:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814146",NA,"as N","Nitrogen","Total","0.654","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C/results/933814146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-05-10 22:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.654,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814151",NA,"as N","Nitrogen","Dissolved","0.738","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994790-0510-4-C/results/933814151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-05-10 22:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.738,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814165",NA,"as N","Nitrogen","Total","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C/results/933814165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-06-15 22:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814170",NA,"as N","Nitrogen","Dissolved","0.704","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4994790-0615-4-C/results/933814170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-06-15 22:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.704,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814184",NA,"as N","Nitrogen","Total","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C/results/933814184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-07-14 23:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814189",NA,"as N","Nitrogen","Dissolved","0.968","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994790-0714-4-C/results/933814189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-07-14 23:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.968,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814203",NA,"as N","Nitrogen","Total","0.863","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C/results/933814203/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-08-18 22:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.863,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814208",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994790-0818-4-C/results/933814208/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-08-18 22:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814222",NA,"as N","Nitrogen","Total","0.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C/results/933814222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:09","STORET",7,NA,2021-09-14 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814227",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994790-0914-4-C/results/933814227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-09-14 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814241",NA,"as N","Nitrogen","Total","0.662","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C/results/933814241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-05-10 23:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.662,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814246",NA,"as N","Nitrogen","Dissolved","0.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994792-0510-4-C/results/933814246/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-05-10 23:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814260",NA,"as N","Nitrogen","Total","0.804","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C/results/933814260/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-07-15 00:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.804,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814265",NA,"as N","Nitrogen","Dissolved","0.761","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994792-0714-4-C/results/933814265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-07-15 00:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.761,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814279",NA,"as N","Nitrogen","Total","0.985","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C/results/933814279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-09-14 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.985,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814284",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994792-0914-4-C/results/933814284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-09-14 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994804","Dry Creek at 145 N (Saratoga Springs)",NA,NA,NA,NA,"40.3650400000","-111.8839300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814298",NA,"as N","Nitrogen","Total","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C/results/933814298/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-08-18 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3650400000","-111.8839300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",40.36504,-111.88393,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994804","Dry Creek at 145 N (Saratoga Springs)",NA,NA,NA,NA,"40.3650400000","-111.8839300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814303",NA,"as N","Nitrogen","Dissolved","0.892","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994804-0818-4-C/results/933814303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-08-18 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3650400000","-111.8839300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.892,"MG/L","Numeric","Not Reviewed","Uncensored",40.36504,-111.88393,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"16:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814317",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C/results/933814317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-04-13 23:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"16:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814322",NA,"as N","Nitrogen","Dissolved","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4994950-0413-4-C/results/933814322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-04-13 23:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814336",NA,"as N","Nitrogen","Total","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C/results/933814336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-05-10 22:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814341",NA,"as N","Nitrogen","Dissolved","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4994950-0510-4-C/results/933814341/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:10","STORET",7,NA,2021-05-10 22:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814355",NA,"as N","Nitrogen","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C/results/933814355/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-06-15 22:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814360",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4994950-0615-4-C/results/933814360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-06-15 22:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814374",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C/results/933814374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-07-14 23:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814379",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4994950-0714-4-C/results/933814379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-07-14 23:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814393",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C/results/933814393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-08-18 21:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814398",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4994950-0818-4-C/results/933814398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-08-18 21:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814412",NA,"as N","Nitrogen","Total","2.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C/results/933814412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-09-14 20:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814417",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4994950-0914-4-C/results/933814417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-09-14 20:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814427",NA,"as N","Nitrogen","Total","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C/results/933814427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-04-29 18:20:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814430",NA,"as N","Nitrogen","Dissolved","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210429-4994970-0429-4-C/results/933814430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-04-29 18:20:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C","Sample-Routine","Water",NA,2021-05-27,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814459",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C/results/933814459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-05-27 18:25:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C","Sample-Routine","Water",NA,2021-05-27,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814462",NA,"as N","Nitrogen","Dissolved","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210527-4994970-0527-4-C/results/933814462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:11","STORET",7,NA,2021-05-27 18:25:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"10:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814476",NA,"as N","Nitrogen","Total","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C/results/933814476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-06-23 17:46:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C","Sample-Routine","Water",NA,2021-06-23,"10:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814479",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210623-4994970-0623-4-C/results/933814479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-06-23 17:46:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"11:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814493",NA,"as N","Nitrogen","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C/results/933814493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-07-21 18:14:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C","Sample-Routine","Water",NA,2021-07-21,"11:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814496",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210721-4994970-0721-4-C/results/933814496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-07-21 18:14:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C","Sample-Routine","Water",NA,2021-08-19,"11:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814529",NA,"as N","Nitrogen","Total","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C/results/933814529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-08-19 18:22:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C","Sample-Routine","Water",NA,2021-08-19,"11:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814532",NA,"as N","Nitrogen","Dissolved","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210819-4994970-0819-4-C/results/933814532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-08-19 18:22:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814542",NA,"as N","Nitrogen","Total","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C/results/933814542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-09-21 18:20:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814545",NA,"as N","Nitrogen","Dissolved","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETALTIMP210921-4994970-0921-4-C/results/933814545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-09-21 18:20:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814565",NA,"as N","Nitrogen","Total","10.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C/results/933814565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-04-13 22:40:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814570",NA,"as N","Nitrogen","Dissolved","9.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995038-0413-4-C/results/933814570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-04-13 22:40:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814585",NA,"as N","Nitrogen","Total","7.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C/results/933814585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:12","STORET",7,NA,2021-05-10 22:00:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814590",NA,"as N","Nitrogen","Dissolved","7.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995038-0510-4-C/results/933814590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:13","STORET",7,NA,2021-05-10 22:00:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.56,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814607",NA,"as N","Nitrogen","Total","6.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C/results/933814607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:13","STORET",7,NA,2021-06-15 22:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814612",NA,"as N","Nitrogen","Dissolved","6.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995038-0615-4-C/results/933814612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:13","STORET",7,NA,2021-06-15 22:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"15:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814627",NA,"as N","Nitrogen","Total","9.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C/results/933814627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:13","STORET",7,NA,2021-07-14 22:35:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"15:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814632",NA,"as N","Nitrogen","Dissolved","9.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995038-0714-4-C/results/933814632/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:13","STORET",7,NA,2021-07-14 22:35:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814649",NA,"as N","Nitrogen","Total","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C/results/933814649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:13","STORET",7,NA,2021-08-18 21:00:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814654",NA,"as N","Nitrogen","Dissolved","10.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995038-0818-4-C/results/933814654/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:13","STORET",7,NA,2021-08-18 21:00:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814670",NA,"as N","Nitrogen","Total","7.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C/results/933814670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:13","STORET",7,NA,2021-09-14 20:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814675",NA,"as N","Nitrogen","Dissolved","6.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995038-0914-4-C/results/933814675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-09-14 20:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814691",NA,"as N","Nitrogen","Total","2.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C/results/933814691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-04-13 22:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814696",NA,"as N","Nitrogen","Dissolved","2.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995041-0413-4-C/results/933814696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-04-13 22:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814711",NA,"as N","Nitrogen","Total","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C/results/933814711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-05-10 21:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814716",NA,"as N","Nitrogen","Dissolved","2.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995041-0510-4-C/results/933814716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-05-10 21:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814731",NA,"as N","Nitrogen","Total","3.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C/results/933814731/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-04-13 22:25:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814736",NA,"as N","Nitrogen","Dissolved","2.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995120-0413-4-C/results/933814736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-04-13 22:25:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814750",NA,"as N","Nitrogen","Total","2.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C/results/933814750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-05-10 21:30:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814755",NA,"as N","Nitrogen","Dissolved","2.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995120-0510-4-C/results/933814755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-05-10 21:30:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814769",NA,"as N","Nitrogen","Total","2.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C/results/933814769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-06-15 21:45:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814774",NA,"as N","Nitrogen","Dissolved","2.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995120-0615-4-C/results/933814774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-06-15 21:45:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814788",NA,"as N","Nitrogen","Total","2.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C/results/933814788/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:14","STORET",7,NA,2021-07-14 22:00:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814793",NA,"as N","Nitrogen","Dissolved","2.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995120-0714-4-C/results/933814793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:15","STORET",7,NA,2021-07-14 22:00:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814807",NA,"as N","Nitrogen","Total","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C/results/933814807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:15","STORET",7,NA,2021-08-18 20:45:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814812",NA,"as N","Nitrogen","Dissolved","1.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995120-0818-4-C/results/933814812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:15","STORET",7,NA,2021-08-18 20:45:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.94,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814826",NA,"as N","Nitrogen","Total","3.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C/results/933814826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:15","STORET",7,NA,2021-09-14 19:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814831",NA,"as N","Nitrogen","Dissolved","3.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995120-0914-4-C/results/933814831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:15","STORET",7,NA,2021-09-14 19:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995251","Orem WRF GW OUTFALL-WLA",NA,NA,NA,NA,"40.2768800000","-111.7440100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814910",NA,"as N","Nitrogen","Total","19.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C/results/933814910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:15","STORET",7,NA,2021-04-13 21:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2768800000","-111.7440100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.27688,-111.74401,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995251","Orem WRF GW OUTFALL-WLA",NA,NA,NA,NA,"40.2768800000","-111.7440100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814915",NA,"as N","Nitrogen","Dissolved","19.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995251-0413-4-C/results/933814915/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:16","STORET",7,NA,2021-04-13 21:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2768800000","-111.7440100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.27688,-111.74401,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814973",NA,"as N","Nitrogen","Total","0.656","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C/results/933814973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:16","STORET",7,NA,2021-04-13 21:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.656,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814978",NA,"as N","Nitrogen","Dissolved","0.659","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995252-0413-4-C/results/933814978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:16","STORET",7,NA,2021-04-13 21:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.659,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814993",NA,"as N","Nitrogen","Total","0.563","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C/results/933814993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:16","STORET",7,NA,2021-05-10 21:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.563,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933814998",NA,"as N","Nitrogen","Dissolved","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995252-0510-4-C/results/933814998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:16","STORET",7,NA,2021-05-10 21:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815015",NA,"as N","Nitrogen","Total","0.565","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C/results/933815015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:16","STORET",7,NA,2021-06-15 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.565,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815020",NA,"as N","Nitrogen","Dissolved","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995252-0615-4-C/results/933815020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-06-15 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815034",NA,"as N","Nitrogen","Total","0.468","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C/results/933815034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-05-10 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.468,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815039",NA,"as N","Nitrogen","Dissolved","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995310-0510-4-C/results/933815039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-05-10 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815053",NA,"as N","Nitrogen","Total","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C/results/933815053/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-06-15 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815058",NA,"as N","Nitrogen","Dissolved","0.688","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995310-0615-4-C/results/933815058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-06-15 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.688,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815074",NA,"as N","Nitrogen","Total","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C/results/933815074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-04-13 17:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815079",NA,"as N","Nitrogen","Dissolved","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995465-0413-4-C/results/933815079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-04-13 17:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815094",NA,"as N","Nitrogen","Total","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C/results/933815094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-05-10 18:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815099",NA,"as N","Nitrogen","Dissolved","1.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995465-0510-4-C/results/933815099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-05-10 18:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815114",NA,"as N","Nitrogen","Total","0.303","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C/results/933815114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-04-13 18:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.303,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815119",NA,"as N","Nitrogen","Dissolved","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4995578-0413-4-C/results/933815119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-04-13 18:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815133",NA,"as N","Nitrogen","Total","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C/results/933815133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-05-10 18:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815138",NA,"as N","Nitrogen","Dissolved","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995578-0510-4-C/results/933815138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:17","STORET",7,NA,2021-05-10 18:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815152",NA,"as N","Nitrogen","Total","0.696","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C/results/933815152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-06-15 18:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.696,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815157",NA,"as N","Nitrogen","Dissolved","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995578-0615-4-C/results/933815157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-06-15 18:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815171",NA,"as N","Nitrogen","Total","0.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C/results/933815171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-07-14 17:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815176",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995578-0714-4-C/results/933815176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-07-14 17:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815190",NA,"as N","Nitrogen","Total","0.979","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C/results/933815190/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-08-18 17:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.979,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815195",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995578-0818-4-C/results/933815195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-08-18 17:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815209",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C/results/933815209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-09-14 17:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815214",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995578-0914-4-C/results/933815214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-09-14 17:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815230",NA,"as N","Nitrogen","Total","11.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C/results/933815230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-04-13 19:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815235",NA,"as N","Nitrogen","Dissolved","10.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996000-0413-4-C/results/933815235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-04-13 19:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815250",NA,"as N","Nitrogen","Total","5.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C/results/933815250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-05-10 18:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815255",NA,"as N","Nitrogen","Dissolved","5.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996000-0510-4-C/results/933815255/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-05-10 18:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815272",NA,"as N","Nitrogen","Total","12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C/results/933815272/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-06-15 18:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815277",NA,"as N","Nitrogen","Dissolved","12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996000-0615-4-C/results/933815277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:18","STORET",7,NA,2021-06-15 18:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C","Sample-Routine","Water",NA,2021-07-12,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815293",NA,"as N","Nitrogen","Total","3.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C/results/933815293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-07-12 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C","Sample-Routine","Water",NA,2021-07-12,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815298",NA,"as N","Nitrogen","Dissolved","3.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996040-0712-4-C/results/933815298/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-07-12 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815314",NA,"as N","Nitrogen","Total","3.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C/results/933815314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-08-17 18:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815319",NA,"as N","Nitrogen","Dissolved","3.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996040-0817-4-C/results/933815319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-08-17 18:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C","Sample-Routine","Water",NA,2021-09-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815335",NA,"as N","Nitrogen","Total","4.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C/results/933815335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-09-15 18:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C","Sample-Routine","Water",NA,2021-09-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815340",NA,"as N","Nitrogen","Dissolved","4.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996040-0915-4-C/results/933815340/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-09-15 18:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815356",NA,"as N","Nitrogen","Total","1.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C/results/933815356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-04-13 19:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.72,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815361",NA,"as N","Nitrogen","Dissolved","1.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996044-0413-4-C/results/933815361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-04-13 19:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.72,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815375",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C/results/933815375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-05-10 19:20:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815380",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996044-0510-4-C/results/933815380/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-05-10 19:20:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815394",NA,"as N","Nitrogen","Total","2.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C/results/933815394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-06-15 19:00:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815399",NA,"as N","Nitrogen","Dissolved","2.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996044-0615-4-C/results/933815399/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-06-15 19:00:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815413",NA,"as N","Nitrogen","Total","2.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C/results/933815413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-07-14 18:30:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815418",NA,"as N","Nitrogen","Dissolved","2.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996044-0714-4-C/results/933815418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-07-14 18:30:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815432",NA,"as N","Nitrogen","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C/results/933815432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:19","STORET",7,NA,2021-08-18 17:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815437",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996044-0818-4-C/results/933815437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-08-18 17:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815451",NA,"as N","Nitrogen","Total","2.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C/results/933815451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-09-14 18:25:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815456",NA,"as N","Nitrogen","Dissolved","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996044-0914-4-C/results/933815456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-09-14 18:25:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815470",NA,"as N","Nitrogen","Total","0.609","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C/results/933815470/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-04-13 20:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.609,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815475",NA,"as N","Nitrogen","Dissolved","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996100-0413-4-C/results/933815475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-04-13 20:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815489",NA,"as N","Nitrogen","Total","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C/results/933815489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-05-10 19:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815494",NA,"as N","Nitrogen","Dissolved","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996100-0510-4-C/results/933815494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-05-10 19:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815508",NA,"as N","Nitrogen","Total","0.672","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C/results/933815508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-06-15 19:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.672,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815513",NA,"as N","Nitrogen","Dissolved","0.608","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996100-0615-4-C/results/933815513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-06-15 19:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.608,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815527",NA,"as N","Nitrogen","Total","0.959","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C/results/933815527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-07-14 18:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.959,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815532",NA,"as N","Nitrogen","Dissolved","0.669","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996100-0714-4-C/results/933815532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-07-14 18:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.669,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815546",NA,"as N","Nitrogen","Total","0.861","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C/results/933815546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-08-18 18:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.861,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815551",NA,"as N","Nitrogen","Dissolved","0.906","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996100-0818-4-C/results/933815551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-08-18 18:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.906,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815565",NA,"as N","Nitrogen","Total","0.715","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C/results/933815565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-09-14 18:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.715,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815570",NA,"as N","Nitrogen","Dissolved","0.844","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996100-0914-4-C/results/933815570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-09-14 18:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.844,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815584",NA,"as N","Nitrogen","Total","7.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C/results/933815584/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-04-13 20:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815589",NA,"as N","Nitrogen","Dissolved","8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996275-0413-4-C/results/933815589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-04-13 20:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815603",NA,"as N","Nitrogen","Total","6.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C/results/933815603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:20","STORET",7,NA,2021-05-10 19:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815608",NA,"as N","Nitrogen","Dissolved","6.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996275-0510-4-C/results/933815608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-05-10 19:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815622",NA,"as N","Nitrogen","Total","9.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C/results/933815622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-06-15 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815627",NA,"as N","Nitrogen","Dissolved","9.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996275-0615-4-C/results/933815627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-06-15 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815641",NA,"as N","Nitrogen","Total","9.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C/results/933815641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-07-14 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815646",NA,"as N","Nitrogen","Dissolved","9.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996275-0714-4-C/results/933815646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-07-14 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815660",NA,"as N","Nitrogen","Total","4.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C/results/933815660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-08-18 18:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815665",NA,"as N","Nitrogen","Dissolved","4.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996275-0818-4-C/results/933815665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-08-18 18:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815679",NA,"as N","Nitrogen","Total","10.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C/results/933815679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-09-14 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815684",NA,"as N","Nitrogen","Dissolved","9.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996275-0914-4-C/results/933815684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-09-14 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815700",NA,"as N","Nitrogen","Total","12.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C/results/933815700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-04-13 20:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815705",NA,"as N","Nitrogen","Dissolved","12.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996540-0413-4-C/results/933815705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-04-13 20:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815720",NA,"as N","Nitrogen","Total","4.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C/results/933815720/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-05-10 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815725",NA,"as N","Nitrogen","Dissolved","4.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996540-0510-4-C/results/933815725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-05-10 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815742",NA,"as N","Nitrogen","Total","9.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C/results/933815742/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-06-15 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815747",NA,"as N","Nitrogen","Dissolved","9.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996540-0615-4-C/results/933815747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-06-15 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815762",NA,"as N","Nitrogen","Total","7.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C/results/933815762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-07-14 19:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815767",NA,"as N","Nitrogen","Dissolved","7.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996540-0714-4-C/results/933815767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:21","STORET",7,NA,2021-07-14 19:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815784",NA,"as N","Nitrogen","Total","10.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C/results/933815784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-08-18 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815789",NA,"as N","Nitrogen","Dissolved","11.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996540-0818-4-C/results/933815789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-08-18 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815804",NA,"as N","Nitrogen","Total","14.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C/results/933815804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-09-14 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815809",NA,"as N","Nitrogen","Dissolved","13.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996540-0914-4-C/results/933815809/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-09-14 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815825",NA,"as N","Nitrogen","Total","11.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C/results/933815825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-04-13 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815830",NA,"as N","Nitrogen","Dissolved","11.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996566-0413-4-C/results/933815830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-04-13 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815845",NA,"as N","Nitrogen","Total","11.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C/results/933815845/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-05-10 20:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815850",NA,"as N","Nitrogen","Dissolved","11.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996566-0510-4-C/results/933815850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-05-10 20:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815866",NA,"as N","Nitrogen","Total","6.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C/results/933815866/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-06-15 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.85,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815871",NA,"as N","Nitrogen","Dissolved","7.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996566-0615-4-C/results/933815871/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-06-15 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815886",NA,"as N","Nitrogen","Total","5.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C/results/933815886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-07-14 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815891",NA,"as N","Nitrogen","Dissolved","5.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996566-0714-4-C/results/933815891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-07-14 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815908",NA,"as N","Nitrogen","Total","11.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C/results/933815908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-08-18 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815913",NA,"as N","Nitrogen","Dissolved","11.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996566-0818-4-C/results/933815913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-08-18 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"7999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815928",NA,"as N","Nitrogen","Total","13.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C/results/933815928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-09-14 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815933",NA,"as N","Nitrogen","Dissolved","13.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996566-0914-4-C/results/933815933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:22","STORET",7,NA,2021-09-14 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815947",NA,"as N","Nitrogen","Total","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C/results/933815947/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-04-13 21:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815952",NA,"as N","Nitrogen","Dissolved","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-4996680-0413-4-C/results/933815952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-04-13 21:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815966",NA,"as N","Nitrogen","Total","0.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C/results/933815966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-05-10 20:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815971",NA,"as N","Nitrogen","Dissolved","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4996680-0510-4-C/results/933815971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-05-10 20:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815985",NA,"as N","Nitrogen","Total","0.687","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C/results/933815985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-06-15 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.687,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933815990",NA,"as N","Nitrogen","Dissolved","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4996680-0615-4-C/results/933815990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-06-15 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816004",NA,"as N","Nitrogen","Total","0.966","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C/results/933816004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-07-14 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.966,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816009",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4996680-0714-4-C/results/933816009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-07-14 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816023",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C/results/933816023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-08-18 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816028",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4996680-0818-4-C/results/933816028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-08-18 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816042",NA,"as N","Nitrogen","Total","0.762","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C/results/933816042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-09-14 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.762,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816047",NA,"as N","Nitrogen","Dissolved","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4996680-0914-4-C/results/933816047/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-09-14 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"12:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816053",NA,"as N","Nitrogen","Total","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C/results/933816053/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-04-29 19:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"12:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816056",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996880-0429-4-C/results/933816056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-04-29 19:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"11:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816062",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C/results/933816062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-05-24 18:51:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"11:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816065",NA,"as N","Nitrogen","Dissolved","1.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996880-0524-4-C/results/933816065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-05-24 18:51:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-29,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816071","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C/results/933816071/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-04-29 20:50:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-29,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816074","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996903-0429-4-C/results/933816074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:23","STORET",7,NA,2021-04-29 20:50:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-24,"13:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816098","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C/results/933816098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-05-24 20:41:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-24,"13:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816101","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996903-0524-4-C/results/933816101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-05-24 20:41:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-21,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816107","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C/results/933816107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-06-21 22:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-21,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816110","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996903-0621-4-C/results/933816110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-06-21 22:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816116","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C/results/933816116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-07-19 21:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816119",NA,"as N","Nitrogen","Dissolved","0.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-4996903-0719-4-C/results/933816119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-07-19 21:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-25,"13:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816143",NA,"as N","Nitrogen","Total","0.102","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C/results/933816143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-08-25 20:37:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.102,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-25,"13:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816146","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-4996903-0825-4-C/results/933816146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-08-25 20:37:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-09,"14:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816152",NA,"as N","Nitrogen","Total","0.138","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C/results/933816152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-09-09 21:26:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.138,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-09,"14:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816155","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-4996903-0909-4-C/results/933816155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-09-09 21:26:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816161",NA,"as N","Nitrogen","Total","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C/results/933816161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-04-29 18:35:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816164",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996905-0429-4-C/results/933816164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-04-29 18:35:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"11:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816170",NA,"as N","Nitrogen","Total","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C/results/933816170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-05-24 18:22:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"11:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816173",NA,"as N","Nitrogen","Dissolved","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996905-0524-4-C/results/933816173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-05-24 18:22:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816179",NA,"as N","Nitrogen","Total","0.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C/results/933816179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-06-21 20:37:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816182",NA,"as N","Nitrogen","Dissolved","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996905-0621-4-C/results/933816182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-06-21 20:37:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-29,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816188",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C/results/933816188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-04-29 18:40:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-29,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816191",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996906-0429-4-C/results/933816191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-04-29 18:40:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-24,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816197",NA,"as N","Nitrogen","Total","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C/results/933816197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-05-24 18:30:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-24,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816200",NA,"as N","Nitrogen","Dissolved","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996906-0524-4-C/results/933816200/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-05-24 18:30:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-21,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816206",NA,"as N","Nitrogen","Total","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C/results/933816206/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-06-21 20:40:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-21,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816209",NA,"as N","Nitrogen","Dissolved","0.427","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996906-0621-4-C/results/933816209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-06-21 20:40:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.427,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"10:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816215",NA,"as N","Nitrogen","Total","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C/results/933816215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-04-29 17:44:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"10:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816218",NA,"as N","Nitrogen","Dissolved","0.095","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996910-0429-4-C/results/933816218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-04-29 17:44:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.095,"MG/L","Numeric","Pass","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"10:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816224",NA,"as N","Nitrogen","Total","0.121","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C/results/933816224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-04-29 17:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.121,"MG/L","Numeric","Pass","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"10:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816227",NA,"as N","Nitrogen","Dissolved","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-4996913-0429-4-C/results/933816227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-04-29 17:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"10:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816233",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C/results/933816233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-05-24 17:28:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"10:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816236",NA,"as N","Nitrogen","Dissolved","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-4996913-0524-4-C/results/933816236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-05-24 17:28:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816242",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C/results/933816242/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:24","STORET",7,NA,2021-06-21 19:54:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"12:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816245",NA,"as N","Nitrogen","Dissolved","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-4996913-0621-4-C/results/933816245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:25","STORET",7,NA,2021-06-21 19:54:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900970","CUTLER RES AB DAM 01",NA,NA,NA,NA,"41.8377000000","-112.0443900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816341",NA,"as N","Nitrogen","Total","0.438","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C/results/933816341/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:25","STORET",7,NA,2021-06-15 17:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.438,"MG/L","Numeric","Not Reviewed","Uncensored",41.8377,-112.04439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900970","CUTLER RES AB DAM 01",NA,NA,NA,NA,"41.8377000000","-112.0443900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816345",NA,"as N","Nitrogen","Dissolved","0.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900970-0615-2-C/results/933816345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:25","STORET",7,NA,2021-06-15 17:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.8377,-112.04439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-14,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900970","CUTLER RES AB DAM 01",NA,NA,NA,NA,"41.8377000000","-112.0443900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816355",NA,"as N","Nitrogen","Total","0.492","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C/results/933816355/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:25","STORET",7,NA,2021-09-14 17:50:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.492,"MG/L","Numeric","Not Reviewed","Uncensored",41.8377,-112.04439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-14,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900970","CUTLER RES AB DAM 01",NA,NA,NA,NA,"41.8377000000","-112.0443900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816359",NA,"as N","Nitrogen","Dissolved","0.469","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900970-0914-2-C/results/933816359/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:25","STORET",7,NA,2021-09-14 17:50:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.469,"MG/L","Numeric","Not Reviewed","Uncensored",41.8377,-112.04439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900980","CUTLER RES E OF HIGHWAY BRIDGE 02",NA,NA,NA,NA,"41.8435300000","-112.0024500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816369",NA,"as N","Nitrogen","Total","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C/results/933816369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:25","STORET",7,NA,2021-06-15 17:40:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.84353,-112.00245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900980","CUTLER RES E OF HIGHWAY BRIDGE 02",NA,NA,NA,NA,"41.8435300000","-112.0024500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816373",NA,"as N","Nitrogen","Dissolved","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900980-0615-2-C/results/933816373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:25","STORET",7,NA,2021-06-15 17:40:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",41.84353,-112.00245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-14,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900980","CUTLER RES E OF HIGHWAY BRIDGE 02",NA,NA,NA,NA,"41.8435300000","-112.0024500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816400",NA,"as N","Nitrogen","Total","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C/results/933816400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-09-14 18:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",41.84353,-112.00245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-14,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900980","CUTLER RES E OF HIGHWAY BRIDGE 02",NA,NA,NA,NA,"41.8435300000","-112.0024500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816404",NA,"as N","Nitrogen","Dissolved","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900980-0914-2-C/results/933816404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-09-14 18:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.84353,-112.00245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900990","CUTLER RES AT CNFL / CLAY SLOUGH 03",NA,NA,NA,NA,"41.8249300000","-111.9532800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816414",NA,"as N","Nitrogen","Total","0.508","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C/results/933816414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-15 18:40:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.508,"MG/L","Numeric","Not Reviewed","Uncensored",41.82493,-111.95328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900990","CUTLER RES AT CNFL / CLAY SLOUGH 03",NA,NA,NA,NA,"41.8249300000","-111.9532800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816418",NA,"as N","Nitrogen","Dissolved","0.511","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5900990-0615-2-C/results/933816418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-15 18:40:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.511,"MG/L","Numeric","Not Reviewed","Uncensored",41.82493,-111.95328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-14,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900990","CUTLER RES AT CNFL / CLAY SLOUGH 03",NA,NA,NA,NA,"41.8249300000","-111.9532800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816428",NA,"as N","Nitrogen","Total","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C/results/933816428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-09-14 19:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",41.82493,-111.95328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-14,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900990","CUTLER RES AT CNFL / CLAY SLOUGH 03",NA,NA,NA,NA,"41.8249300000","-111.9532800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816432",NA,"as N","Nitrogen","Dissolved","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5900990-0914-2-C/results/933816432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-09-14 19:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",41.82493,-111.95328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816442",NA,"as N","Nitrogen","Total","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C/results/933816442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-15 19:00:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816446",NA,"as N","Nitrogen","Dissolved","0.523","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5901000-0615-2-C/results/933816446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-15 19:00:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.523,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C","Sample-Routine","Water",NA,2021-06-15,"12:05:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816451",NA,"as N","Nitrogen","Total","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C/results/933816451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-15 19:05:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C","Sample-Routine","Water",NA,2021-06-15,"12:05:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816455",NA,"as N","Nitrogen","Dissolved","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210614-5901000-0615-29-C/results/933816455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-15 19:05:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-14,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816465",NA,"as N","Nitrogen","Total","0.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C/results/933816465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-09-14 19:25:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-14,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816469",NA,"as N","Nitrogen","Dissolved","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901000-0914-2-C/results/933816469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-09-14 19:25:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C","Sample-Routine","Water",NA,2021-09-14,"12:35:00","MST",NA,NA,NA,"Bottom","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816474",NA,"as N","Nitrogen","Total","0.678","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C/results/933816474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-09-14 19:35:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.678,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C","Sample-Routine","Water",NA,2021-09-14,"12:35:00","MST",NA,NA,NA,"Bottom","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816478",NA,"as N","Nitrogen","Dissolved","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901000-0914-29-C/results/933816478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-09-14 19:35:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816505",NA,"as N","Nitrogen","Total","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C/results/933816505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-01 20:50:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816509",NA,"as N","Nitrogen","Dissolved","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-2-C/results/933816509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-01 20:50:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C","Sample-Routine","Water",NA,2021-06-01,"13:55:00","MST",NA,NA,NA,"AboveThermoclin","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816514",NA,"as N","Nitrogen","Total","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C/results/933816514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-01 20:55:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C","Sample-Routine","Water",NA,2021-06-01,"13:55:00","MST",NA,NA,NA,"AboveThermoclin","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816518",NA,"as N","Nitrogen","Dissolved","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-23-C/results/933816518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-01 20:55:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C","Sample-Routine","Water",NA,2021-06-01,"14:00:00","MST",NA,NA,NA,"BelowThermoclin","11.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816523",NA,"as N","Nitrogen","Total","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C/results/933816523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-01 21:00:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",11.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C","Sample-Routine","Water",NA,2021-06-01,"14:00:00","MST",NA,NA,NA,"BelowThermoclin","11.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816527",NA,"as N","Nitrogen","Dissolved","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-27-C/results/933816527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:26","STORET",7,NA,2021-06-01 21:00:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",11.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C","Sample-Routine","Water",NA,2021-06-01,"14:05:00","MST",NA,NA,NA,"Bottom","18.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816532",NA,"as N","Nitrogen","Total","0.433","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C/results/933816532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:05:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.433,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",18.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C","Sample-Routine","Water",NA,2021-06-01,"14:05:00","MST",NA,NA,NA,"Bottom","18.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816536",NA,"as N","Nitrogen","Dissolved","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901670-0601-29-C/results/933816536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:05:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",18.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-15,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816563",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C/results/933816563/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-09-15 18:25:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-15,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816567",NA,"as N","Nitrogen","Dissolved","0.304","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901670-0915-2-C/results/933816567/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-09-15 18:25:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.304,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C","Sample-Routine","Water",NA,2021-09-15,"11:40:00","MST",NA,NA,NA,"Bottom","9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816572",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C/results/933816572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-09-15 18:40:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C","Sample-Routine","Water",NA,2021-09-15,"11:40:00","MST",NA,NA,NA,"Bottom","9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901670","HYRUM RES AB DAM 01",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816576",NA,"as N","Nitrogen","Dissolved","0.364","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901670-0915-29-C/results/933816576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-09-15 18:40:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.364,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901680","HYRUM RES MIDLAKE 02",NA,NA,NA,NA,"41.6193800000","-111.8593800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816603",NA,"as N","Nitrogen","Total","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C/results/933816603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:25:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6193800000","-111.8593800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",41.61938,-111.85938,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901680","HYRUM RES MIDLAKE 02",NA,NA,NA,NA,"41.6193800000","-111.8593800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816607",NA,"as N","Nitrogen","Dissolved","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901680-0601-2-C/results/933816607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:25:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6193800000","-111.8593800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",41.61938,-111.85938,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C","Sample-Routine","Water",NA,2021-06-01,"14:30:00","MST",NA,NA,NA,"Bottom","13.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901680","HYRUM RES MIDLAKE 02",NA,NA,NA,NA,"41.6193800000","-111.8593800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816612",NA,"as N","Nitrogen","Total","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C/results/933816612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:30:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6193800000","-111.8593800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",41.61938,-111.85938,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C","Sample-Routine","Water",NA,2021-06-01,"14:30:00","MST",NA,NA,NA,"Bottom","13.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901680","HYRUM RES MIDLAKE 02",NA,NA,NA,NA,"41.6193800000","-111.8593800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816616",NA,"as N","Nitrogen","Dissolved","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901680-0601-29-C/results/933816616/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:30:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6193800000","-111.8593800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",41.61938,-111.85938,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901690","HYRUM RES 03 NEAR UPPER END",NA,NA,NA,NA,"41.6125500000","-111.8519700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816626",NA,"as N","Nitrogen","Total","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C/results/933816626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:40:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6125500000","-111.8519700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",41.61255,-111.85197,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-01,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901690","HYRUM RES 03 NEAR UPPER END",NA,NA,NA,NA,"41.6125500000","-111.8519700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816630",NA,"as N","Nitrogen","Dissolved","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901690-0601-2-C/results/933816630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:40:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.6125500000","-111.8519700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",41.61255,-111.85197,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-01,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901720","HYRUM RES AB DAM 01 Replicate of 5901670",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816640",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C/results/933816640/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:10:00,NA,"Lake","Replicate of 5901670","16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-01,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901720","HYRUM RES AB DAM 01 Replicate of 5901670",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816644",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210531-5901720-0601-2-C/results/933816644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-06-01 21:10:00,NA,"Lake","Replicate of 5901670","16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-15,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901720","HYRUM RES AB DAM 01 Replicate of 5901670",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816654",NA,"as N","Nitrogen","Total","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C/results/933816654/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:27","STORET",7,NA,2021-09-15 18:55:00,NA,"Lake","Replicate of 5901670","16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-15,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901720","HYRUM RES AB DAM 01 Replicate of 5901670",NA,NA,NA,NA,"41.6254900000","-111.8713400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816658",NA,"as N","Nitrogen","Dissolved","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210913-5901720-0915-2-C/results/933816658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-09-15 18:55:00,NA,"Lake","Replicate of 5901670","16010203",NA,NA,NA,NA,"41.6254900000","-111.8713400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",41.62549,-111.87134,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906510","LITTLE CK RES AB DAM 01",NA,NA,NA,NA,"41.6743900000","-111.2288100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816685",NA,"as N","Nitrogen","Total","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C/results/933816685/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-07-13 18:15:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.6743900000","-111.2288100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",41.67439,-111.22881,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-13,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906510","LITTLE CK RES AB DAM 01",NA,NA,NA,NA,"41.6743900000","-111.2288100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816689",NA,"as N","Nitrogen","Dissolved","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906510-0713-2-C/results/933816689/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-07-13 18:15:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.6743900000","-111.2288100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",41.67439,-111.22881,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-5906850-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816695",NA,"as N","Nitrogen","Total","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-5906850-0503-4-C/results/933816695/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-05-03 16:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-5906850-0503-4-C","Sample-Routine","Water",NA,2021-05-03,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816698",NA,"as N","Nitrogen","Dissolved","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-5906850-0503-4-C/results/933816698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-05-03 16:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-5906850-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816704",NA,"as N","Nitrogen","Total","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-5906850-0607-4-C/results/933816704/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-06-07 17:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-5906850-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816707",NA,"as N","Nitrogen","Dissolved","0.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-5906850-0607-4-C/results/933816707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-06-07 17:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-5906850-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816730",NA,"as N","Nitrogen","Total","0.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-5906850-0621-4-C/results/933816730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-06-21 18:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210621-5906850-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906850","WOODRUFF CK BL WOODRUFF CK RES",NA,NA,NA,NA,"41.4679900000","-111.3164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816733",NA,"as N","Nitrogen","Dissolved","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210621-5906850-0621-4-C/results/933816733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-06-21 18:50:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4679900000","-111.3164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",41.46799,-111.31649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816760",NA,"as N","Nitrogen","Total","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C/results/933816760/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-07-14 20:30:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816764",NA,"as N","Nitrogen","Dissolved","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-2-C/results/933816764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-07-14 20:30:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C","Sample-Routine","Water",NA,2021-07-14,"13:45:00","MST",NA,NA,NA,"Bottom","10.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816786",NA,"as N","Nitrogen","Total","0.681","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C/results/933816786/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-07-14 20:45:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.681,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",10.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C","Sample-Routine","Water",NA,2021-07-14,"13:45:00","MST",NA,NA,NA,"Bottom","10.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816790",NA,"as N","Nitrogen","Dissolved","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-29-C/results/933816790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-07-14 20:45:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",10.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C","Sample-Routine","Water",NA,2021-07-14,"13:35:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816795",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C/results/933816795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-07-14 20:35:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C","Sample-Routine","Water",NA,2021-07-14,"13:35:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816799",NA,"as N","Nitrogen","Dissolved","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-23-C/results/933816799/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:28","STORET",7,NA,2021-07-14 20:35:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C","Sample-Routine","Water",NA,2021-07-14,"13:40:00","MST",NA,NA,NA,"BelowThermoclin","9.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816804",NA,"as N","Nitrogen","Total","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C/results/933816804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-07-14 20:40:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",9.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C","Sample-Routine","Water",NA,2021-07-14,"13:40:00","MST",NA,NA,NA,"BelowThermoclin","9.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816808",NA,"as N","Nitrogen","Dissolved","0.488","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906860-0714-27-C/results/933816808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-07-14 20:40:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.488,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",9.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-29,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816818",NA,"as N","Nitrogen","Total","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C/results/933816818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-09-29 21:00:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-29,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816822",NA,"as N","Nitrogen","Dissolved","0.509","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906860-0929-2-C/results/933816822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-09-29 21:00:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.509,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C","Sample-Routine","Water",NA,2021-09-29,"14:20:00","MST",NA,NA,NA,"Bottom","14","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816827",NA,"as N","Nitrogen","Total","0.926","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C/results/933816827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-09-29 21:20:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.926,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C","Sample-Routine","Water",NA,2021-09-29,"14:20:00","MST",NA,NA,NA,"Bottom","14","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906860","WOODRUFF CK RES AB DAM 01",NA,NA,NA,NA,"41.4663300000","-111.3196400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816831",NA,"as N","Nitrogen","Dissolved","0.772","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906860-0929-29-C/results/933816831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-09-29 21:20:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.4663300000","-111.3196400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.772,"MG/L","Numeric","Not Reviewed","Uncensored",41.46633,-111.31964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906900","WOODRUFF CK AB WOODRUFF CK RES",NA,NA,NA,NA,"41.4624400000","-111.3488200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816875",NA,"as N","Nitrogen","Total","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C/results/933816875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-07-14 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4624400000","-111.3488200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",41.46244,-111.34882,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906900","WOODRUFF CK AB WOODRUFF CK RES",NA,NA,NA,NA,"41.4624400000","-111.3488200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816879",NA,"as N","Nitrogen","Dissolved","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5906900-0714-4-C/results/933816879/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-07-14 19:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4624400000","-111.3488200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",41.46244,-111.34882,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906900","WOODRUFF CK AB WOODRUFF CK RES",NA,NA,NA,NA,"41.4624400000","-111.3488200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816889",NA,"as N","Nitrogen","Total","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C/results/933816889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-09-29 20:25:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4624400000","-111.3488200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",41.46244,-111.34882,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5906900","WOODRUFF CK AB WOODRUFF CK RES",NA,NA,NA,NA,"41.4624400000","-111.3488200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816893",NA,"as N","Nitrogen","Dissolved","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5906900-0929-4-C/results/933816893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-09-29 20:25:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.4624400000","-111.3488200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",41.46244,-111.34882,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-14,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907130","BIRCH CK RES #2 (UPPER) AB DAM 01",NA,NA,NA,NA,"41.5052200000","-111.3207600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816920",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C/results/933816920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-07-14 17:15:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.50522,-111.32076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-14,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907130","BIRCH CK RES #2 (UPPER) AB DAM 01",NA,NA,NA,NA,"41.5052200000","-111.3207600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816924",NA,"as N","Nitrogen","Dissolved","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907130-0714-2-C/results/933816924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-07-14 17:15:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",41.50522,-111.32076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C","Sample-Routine","Water",NA,2021-07-14,"10:30:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907130","BIRCH CK RES #2 (UPPER) AB DAM 01",NA,NA,NA,NA,"41.5052200000","-111.3207600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816946",NA,"as N","Nitrogen","Total","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C/results/933816946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-07-14 17:30:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",41.50522,-111.32076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C","Sample-Routine","Water",NA,2021-07-14,"10:30:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907130","BIRCH CK RES #2 (UPPER) AB DAM 01",NA,NA,NA,NA,"41.5052200000","-111.3207600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816950",NA,"as N","Nitrogen","Dissolved","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907130-0714-29-C/results/933816950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:29","STORET",7,NA,2021-07-14 17:30:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.50522,-111.32076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-29,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907130","BIRCH CK RES #2 (UPPER) AB DAM 01",NA,NA,NA,NA,"41.5052200000","-111.3207600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816960",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C/results/933816960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-09-29 19:05:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.50522,-111.32076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-29,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907130","BIRCH CK RES #2 (UPPER) AB DAM 01",NA,NA,NA,NA,"41.5052200000","-111.3207600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816964",NA,"as N","Nitrogen","Dissolved","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907130-0929-2-C/results/933816964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-09-29 19:05:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",41.50522,-111.32076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C","Sample-Routine","Water",NA,2021-09-29,"12:20:00","MST",NA,NA,NA,"Bottom","9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907130","BIRCH CK RES #2 (UPPER) AB DAM 01",NA,NA,NA,NA,"41.5052200000","-111.3207600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816969",NA,"as N","Nitrogen","Total","0.791","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C/results/933816969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-09-29 19:20:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.791,"MG/L","Numeric","Not Reviewed","Uncensored",41.50522,-111.32076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C","Sample-Routine","Water",NA,2021-09-29,"12:20:00","MST",NA,NA,NA,"Bottom","9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907130","BIRCH CK RES #2 (UPPER) AB DAM 01",NA,NA,NA,NA,"41.5052200000","-111.3207600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933816973",NA,"as N","Nitrogen","Dissolved","0.743","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907130-0929-29-C/results/933816973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-09-29 19:20:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"41.5052200000","-111.3207600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.743,"MG/L","Numeric","Not Reviewed","Uncensored",41.50522,-111.32076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907150","BIRCH CK AB BIRCH CK RES",NA,NA,NA,NA,"41.5035500000","-111.3368600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817017",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C/results/933817017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-14 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5035500000","-111.3368600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.50355,-111.33686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907150","BIRCH CK AB BIRCH CK RES",NA,NA,NA,NA,"41.5035500000","-111.3368600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817021",NA,"as N","Nitrogen","Dissolved","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210712-5907150-0714-4-C/results/933817021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-14 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5035500000","-111.3368600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",41.50355,-111.33686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907150","BIRCH CK AB BIRCH CK RES",NA,NA,NA,NA,"41.5035500000","-111.3368600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817031",NA,"as N","Nitrogen","Total","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C/results/933817031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-09-29 18:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5035500000","-111.3368600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",41.50355,-111.33686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C","Sample-Routine","Water",NA,2021-09-29,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907150","BIRCH CK AB BIRCH CK RES",NA,NA,NA,NA,"41.5035500000","-111.3368600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817035",NA,"as N","Nitrogen","Dissolved","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210927-5907150-0929-4-C/results/933817035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-09-29 18:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.5035500000","-111.3368600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",41.50355,-111.33686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-07,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817062",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C/results/933817062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-07 18:25:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-07-07,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817066",NA,"as N","Nitrogen","Dissolved","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-2-C/results/933817066/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-07 18:25:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C","Sample-Routine","Water",NA,2021-07-07,"11:30:00","MST",NA,NA,NA,"AboveThermoclin","4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817071",NA,"as N","Nitrogen","Total","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C/results/933817071/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-07 18:30:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C","Sample-Routine","Water",NA,2021-07-07,"11:30:00","MST",NA,NA,NA,"AboveThermoclin","4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817075",NA,"as N","Nitrogen","Dissolved","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-23-C/results/933817075/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-07 18:30:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C","Sample-Routine","Water",NA,2021-07-07,"11:35:00","MST",NA,NA,NA,"BelowThermoclin","9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817080",NA,"as N","Nitrogen","Total","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C/results/933817080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-07 18:35:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C","Sample-Routine","Water",NA,2021-07-07,"11:35:00","MST",NA,NA,NA,"BelowThermoclin","9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817084",NA,"as N","Nitrogen","Dissolved","0.179","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-27-C/results/933817084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-07 18:35:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.179,"MG/L","Numeric","Pass","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C","Sample-Routine","Water",NA,2021-07-07,"11:40:00","MST",NA,NA,NA,"Bottom","13","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817089",NA,"as N","Nitrogen","Total","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C/results/933817089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-07 18:40:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C","Sample-Routine","Water",NA,2021-07-07,"11:40:00","MST",NA,NA,NA,"Bottom","13","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817093",NA,"as N","Nitrogen","Dissolved","0.195","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907780-0707-29-C/results/933817093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:30","STORET",7,NA,2021-07-07 18:40:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Pass","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-08,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817120",NA,"as N","Nitrogen","Total","0.749","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C/results/933817120/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-09-08 18:50:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.749,"MG/L","Numeric","Not Reviewed","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-08,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817124",NA,"as N","Nitrogen","Dissolved","0.439","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907780-0908-2-C/results/933817124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-09-08 18:50:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.439,"MG/L","Numeric","Not Reviewed","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C","Sample-Routine","Water",NA,2021-09-08,"12:05:00","MST",NA,NA,NA,"Bottom","10.88","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817129",NA,"as N","Nitrogen","Total","1.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C/results/933817129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-09-08 19:05:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.73,"MG/L","Numeric","Not Reviewed","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",10.88,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C","Sample-Routine","Water",NA,2021-09-08,"12:05:00","MST",NA,NA,NA,"Bottom","10.88","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907780","WHITNEY RES AB DAM 01",NA,NA,NA,NA,"40.8371700000","-110.9285100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817133",NA,"as N","Nitrogen","Dissolved","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907780-0908-29-C/results/933817133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-09-08 19:05:00,NA,"Lake",NA,"16010101",NA,NA,NA,NA,"40.8371700000","-110.9285100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.83717,-110.92851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",10.88,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C","Sample-Routine","Water",NA,2021-07-07,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907800","W FK BEAR R AB WHITNEY RES",NA,NA,NA,NA,"40.8257800000","-110.9293400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817160",NA,"as N","Nitrogen","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C/results/933817160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-07-07 17:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8257800000","-110.9293400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",40.82578,-110.92934,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C","Sample-Routine","Water",NA,2021-07-07,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907800","W FK BEAR R AB WHITNEY RES",NA,NA,NA,NA,"40.8257800000","-110.9293400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817164",NA,"as N","Nitrogen","Dissolved","0.375","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907800-0707-4-C/results/933817164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-07-07 17:55:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8257800000","-110.9293400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.375,"MG/L","Numeric","Not Reviewed","Uncensored",40.82578,-110.92934,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C","Sample-Routine","Water",NA,2021-09-08,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907800","W FK BEAR R AB WHITNEY RES",NA,NA,NA,NA,"40.8257800000","-110.9293400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817191",NA,"as N","Nitrogen","Total","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C/results/933817191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-09-08 18:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8257800000","-110.9293400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",40.82578,-110.92934,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C","Sample-Routine","Water",NA,2021-09-08,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907800","W FK BEAR R AB WHITNEY RES",NA,NA,NA,NA,"40.8257800000","-110.9293400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817195",NA,"as N","Nitrogen","Dissolved","0.204","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907800-0908-4-C/results/933817195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-09-08 18:20:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8257800000","-110.9293400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.204,"MG/L","Numeric","Not Reviewed","Uncensored",40.82578,-110.92934,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C","Sample-Routine","Water",NA,2021-07-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907810","UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR",NA,NA,NA,NA,"40.8396700000","-110.9321200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817222",NA,"as N","Nitrogen","Total","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C/results/933817222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-07-07 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8396700000","-110.9321200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",40.83967,-110.93212,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C","Sample-Routine","Water",NA,2021-07-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907810","UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR",NA,NA,NA,NA,"40.8396700000","-110.9321200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817226",NA,"as N","Nitrogen","Dissolved","0.327","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210705-5907810-0707-4-C/results/933817226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-07-07 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8396700000","-110.9321200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.327,"MG/L","Numeric","Not Reviewed","Uncensored",40.83967,-110.93212,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C","Sample-Routine","Water",NA,2021-09-08,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907810","UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR",NA,NA,NA,NA,"40.8396700000","-110.9321200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817253",NA,"as N","Nitrogen","Total","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C/results/933817253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-09-08 18:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8396700000","-110.9321200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",40.83967,-110.93212,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C","Sample-Routine","Water",NA,2021-09-08,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5907810","UNNAMED NORTHWEST STREAM ABOVE WHITNEY RESERVOIR",NA,NA,NA,NA,"40.8396700000","-110.9321200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817257",NA,"as N","Nitrogen","Dissolved","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210906-5907810-0908-4-C/results/933817257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:31","STORET",7,NA,2021-09-08 18:35:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8396700000","-110.9321200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",40.83967,-110.93212,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"11:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817280",NA,"as N","Nitrogen","Total","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C/results/933817280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-04-29 18:08:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"11:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817283",NA,"as N","Nitrogen","Dissolved","1.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910280-0429-4-C/results/933817283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-04-29 18:08:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"10:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817289",NA,"as N","Nitrogen","Total","1.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C/results/933817289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-05-24 17:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.94,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"10:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817292",NA,"as N","Nitrogen","Dissolved","2.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910280-0524-4-C/results/933817292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-05-24 17:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817298",NA,"as N","Nitrogen","Total","1.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C/results/933817298/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-06-21 20:20:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817301",NA,"as N","Nitrogen","Dissolved","1.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910280-0621-4-C/results/933817301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-06-21 20:20:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.97,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817307",NA,"as N","Nitrogen","Total","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C/results/933817307/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-07-19 20:31:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"13:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817310",NA,"as N","Nitrogen","Dissolved","1.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910280-0719-4-C/results/933817310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-07-19 20:31:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817316",NA,"as N","Nitrogen","Total","2.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C/results/933817316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-08-25 18:23:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817319",NA,"as N","Nitrogen","Dissolved","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910280-0825-4-C/results/933817319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-08-25 18:23:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"10:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817325",NA,"as N","Nitrogen","Total","1.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C/results/933817325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-09-09 17:11:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.93,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"10:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817328",NA,"as N","Nitrogen","Dissolved","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910280-0909-4-C/results/933817328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-09-09 17:11:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"13:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817334",NA,"as N","Nitrogen","Total","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C/results/933817334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-04-29 20:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"13:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817337",NA,"as N","Nitrogen","Dissolved","0.516","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910290-0429-4-C/results/933817337/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-04-29 20:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.516,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"13:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817343",NA,"as N","Nitrogen","Total","0.552","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C/results/933817343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-05-24 20:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.552,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"13:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817346",NA,"as N","Nitrogen","Dissolved","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910290-0524-4-C/results/933817346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-05-24 20:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817352",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C/results/933817352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-06-21 21:01:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817355",NA,"as N","Nitrogen","Dissolved","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910290-0621-4-C/results/933817355/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-06-21 21:01:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817361",NA,"as N","Nitrogen","Total","0.339","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C/results/933817361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-07-19 21:06:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.339,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817364",NA,"as N","Nitrogen","Dissolved","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910290-0719-4-C/results/933817364/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-07-19 21:06:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817370",NA,"as N","Nitrogen","Total","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C/results/933817370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-08-25 18:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817373",NA,"as N","Nitrogen","Dissolved","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910290-0825-4-C/results/933817373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-08-25 18:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"10:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817379",NA,"as N","Nitrogen","Total","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C/results/933817379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-09-09 17:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"10:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817382",NA,"as N","Nitrogen","Dissolved","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910290-0909-4-C/results/933817382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-09-09 17:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"13:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817388",NA,"as N","Nitrogen","Total","0.399","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C/results/933817388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-04-29 20:37:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.399,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"13:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817391",NA,"as N","Nitrogen","Dissolved","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910619-0429-4-C/results/933817391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:32","STORET",7,NA,2021-04-29 20:37:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"13:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817415",NA,"as N","Nitrogen","Total","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C/results/933817415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-05-24 20:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"13:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817418",NA,"as N","Nitrogen","Dissolved","0.418","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910619-0524-4-C/results/933817418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-05-24 20:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.418,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817424",NA,"as N","Nitrogen","Total","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C/results/933817424/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-06-21 21:45:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817427",NA,"as N","Nitrogen","Dissolved","0.547","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910619-0621-4-C/results/933817427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-06-21 21:45:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.547,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817433",NA,"as N","Nitrogen","Total","0.306","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C/results/933817433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-07-19 21:25:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.306,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817436",NA,"as N","Nitrogen","Dissolved","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210719-5910619-0719-4-C/results/933817436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-07-19 21:25:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817460",NA,"as N","Nitrogen","Total","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C/results/933817460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-08-25 19:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817463",NA,"as N","Nitrogen","Dissolved","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210825-5910619-0825-4-C/results/933817463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-08-25 19:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"10:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817469",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C/results/933817469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-09-09 17:58:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"10:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817472",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210909-5910619-0909-4-C/results/933817472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-09-09 17:58:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817478",NA,"as N","Nitrogen","Total","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C/results/933817478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-04-29 19:45:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817481",NA,"as N","Nitrogen","Dissolved","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210429-5910620-0429-4-C/results/933817481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-04-29 19:45:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"12:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817487",NA,"as N","Nitrogen","Total","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C/results/933817487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-05-24 19:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C","Sample-Routine","Water",NA,2021-05-24,"12:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817490",NA,"as N","Nitrogen","Dissolved","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210524-5910620-0524-4-C/results/933817490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-05-24 19:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817496",NA,"as N","Nitrogen","Total","0.602","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C/results/933817496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-06-21 21:24:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.602,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C","Sample-Routine","Water",NA,2021-06-21,"14:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817499",NA,"as N","Nitrogen","Dissolved","0.671","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK210621-5910620-0621-4-C/results/933817499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-06-21 21:24:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.671,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817513",NA,"as N","Nitrogen","Total","3.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C/results/933817513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-04-13 18:30:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C","Sample-Routine","Water",NA,2021-04-13,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817518",NA,"as N","Nitrogen","Dissolved","4.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210412-5919910-0413-4-C/results/933817518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-04-13 18:30:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817532",NA,"as N","Nitrogen","Total","5.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C/results/933817532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-05-10 18:15:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817537",NA,"as N","Nitrogen","Dissolved","5.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-5919910-0510-4-C/results/933817537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-05-10 18:15:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817551",NA,"as N","Nitrogen","Total","3.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C/results/933817551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-06-15 18:10:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817556",NA,"as N","Nitrogen","Dissolved","3.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-5919910-0615-4-C/results/933817556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:33","STORET",7,NA,2021-06-15 18:10:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817570",NA,"as N","Nitrogen","Total","3.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C/results/933817570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-07-14 17:25:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C","Sample-Routine","Water",NA,2021-07-14,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817575",NA,"as N","Nitrogen","Dissolved","4.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-5919910-0714-4-C/results/933817575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-07-14 17:25:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817589",NA,"as N","Nitrogen","Total","4.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C/results/933817589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-08-18 16:50:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C","Sample-Routine","Water",NA,2021-08-18,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817594",NA,"as N","Nitrogen","Dissolved","4.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-5919910-0818-4-C/results/933817594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-08-18 16:50:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817608",NA,"as N","Nitrogen","Total","4.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C/results/933817608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-09-14 18:10:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817613",NA,"as N","Nitrogen","Dissolved","3.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-5919910-0914-4-C/results/933817613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-09-14 18:10:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919920-0526-4-C","Sample-Routine","Water",NA,2021-05-26,"08:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817619",NA,"as N","Nitrogen","Total","0.678","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919920-0526-4-C/results/933817619/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-05-26 15:42:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.678,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817625",NA,"as N","Nitrogen","Total","0.573","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C/results/933817625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-07-19 17:33:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.573,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817628",NA,"as N","Nitrogen","Dissolved","0.564","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919920-0719-4-C/results/933817628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-07-19 17:33:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.564,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"11:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817634",NA,"as N","Nitrogen","Total","0.504","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C/results/933817634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-09-09 18:58:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.504,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"11:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817637",NA,"as N","Nitrogen","Dissolved","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919920-0909-4-C/results/933817637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-09-09 18:58:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817643","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C/results/933817643/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-07-19 21:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-19,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817646","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919942-0719-4-C/results/933817646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-07-19 21:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-09,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817652",NA,"as N","Nitrogen","Total","0.166","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C/results/933817652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-09-09 21:25:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.166,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-09,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817655","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919942-0909-4-C/results/933817655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-09-09 21:25:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919970-0526-4-C","Sample-Routine","Water",NA,2021-05-26,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817661",NA,"as N","Nitrogen","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919970-0526-4-C/results/933817661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-05-26 16:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817667",NA,"as N","Nitrogen","Total","0.916","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C/results/933817667/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-07-19 18:47:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.916,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817670",NA,"as N","Nitrogen","Dissolved","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919970-0719-4-C/results/933817670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-07-19 18:47:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"13:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817676",NA,"as N","Nitrogen","Total","0.666","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C/results/933817676/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-09-09 20:09:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.666,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C","Sample-Routine","Water",NA,2021-09-09,"13:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817679",NA,"as N","Nitrogen","Dissolved","0.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919970-0909-4-C/results/933817679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-09-09 20:09:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919971-0526-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-26,"09:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817685",NA,"as N","Nitrogen","Total","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919971-0526-4-C/results/933817685/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:34","STORET",7,NA,2021-05-26 16:26:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"11:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817691",NA,"as N","Nitrogen","Total","0.922","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C/results/933817691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-07-19 18:47:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.922,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"11:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817694",NA,"as N","Nitrogen","Dissolved","0.848","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210719-5919971-0719-4-C/results/933817694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-07-19 18:47:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.848,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-09,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817700",NA,"as N","Nitrogen","Total","0.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C/results/933817700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-09-09 20:10:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-09,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817703",NA,"as N","Nitrogen","Dissolved","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210909-5919971-0909-4-C/results/933817703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-09-09 20:10:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-22,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817713",NA,"as N","Nitrogen","Total","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C/results/933817713/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-06-22 19:40:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-22,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817717",NA,"as N","Nitrogen","Dissolved","0.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931000-0622-2-C/results/933817717/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-06-22 19:40:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.41,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C","Sample-Routine","Water",NA,2021-06-22,"12:55:00","MST",NA,NA,NA,"Bottom","6.99","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817722",NA,"as N","Nitrogen","Total","0.379","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C/results/933817722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-06-22 19:55:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.379,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",6.99,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C","Sample-Routine","Water",NA,2021-06-22,"12:55:00","MST",NA,NA,NA,"Bottom","6.99","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817726",NA,"as N","Nitrogen","Dissolved","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931000-0622-29-C/results/933817726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-06-22 19:55:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",6.99,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-31,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817753",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C/results/933817753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-08-31 17:20:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-31,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817757",NA,"as N","Nitrogen","Dissolved","0.576","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931000-0831-2-C/results/933817757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-08-31 17:20:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.576,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C","Sample-Routine","Water",NA,2021-08-31,"10:35:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817762",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C/results/933817762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-08-31 17:35:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C","Sample-Routine","Water",NA,2021-08-31,"10:35:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817766",NA,"as N","Nitrogen","Dissolved","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931000-0831-29-C/results/933817766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-08-31 17:35:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-22,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931190","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817793",NA,"as N","Nitrogen","Total","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C/results/933817793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-06-22 19:35:00,NA,"Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-22,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931190","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817797",NA,"as N","Nitrogen","Dissolved","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931190-0622-2-C/results/933817797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:35","STORET",7,NA,2021-06-22 19:35:00,NA,"Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-31,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931190","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817807",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C/results/933817807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-08-31 17:50:00,NA,"Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-31,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931190","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817811",NA,"as N","Nitrogen","Dissolved","0.876","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931190-0831-2-C/results/933817811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-08-31 17:50:00,NA,"Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.876,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-29,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817817","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C/results/933817817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-04-29 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-29,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817820","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931467-0429-4-C/results/933817820/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-04-29 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-25,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817826","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C/results/933817826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-05-25 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-25,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817829","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931467-0525-4-C/results/933817829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-05-25 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-29,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality;Other","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817835","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C/results/933817835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-06-29 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-29,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality;Other","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817838","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931467-0629-4-C/results/933817838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-06-29 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-25,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817844","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C/results/933817844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-08-25 19:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-25,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817847","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931467-0825-4-C/results/933817847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-08-25 19:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-20,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817853",NA,"as N","Nitrogen","Total","0.101","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C/results/933817853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-09-20 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.101,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-20,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817856",NA,"as N","Nitrogen","Dissolved","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931467-0920-4-C/results/933817856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-09-20 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817862",NA,"as N","Nitrogen","Total","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C/results/933817862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-04-29 21:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817865",NA,"as N","Nitrogen","Dissolved","0.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931480-0429-4-C/results/933817865/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-04-29 21:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.84,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817871",NA,"as N","Nitrogen","Total","0.537","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C/results/933817871/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-05-25 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.537,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817874",NA,"as N","Nitrogen","Dissolved","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931480-0525-4-C/results/933817874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-05-25 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality;Other","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817880",NA,"as N","Nitrogen","Total","0.737","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C/results/933817880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-06-29 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.737,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality;Other","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817883",NA,"as N","Nitrogen","Dissolved","0.941","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931480-0629-4-C/results/933817883/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-06-29 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.941,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817889",NA,"as N","Nitrogen","Total","0.393","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C/results/933817889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-07-27 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.393,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817892",NA,"as N","Nitrogen","Dissolved","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931480-0727-4-C/results/933817892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-07-27 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817898",NA,"as N","Nitrogen","Total","0.783","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C/results/933817898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-08-25 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.783,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817901",NA,"as N","Nitrogen","Dissolved","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931480-0825-4-C/results/933817901/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-08-25 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817907",NA,"as N","Nitrogen","Total","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C/results/933817907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-09-20 18:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817910",NA,"as N","Nitrogen","Dissolved","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931480-0920-4-C/results/933817910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-09-20 18:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-29,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817916",NA,"as N","Nitrogen","Total","0.581","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C/results/933817916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-04-29 21:35:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.581,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-29,"14:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817919",NA,"as N","Nitrogen","Dissolved","0.594","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931481-0429-4-C/results/933817919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:36","STORET",7,NA,2021-04-29 21:35:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.594,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-25,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817925",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C/results/933817925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-05-25 18:05:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-05-25,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817928",NA,"as N","Nitrogen","Dissolved","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931481-0525-4-C/results/933817928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-05-25 18:05:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-29,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Other;Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817934",NA,"as N","Nitrogen","Total","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C/results/933817934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-06-29 18:10:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-29,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Other;Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817937",NA,"as N","Nitrogen","Dissolved","0.502","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931481-0629-4-C/results/933817937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-06-29 18:10:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.502,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-27,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817943",NA,"as N","Nitrogen","Total","0.375","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C/results/933817943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-07-27 18:05:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.375,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-27,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817946",NA,"as N","Nitrogen","Dissolved","0.509","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931481-0727-4-C/results/933817946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-07-27 18:05:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.509,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-25,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817952",NA,"as N","Nitrogen","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C/results/933817952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-08-25 18:35:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-25,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817955",NA,"as N","Nitrogen","Dissolved","0.796","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931481-0825-4-C/results/933817955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-08-25 18:35:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.796,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-20,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817959",NA,"as N","Nitrogen","Total","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C/results/933817959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-09-20 18:55:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-20,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817962",NA,"as N","Nitrogen","Dissolved","0.601","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931481-0920-4-C/results/933817962/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-09-20 18:55:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.601,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817968",NA,"as N","Nitrogen","Total","0.659","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C/results/933817968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-04-29 20:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.659,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817971",NA,"as N","Nitrogen","Dissolved","0.524","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931510-0429-4-C/results/933817971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-04-29 20:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.524,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817977",NA,"as N","Nitrogen","Total","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C/results/933817977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-05-25 17:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817980",NA,"as N","Nitrogen","Dissolved","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931510-0525-4-C/results/933817980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-05-25 17:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality;Other","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817986",NA,"as N","Nitrogen","Total","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C/results/933817986/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-06-29 17:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality;Other","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817989",NA,"as N","Nitrogen","Dissolved","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931510-0629-4-C/results/933817989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-06-29 17:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817995",NA,"as N","Nitrogen","Total","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C/results/933817995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-07-27 17:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933817998",NA,"as N","Nitrogen","Dissolved","0.636","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931510-0727-4-C/results/933817998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-07-27 17:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.636,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818004",NA,"as N","Nitrogen","Total","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C/results/933818004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-08-25 18:10:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818007",NA,"as N","Nitrogen","Dissolved","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931510-0825-4-C/results/933818007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-08-25 18:10:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818013",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C/results/933818013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-09-20 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818016",NA,"as N","Nitrogen","Dissolved","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931510-0920-4-C/results/933818016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-09-20 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818022",NA,"as N","Nitrogen","Total","0.623","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C/results/933818022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-04-29 21:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.623,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818025",NA,"as N","Nitrogen","Dissolved","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931513-0429-4-C/results/933818025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-04-29 21:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818031",NA,"as N","Nitrogen","Total","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C/results/933818031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-05-25 17:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818034",NA,"as N","Nitrogen","Dissolved","0.374","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931513-0525-4-C/results/933818034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-05-25 17:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.374,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality;Other","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818040",NA,"as N","Nitrogen","Total","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C/results/933818040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-06-29 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality;Other","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818043",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931513-0629-4-C/results/933818043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-06-29 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818049",NA,"as N","Nitrogen","Total","0.484","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C/results/933818049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:37","STORET",7,NA,2021-07-27 17:40:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.484,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818052",NA,"as N","Nitrogen","Dissolved","0.604","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931513-0727-4-C/results/933818052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-07-27 17:40:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.604,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818058",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C/results/933818058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-08-25 18:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818061",NA,"as N","Nitrogen","Dissolved","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931513-0825-4-C/results/933818061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-08-25 18:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818067",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C/results/933818067/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-09-20 18:40:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818070",NA,"as N","Nitrogen","Dissolved","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931513-0920-4-C/results/933818070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-09-20 18:40:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818076",NA,"as N","Nitrogen","Total","0.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C/results/933818076/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-04-29 20:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.72,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818079",NA,"as N","Nitrogen","Dissolved","0.914","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931545-0429-4-C/results/933818079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-04-29 20:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.914,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818085",NA,"as N","Nitrogen","Total","0.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C/results/933818085/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-05-25 17:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.49,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818088",NA,"as N","Nitrogen","Dissolved","0.593","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931545-0525-4-C/results/933818088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-05-25 17:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.593,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Other;Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818094",NA,"as N","Nitrogen","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C/results/933818094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-06-29 17:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Other;Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818097",NA,"as N","Nitrogen","Dissolved","1.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931545-0629-4-C/results/933818097/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-06-29 17:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.47,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818103",NA,"as N","Nitrogen","Total","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C/results/933818103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-07-27 17:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818106",NA,"as N","Nitrogen","Dissolved","0.539","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931545-0727-4-C/results/933818106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-07-27 17:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.539,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818112",NA,"as N","Nitrogen","Total","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C/results/933818112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-08-25 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818115",NA,"as N","Nitrogen","Dissolved","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931545-0825-4-C/results/933818115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-08-25 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818121",NA,"as N","Nitrogen","Total","0.525","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C/results/933818121/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-09-20 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.525,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818124",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931545-0920-4-C/results/933818124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-09-20 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818130",NA,"as N","Nitrogen","Total","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C/results/933818130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-04-29 21:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C","Sample-Routine","Water",NA,2021-04-29,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818133",NA,"as N","Nitrogen","Dissolved","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210428-5931645-0429-4-C/results/933818133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-04-29 21:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818139",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C/results/933818139/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-05-25 18:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818142",NA,"as N","Nitrogen","Dissolved","0.289","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210525-5931645-0525-4-C/results/933818142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-05-25 18:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.289,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Other;Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818148",NA,"as N","Nitrogen","Total","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C/results/933818148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-06-29 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C","Sample-Routine","Water",NA,2021-06-29,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Other;Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818151",NA,"as N","Nitrogen","Dissolved","0.712","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210629-5931645-0629-4-C/results/933818151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-06-29 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.712,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818157",NA,"as N","Nitrogen","Total","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C/results/933818157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-07-27 18:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818160",NA,"as N","Nitrogen","Dissolved","0.344","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931645-0727-4-C/results/933818160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-07-27 18:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.344,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818166",NA,"as N","Nitrogen","Total","0.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C/results/933818166/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-08-25 18:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.46,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C","Sample-Routine","Water",NA,2021-08-25,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818169",NA,"as N","Nitrogen","Dissolved","0.204","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210823-5931645-0825-4-C/results/933818169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-08-25 18:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.204,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818175",NA,"as N","Nitrogen","Total","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C/results/933818175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-09-20 19:10:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818178",NA,"as N","Nitrogen","Dissolved","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210920-5931645-0920-4-C/results/933818178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-09-20 19:10:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931650","FISH CK AB SCOFIELD RES",NA,NA,NA,NA,"39.7752400000","-111.1860000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818188",NA,"as N","Nitrogen","Total","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C/results/933818188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-06-22 17:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",39.77524,-111.186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C","Sample-Routine","Water",NA,2021-06-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931650","FISH CK AB SCOFIELD RES",NA,NA,NA,NA,"39.7752400000","-111.1860000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818192",NA,"as N","Nitrogen","Dissolved","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210621-5931650-0622-4-C/results/933818192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:38","STORET",7,NA,2021-06-22 17:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",39.77524,-111.186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C","Sample-Routine","Water",NA,2021-08-31,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931650","FISH CK AB SCOFIELD RES",NA,NA,NA,NA,"39.7752400000","-111.1860000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818219",NA,"as N","Nitrogen","Total","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C/results/933818219/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-08-31 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",39.77524,-111.186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C","Sample-Routine","Water",NA,2021-08-31,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931650","FISH CK AB SCOFIELD RES",NA,NA,NA,NA,"39.7752400000","-111.1860000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818223",NA,"as N","Nitrogen","Dissolved","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210830-5931650-0831-4-C/results/933818223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-08-31 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",39.77524,-111.186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-28,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818250",NA,"as N","Nitrogen","Total","0.881","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C/results/933818250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-06-28 22:15:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.881,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-28,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818254",NA,"as N","Nitrogen","Dissolved","0.917","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937850-0628-2-C/results/933818254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-06-28 22:15:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.917,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C","Sample-Routine","Water",NA,2021-06-28,"15:30:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818259",NA,"as N","Nitrogen","Total","0.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C/results/933818259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-06-28 22:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C","Sample-Routine","Water",NA,2021-06-28,"15:30:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818263",NA,"as N","Nitrogen","Dissolved","0.955","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937850-0628-29-C/results/933818263/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-06-28 22:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.955,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818290",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C/results/933818290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-08-17 23:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818294",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937850-0817-2-C/results/933818294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-08-17 23:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C","Sample-Routine","Water",NA,2021-08-17,"16:30:00","MST",NA,NA,NA,"Bottom","5.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818299",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C/results/933818299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-08-17 23:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C","Sample-Routine","Water",NA,2021-08-17,"16:30:00","MST",NA,NA,NA,"Bottom","5.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818303",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937850-0817-29-C/results/933818303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-08-17 23:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-28,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937852","MATT WARNER RES AB DAM Replicate of 5937850",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818330",NA,"as N","Nitrogen","Total","0.928","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C/results/933818330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-06-28 22:40:00,NA,"Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.928,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-28,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937852","MATT WARNER RES AB DAM Replicate of 5937850",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818334",NA,"as N","Nitrogen","Dissolved","0.913","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937852-0628-2-C/results/933818334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-06-28 22:40:00,NA,"Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.913,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-17,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937852","MATT WARNER RES AB DAM Replicate of 5937850",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818344",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C/results/933818344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:39","STORET",7,NA,2021-08-17 23:15:00,NA,"Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-17,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937852","MATT WARNER RES AB DAM Replicate of 5937850",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818348",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937852-0817-2-C/results/933818348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-08-17 23:15:00,NA,"Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937860","MATT WARNER RES W MIDLAKE 02",NA,NA,NA,NA,"40.7741000000","-109.3017000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818358",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C/results/933818358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-08-17 23:40:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.7741,-109.3017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937860","MATT WARNER RES W MIDLAKE 02",NA,NA,NA,NA,"40.7741000000","-109.3017000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818362",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937860-0817-2-C/results/933818362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-08-17 23:40:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.7741,-109.3017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-28,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818372",NA,"as N","Nitrogen","Total","0.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C/results/933818372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-06-28 21:55:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-28,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818376",NA,"as N","Nitrogen","Dissolved","0.875","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210628-5937870-0628-2-C/results/933818376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-06-28 21:55:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.875,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818386",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C/results/933818386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-08-18 00:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-17,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818390",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210817-5937870-0817-2-C/results/933818390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-08-18 00:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949855-0419-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-04-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service;National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818398","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949855-0419-4-C/results/933818398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-04-19 21:00:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818422","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C/results/933818422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-06-07 17:30:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818425",NA,"as N","Nitrogen","Dissolved","0.082","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949855-0607-4-C/results/933818425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-06-07 17:30:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.082,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818431","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C/results/933818431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-06-28 18:15:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818434","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949855-0628-4-C/results/933818434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:40","STORET",7,NA,2021-06-28 18:15:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949855-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818459","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949855-0719-4-C/results/933818459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-07-19 19:00:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949855-0809-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-09,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818468","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949855-0809-4-C/results/933818468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-08-10 00:00:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949855-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-20,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818494",NA,"as N","Nitrogen","Total","0.104","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949855-0920-4-C/results/933818494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-09-20 18:10:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.104,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949890-0419-4-C","Sample-Routine","Water",NA,2021-04-19,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service;National Park Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818520",NA,"as N","Nitrogen","Total","1.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949890-0419-4-C/results/933818520/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-04-19 22:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.72,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818544",NA,"as N","Nitrogen","Total","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C/results/933818544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-06-07 16:45:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818547",NA,"as N","Nitrogen","Dissolved","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949890-0607-4-C/results/933818547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-06-07 16:45:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818553",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C/results/933818553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-06-28 17:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818556",NA,"as N","Nitrogen","Dissolved","0.276","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949890-0628-4-C/results/933818556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-06-28 17:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.276,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949890-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818581",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949890-0719-4-C/results/933818581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-07-19 17:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949890-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818590",NA,"as N","Nitrogen","Total","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949890-0809-4-C/results/933818590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:41","STORET",7,NA,2021-08-09 18:05:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949890-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818616",NA,"as N","Nitrogen","Total","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949890-0920-4-C/results/933818616/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:42","STORET",7,NA,2021-09-20 19:10:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949892-0419-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-04-19,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service;National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818642",NA,"as N","Nitrogen","Total","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949892-0419-4-C/results/933818642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:42","STORET",7,NA,2021-04-19 22:15:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818666",NA,"as N","Nitrogen","Total","0.359","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C/results/933818666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:42","STORET",7,NA,2021-06-07 17:00:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.359,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818669",NA,"as N","Nitrogen","Dissolved","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949892-0607-4-C/results/933818669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:42","STORET",7,NA,2021-06-07 17:00:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-28,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818675",NA,"as N","Nitrogen","Total","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C/results/933818675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:42","STORET",7,NA,2021-06-28 17:15:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-28,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818678",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949892-0628-4-C/results/933818678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:42","STORET",7,NA,2021-06-28 17:15:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949892-0719-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-07-19,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818703",NA,"as N","Nitrogen","Total","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949892-0719-4-C/results/933818703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:43","STORET",7,NA,2021-07-19 17:40:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949892-0809-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-08-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818712",NA,"as N","Nitrogen","Total","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949892-0809-4-C/results/933818712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:43","STORET",7,NA,2021-08-09 18:30:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949892-0920-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-09-20,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818738",NA,"as N","Nitrogen","Total","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949892-0920-4-C/results/933818738/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:43","STORET",7,NA,2021-09-20 19:20:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949920-0419-4-C","Sample-Routine","Water",NA,2021-04-19,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service;National Park Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818764",NA,"as N","Nitrogen","Total","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949920-0419-4-C/results/933818764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:43","STORET",7,NA,2021-04-19 21:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818788",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C/results/933818788/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:43","STORET",7,NA,2021-06-07 18:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818791",NA,"as N","Nitrogen","Dissolved","0.394","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949920-0607-4-C/results/933818791/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:44","STORET",7,NA,2021-06-07 18:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.394,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818797",NA,"as N","Nitrogen","Total","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C/results/933818797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:44","STORET",7,NA,2021-06-28 18:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818800",NA,"as N","Nitrogen","Dissolved","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949920-0628-4-C/results/933818800/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:44","STORET",7,NA,2021-06-28 18:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949920-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818825",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949920-0719-4-C/results/933818825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:44","STORET",7,NA,2021-07-19 18:05:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949920-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818834",NA,"as N","Nitrogen","Total","0.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949920-0809-4-C/results/933818834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:44","STORET",7,NA,2021-08-09 19:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.22,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949920-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818860",NA,"as N","Nitrogen","Total","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949920-0920-4-C/results/933818860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:44","STORET",7,NA,2021-09-20 20:05:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210419-5949930-0419-4-C","Sample-Routine","Water",NA,2021-04-19,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service;National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818886",NA,"as N","Nitrogen","Total","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210419-5949930-0419-4-C/results/933818886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:44","STORET",7,NA,2021-04-19 20:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.31,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818910",NA,"as N","Nitrogen","Total","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C/results/933818910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:45","STORET",7,NA,2021-06-07 16:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818913",NA,"as N","Nitrogen","Dissolved","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210607-5949930-0607-4-C/results/933818913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:45","STORET",7,NA,2021-06-07 16:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818919",NA,"as N","Nitrogen","Total","0.123","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C/results/933818919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:45","STORET",7,NA,2021-06-28 16:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.123,"MG/L","Numeric","Pass","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C","Sample-Routine","Water",NA,2021-06-28,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818922",NA,"as N","Nitrogen","Dissolved","0.131","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210628-5949930-0628-4-C/results/933818922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:45","STORET",7,NA,2021-06-28 16:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.131,"MG/L","Numeric","Pass","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210719-5949930-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818947",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210719-5949930-0719-4-C/results/933818947/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:45","STORET",7,NA,2021-07-19 16:40:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210809-5949930-0809-4-C","Sample-Routine","Water",NA,2021-08-09,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818956",NA,"as N","Nitrogen","Total","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210809-5949930-0809-4-C/results/933818956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:45","STORET",7,NA,2021-08-09 16:35:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE210920-5949930-0920-4-C","Sample-Routine","Water",NA,2021-09-20,"10:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933818982",NA,"as N","Nitrogen","Total","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE210920-5949930-0920-4-C/results/933818982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:46","STORET",7,NA,2021-09-20 17:21:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C","Quality Control Sample-Field Blank","Water",NA,2021-06-18,"18:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819008","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C/results/933819008/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:46","STORET",7,NA,2021-06-19 01:30:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C","Quality Control Sample-Field Blank","Water",NA,2021-06-18,"18:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819012",NA,"as N","Nitrogen","Dissolved","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952422-0618-2-C/results/933819012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:46","STORET",7,NA,2021-06-19 01:30:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C","Quality Control Sample-Field Blank","Water",NA,2021-06-18,"18:35:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819017","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C/results/933819017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:46","STORET",7,NA,2021-06-19 01:35:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C","Quality Control Sample-Field Blank","Water",NA,2021-06-18,"18:35:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819021",NA,"as N","Nitrogen","Dissolved","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952422-0618-29-C/results/933819021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:46","STORET",7,NA,2021-06-19 01:35:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C","Quality Control Sample-Field Blank","Water",NA,2021-09-23,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819046","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C/results/933819046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:47","STORET",7,NA,2021-09-23 22:10:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C","Quality Control Sample-Field Blank","Water",NA,2021-09-23,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819050","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952422-0923-2-C/results/933819050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:47","STORET",7,NA,2021-09-23 22:10:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C","Quality Control Sample-Field Blank","Water",NA,2021-09-23,"15:15:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819055","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C/results/933819055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:47","STORET",7,NA,2021-09-23 22:15:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C","Quality Control Sample-Field Blank","Water",NA,2021-09-23,"15:15:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819059","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952422-0923-29-C/results/933819059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:47","STORET",7,NA,2021-09-23 22:15:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-16,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819185",NA,"as N","Nitrogen","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C/results/933819185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-06-16 16:35:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-16,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819189",NA,"as N","Nitrogen","Dissolved","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952560-0616-2-C/results/933819189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-06-16 16:35:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C","Sample-Routine","Water",NA,2021-06-16,"10:20:00","MST",NA,NA,NA,"Bottom","89","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819194",NA,"as N","Nitrogen","Total","0.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C/results/933819194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-06-16 17:20:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.43,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",89,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C","Sample-Routine","Water",NA,2021-06-16,"10:20:00","MST",NA,NA,NA,"Bottom","89","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819198",NA,"as N","Nitrogen","Dissolved","0.515","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952560-0616-29-C/results/933819198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-06-16 17:20:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.515,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",89,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-21,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819223",NA,"as N","Nitrogen","Total","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C/results/933819223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-09-21 18:55:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-21,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819227",NA,"as N","Nitrogen","Dissolved","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952560-0921-2-C/results/933819227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-09-21 18:55:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C","Sample-Routine","Water",NA,2021-09-21,"12:15:00","MST",NA,NA,NA,"Bottom","83.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819232",NA,"as N","Nitrogen","Total","0.457","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C/results/933819232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-09-21 19:15:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.457,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",83.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C","Sample-Routine","Water",NA,2021-09-21,"12:15:00","MST",NA,NA,NA,"Bottom","83.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819236",NA,"as N","Nitrogen","Dissolved","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952560-0921-29-C/results/933819236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-09-21 19:15:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",83.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-16,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819261",NA,"as N","Nitrogen","Total","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C/results/933819261/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-06-16 18:50:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-16,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819265",NA,"as N","Nitrogen","Dissolved","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952590-0616-2-C/results/933819265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-06-16 18:50:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C","Sample-Routine","Water",NA,2021-06-16,"12:10:00","MST",NA,NA,NA,"Bottom","48.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819270",NA,"as N","Nitrogen","Total","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C/results/933819270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-06-16 19:10:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",48.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C","Sample-Routine","Water",NA,2021-06-16,"12:10:00","MST",NA,NA,NA,"Bottom","48.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819274",NA,"as N","Nitrogen","Dissolved","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952590-0616-29-C/results/933819274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-06-16 19:10:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",48.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-21,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819299",NA,"as N","Nitrogen","Total","0.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C/results/933819299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-09-21 21:50:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.73,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-21,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819303",NA,"as N","Nitrogen","Dissolved","0.719","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952590-0921-2-C/results/933819303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-09-21 21:50:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.719,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C","Sample-Routine","Water",NA,2021-09-21,"15:15:00","MST",NA,NA,NA,"Bottom","45","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819308",NA,"as N","Nitrogen","Total","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C/results/933819308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:48","STORET",7,NA,2021-09-21 22:15:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",45,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C","Sample-Routine","Water",NA,2021-09-21,"15:15:00","MST",NA,NA,NA,"Bottom","45","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819312",NA,"as N","Nitrogen","Dissolved","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952590-0921-29-C/results/933819312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-09-21 22:15:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",45,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-18,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819336",NA,"as N","Nitrogen","Total","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C/results/933819336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-06-18 18:50:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-18,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819340",NA,"as N","Nitrogen","Dissolved","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952700-0618-2-C/results/933819340/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-06-18 18:50:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C","Sample-Routine","Water",NA,2021-06-18,"12:20:00","MST",NA,NA,NA,"Bottom","34.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819345",NA,"as N","Nitrogen","Total","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C/results/933819345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-06-18 19:20:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",34.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C","Sample-Routine","Water",NA,2021-06-18,"12:20:00","MST",NA,NA,NA,"Bottom","34.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819349",NA,"as N","Nitrogen","Dissolved","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952700-0618-29-C/results/933819349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-06-18 19:20:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",34.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-23,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819374",NA,"as N","Nitrogen","Total","0.473","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C/results/933819374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-09-23 21:40:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.473,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-23,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819378",NA,"as N","Nitrogen","Dissolved","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952700-0923-2-C/results/933819378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-09-23 21:40:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C","Sample-Routine","Water",NA,2021-09-23,"14:50:00","MST",NA,NA,NA,"Bottom","29","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819383",NA,"as N","Nitrogen","Total","0.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C/results/933819383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-09-23 21:50:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.68,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",29,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C","Sample-Routine","Water",NA,2021-09-23,"14:50:00","MST",NA,NA,NA,"Bottom","29","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819387",NA,"as N","Nitrogen","Dissolved","0.609","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952700-0923-29-C/results/933819387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-09-23 21:50:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.609,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",29,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C","Sample-Routine","Water",NA,2021-06-18,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819412",NA,"as N","Nitrogen","Total","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C/results/933819412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-06-18 19:30:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C","Sample-Routine","Water",NA,2021-06-18,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819416",NA,"as N","Nitrogen","Dissolved","0.907","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952740-0618-4-C/results/933819416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-06-18 19:30:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.907,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819441",NA,"as N","Nitrogen","Total","0.608","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C/results/933819441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-09-23 22:50:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.608,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819445",NA,"as N","Nitrogen","Dissolved","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952740-0923-4-C/results/933819445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-09-23 22:50:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-17,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819470",NA,"as N","Nitrogen","Total","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C/results/933819470/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-06-17 16:00:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-17,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819474",NA,"as N","Nitrogen","Dissolved","0.579","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952770-0617-2-C/results/933819474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:49","STORET",7,NA,2021-06-17 16:00:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.579,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C","Sample-Routine","Water",NA,2021-06-17,"09:30:00","MST",NA,NA,NA,"Bottom","61.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819479",NA,"as N","Nitrogen","Total","0.465","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C/results/933819479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-06-17 16:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.465,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",61.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C","Sample-Routine","Water",NA,2021-06-17,"09:30:00","MST",NA,NA,NA,"Bottom","61.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819483",NA,"as N","Nitrogen","Dissolved","0.536","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952770-0617-29-C/results/933819483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-06-17 16:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.536,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",61.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-23,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819508",NA,"as N","Nitrogen","Total","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C/results/933819508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-09-23 16:55:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-23,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819512",NA,"as N","Nitrogen","Dissolved","0.666","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952770-0923-2-C/results/933819512/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-09-23 16:55:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.666,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C","Sample-Routine","Water",NA,2021-09-23,"10:05:00","MST",NA,NA,NA,"Bottom","56.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819517",NA,"as N","Nitrogen","Total","0.648","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C/results/933819517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-09-23 17:05:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.648,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",56.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C","Sample-Routine","Water",NA,2021-09-23,"10:05:00","MST",NA,NA,NA,"Bottom","56.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819521",NA,"as N","Nitrogen","Dissolved","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952770-0923-29-C/results/933819521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-09-23 17:05:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",56.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-17,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819546",NA,"as N","Nitrogen","Total","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C/results/933819546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-06-17 21:45:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-06-17,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819550",NA,"as N","Nitrogen","Dissolved","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952910-0617-2-C/results/933819550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-06-17 21:45:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C","Sample-Routine","Water",NA,2021-06-17,"15:20:00","MST",NA,NA,NA,"Bottom","40.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819555",NA,"as N","Nitrogen","Total","0.474","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C/results/933819555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-06-17 22:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.474,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",40.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C","Sample-Routine","Water",NA,2021-06-17,"15:20:00","MST",NA,NA,NA,"Bottom","40.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819559",NA,"as N","Nitrogen","Dissolved","0.629","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210615-5952910-0617-29-C/results/933819559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-06-17 22:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.629,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",40.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-22,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819584",NA,"as N","Nitrogen","Total","0.842","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C/results/933819584/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-09-22 23:15:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.842,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-09-22,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819588",NA,"as N","Nitrogen","Dissolved","0.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952910-0922-2-C/results/933819588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-09-22 23:15:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.72,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C","Sample-Routine","Water",NA,2021-09-22,"16:20:00","MST",NA,NA,NA,"Bottom","34","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819593",NA,"as N","Nitrogen","Total","0.695","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C/results/933819593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-09-22 23:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.695,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",34,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C","Sample-Routine","Water",NA,2021-09-22,"16:20:00","MST",NA,NA,NA,"Bottom","34","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819597",NA,"as N","Nitrogen","Dissolved","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP210920-5952910-0922-29-C/results/933819597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-09-22 23:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",34,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-05,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5953860","WIDE HOLLOW RES AB DAM 01",NA,NA,NA,NA,"37.7852700000","-111.6349000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819624",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C/results/933819624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:50","STORET",7,NA,2021-08-05 16:10:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.7852700000","-111.6349000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",37.78527,-111.6349,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-05,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5953860","WIDE HOLLOW RES AB DAM 01",NA,NA,NA,NA,"37.7852700000","-111.6349000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819628",NA,"as N","Nitrogen","Dissolved","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5953860-0805-2-C/results/933819628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-08-05 16:10:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.7852700000","-111.6349000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",37.78527,-111.6349,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-04,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5954520","LOWER BOWNS RESERVOIR",NA,NA,NA,NA,"38.1085900000","-111.2698900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819655",NA,"as N","Nitrogen","Total","0.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C/results/933819655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-08-04 21:40:00,NA,"Lake",NA,"14070003",NA,NA,NA,NA,"38.1085900000","-111.2698900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.49,"MG/L","Numeric","Not Reviewed","Uncensored",38.10859,-111.26989,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-08-04,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5954520","LOWER BOWNS RESERVOIR",NA,NA,NA,NA,"38.1085900000","-111.2698900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819659",NA,"as N","Nitrogen","Dissolved","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5954520-0804-2-C/results/933819659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-08-04 21:40:00,NA,"Lake",NA,"14070003",NA,NA,NA,NA,"38.1085900000","-111.2698900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",38.10859,-111.26989,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C","Sample-Routine","Water",NA,2021-08-04,"14:55:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5954520","LOWER BOWNS RESERVOIR",NA,NA,NA,NA,"38.1085900000","-111.2698900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819664",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C/results/933819664/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-08-04 21:55:00,NA,"Lake",NA,"14070003",NA,NA,NA,NA,"38.1085900000","-111.2698900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",38.10859,-111.26989,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C","Sample-Routine","Water",NA,2021-08-04,"14:55:00","MST",NA,NA,NA,"Bottom","5.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5954520","LOWER BOWNS RESERVOIR",NA,NA,NA,NA,"38.1085900000","-111.2698900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819668",NA,"as N","Nitrogen","Dissolved","0.353","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES210802-5954520-0804-29-C/results/933819668/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-08-04 21:55:00,NA,"Lake",NA,"14070003",NA,NA,NA,NA,"38.1085900000","-111.2698900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.353,"MG/L","Numeric","Not Reviewed","Uncensored",38.10859,-111.26989,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-5984855-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819692",NA,"as N","Nitrogen","Total","3.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-5984855-0405-4-C/results/933819692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-04-05 16:45:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.96,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210405-5984855-0405-4-C","Sample-Routine","Water",NA,2021-04-05,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819695",NA,"as N","Nitrogen","Dissolved","3.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210405-5984855-0405-4-C/results/933819695/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-04-05 16:45:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-5984855-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819719",NA,"as N","Nitrogen","Total","6.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-5984855-0517-4-C/results/933819719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-05-17 16:15:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.78,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210503-5984855-0517-4-C","Sample-Routine","Water",NA,2021-05-17,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819722",NA,"as N","Nitrogen","Dissolved","5.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210503-5984855-0517-4-C/results/933819722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-05-17 16:15:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.79,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-5984855-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819729",NA,"as N","Nitrogen","Total","7.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-5984855-0607-4-C/results/933819729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-06-07 16:15:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210607-5984855-0607-4-C","Sample-Routine","Water",NA,2021-06-07,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819732",NA,"as N","Nitrogen","Dissolved","5.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210607-5984855-0607-4-C/results/933819732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-06-07 16:15:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-5984855-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819756",NA,"as N","Nitrogen","Total","8.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-5984855-0719-4-C/results/933819756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-07-19 16:35:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210719-5984855-0719-4-C","Sample-Routine","Water",NA,2021-07-19,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819759",NA,"as N","Nitrogen","Dissolved","8.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210719-5984855-0719-4-C/results/933819759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-07-19 16:35:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-5984855-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819766",NA,"as N","Nitrogen","Total","9.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-5984855-0810-4-C/results/933819766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-08-10 15:00:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210809-5984855-0810-4-C","Sample-Routine","Water",NA,2021-08-10,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819769",NA,"as N","Nitrogen","Dissolved","8.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210809-5984855-0810-4-C/results/933819769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:51","STORET",7,NA,2021-08-10 15:00:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-5984855-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"08:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819792",NA,"as N","Nitrogen","Total","11.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-5984855-0921-4-C/results/933819792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-09-21 15:20:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI210920-5984855-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"08:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5984855","WILLARD PERRY WWTP FACILITY",NA,NA,NA,NA,"41.4269200000","-112.0622100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819795",NA,"as N","Nitrogen","Dissolved","10.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI210920-5984855-0921-4-C/results/933819795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-09-21 15:20:00,NA,"Waste Sewer",NA,"16010204",NA,NA,NA,NA,"41.4269200000","-112.0622100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.42692,-112.06221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-27,"11:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819803","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C/results/933819803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-05-27 18:18:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-27,"11:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819806","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0527-4-C/results/933819806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-05-27 18:18:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-03,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819832","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C/results/933819832/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-06-03 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-03,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819835","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0603-4-C/results/933819835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-06-03 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-18,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819861","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C/results/933819861/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-06-18 16:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-18,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819864","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0618-4-C/results/933819864/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-06-18 16:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-25,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819890","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C/results/933819890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-06-25 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-06-25,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819893","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0625-4-C/results/933819893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-06-25 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-02,"08:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819919","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C/results/933819919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-07-02 15:12:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-02,"08:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819922","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0702-4-C/results/933819922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:52","STORET",7,NA,2021-07-02 15:12:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-09,"08:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819948","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C/results/933819948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-07-09 15:28:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-09,"08:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819951","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0709-4-C/results/933819951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-07-09 15:28:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819977","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C/results/933819977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-07-16 17:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933819980",NA,"as N","Nitrogen","Dissolved","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0716-4-C/results/933819980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-07-16 17:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0730-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-30,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820006","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0730-4-C/results/933820006/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-07-30 18:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-13,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820014","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C/results/933820014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-08-13 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-08-13,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820017","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0813-4-C/results/933820017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-08-13 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-03,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820043",NA,"as N","Nitrogen","Total","0.13","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C/results/933820043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-09-03 15:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.13,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-03,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820046","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0903-4-C/results/933820046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-09-03 15:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-10,"13:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820072","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C/results/933820072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-09-10 20:26:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-10,"13:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820075",NA,"as N","Nitrogen","Dissolved","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0910-4-C/results/933820075/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:53","STORET",7,NA,2021-09-10 20:26:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-17,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820100",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C/results/933820100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-09-17 19:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-17,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820103",NA,"as N","Nitrogen","Dissolved","0.086","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0917-4-C/results/933820103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-09-17 19:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.086,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-23,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820128","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C/results/933820128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-09-23 20:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-23,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820131",NA,"as N","Nitrogen","Dissolved","0.505","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-0923-4-C/results/933820131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-09-23 20:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.505,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994520-0502-4-C","Sample-Routine","Water",NA,2021-05-02,"10:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994520","LAST CHANCE AT BURNING HILLS RD XING",NA,NA,NA,NA,"37.1841500000","-111.3684900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820155",NA,"as N","Nitrogen","Total","0.106","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994520-0502-4-C/results/933820155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-05-02 17:09:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.106,"MG/L","Numeric","Pass","Uncensored",37.18415,-111.36849,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994520-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"08:39:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994520","LAST CHANCE AT BURNING HILLS RD XING",NA,NA,NA,NA,"37.1841500000","-111.3684900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820161",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994520-0610-4-C/results/933820161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-06-10 15:39:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",37.18415,-111.36849,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994520-0903-4-C","Sample-Routine","Water",NA,2021-09-03,"18:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994520","LAST CHANCE AT BURNING HILLS RD XING",NA,NA,NA,NA,"37.1841500000","-111.3684900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820167",NA,"as N","Nitrogen","Total","0.715","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994520-0903-4-C/results/933820167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-09-04 01:40:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.715,"MG/L","Numeric","Not Reviewed","Uncensored",37.18415,-111.36849,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C","Sample-Routine","Water",NA,2021-05-02,"11:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820173",NA,"as N","Nitrogen","Total","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C/results/933820173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-05-02 18:57:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C","Sample-Routine","Water",NA,2021-05-02,"11:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820176",NA,"as N","Nitrogen","Dissolved","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994530-0502-4-C/results/933820176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-05-02 18:57:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"10:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820199",NA,"as N","Nitrogen","Total","97.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C/results/933820199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-06-10 17:29:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",97.2,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"10:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820202",NA,"as N","Nitrogen","Dissolved","97.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994530-0610-4-C/results/933820202/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-06-10 17:29:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",97.1,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C","Sample-Routine","Water",NA,2021-07-01,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820225",NA,"as N","Nitrogen","Total","18.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C/results/933820225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-07-01 16:30:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.2,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C","Sample-Routine","Water",NA,2021-07-01,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820228",NA,"as N","Nitrogen","Dissolved","18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-5994530-0701-4-C/results/933820228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:54","STORET",7,NA,2021-07-01 16:30:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C","Sample-Routine","Water",NA,2021-08-22,"06:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820251",NA,"as N","Nitrogen","Total","365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C/results/933820251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-08-22 13:38:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",365,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C","Sample-Routine","Water",NA,2021-08-22,"06:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820254",NA,"as N","Nitrogen","Dissolved","4.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-5994530-0822-4-C/results/933820254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-08-22 13:38:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.44,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C","Sample-Routine","Water",NA,2021-09-04,"07:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820277",NA,"as N","Nitrogen","Total","2.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C/results/933820277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-09-04 14:29:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.83,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C","Sample-Routine","Water",NA,2021-09-04,"07:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820280",NA,"as N","Nitrogen","Dissolved","3.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994530-0904-4-C/results/933820280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-09-04 14:29:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.7,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994550-0502-4-C","Sample-Routine","Water",NA,2021-05-02,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820303",NA,"as N","Nitrogen","Total","0.088","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994550-0502-4-C/results/933820303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-05-02 22:10:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.088,"MG/L","Numeric","Pass","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994550-0610-4-C","Sample-Routine","Water",NA,2021-06-10,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820309",NA,"as N","Nitrogen","Total","0.164","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994550-0610-4-C/results/933820309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-06-10 20:10:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.164,"MG/L","Numeric","Pass","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-5994550-0701-4-C","Sample-Routine","Water",NA,2021-07-01,"11:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820315",NA,"as N","Nitrogen","Total","0.101","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-5994550-0701-4-C/results/933820315/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-07-01 18:14:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.101,"MG/L","Numeric","Pass","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-5994550-0822-4-C","Sample-Routine","Water",NA,2021-08-22,"08:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820321",NA,"as N","Nitrogen","Total","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-5994550-0822-4-C/results/933820321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-08-22 15:59:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994550-0904-4-C","Sample-Routine","Water",NA,2021-09-04,"09:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820327",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994550-0904-4-C/results/933820327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-09-04 16:34:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210501-5994650-0501-4-C","Sample-Routine","Water",NA,2021-05-01,"08:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820333","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210501-5994650-0501-4-C/results/933820333/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-05-01 15:48:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210609-5994650-0609-4-C","Sample-Routine","Water",NA,2021-06-09,"08:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820339",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210609-5994650-0609-4-C/results/933820339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-06-09 15:20:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210701-5994650-0701-4-C","Sample-Routine","Water",NA,2021-07-01,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820345",NA,"as N","Nitrogen","Total","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210701-5994650-0701-4-C/results/933820345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-07-01 21:15:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-5994650-0822-4-C","Sample-Routine","Water",NA,2021-08-22,"10:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820351",NA,"as N","Nitrogen","Total","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-5994650-0822-4-C/results/933820351/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-08-22 17:52:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-5994650-0904-4-C","Sample-Routine","Water",NA,2021-09-04,"11:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820357",NA,"as N","Nitrogen","Total","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-5994650-0904-4-C/results/933820357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-09-04 18:31:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C","Quality Control Sample-Field Blank","Water",NA,2021-04-23,"17:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820367","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C/results/933820367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-04-24 00:50:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C","Quality Control Sample-Field Blank","Water",NA,2021-04-23,"17:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820370","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210423-5995202-0423-4-C/results/933820370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:55","STORET",7,NA,2021-04-24 00:50:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C","Quality Control Sample-Field Blank","Water",NA,2021-05-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820400","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C/results/933820400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:56","STORET",7,NA,2021-05-10 19:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C","Quality Control Sample-Field Blank","Water",NA,2021-05-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820403","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210503-5995202-0510-4-C/results/933820403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:56","STORET",7,NA,2021-05-10 19:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C","Quality Control Sample-Field Blank","Water",NA,2021-06-21,"17:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820417","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C/results/933820417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:56","STORET",7,NA,2021-06-22 00:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C","Quality Control Sample-Field Blank","Water",NA,2021-06-21,"17:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820420","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210619-5995202-0621-4-C/results/933820420/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:56","STORET",7,NA,2021-06-22 00:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C","Quality Control Sample-Field Blank","Water",NA,2021-07-28,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820450","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C/results/933820450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:56","STORET",7,NA,2021-07-28 22:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C","Quality Control Sample-Field Blank","Water",NA,2021-07-28,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820453","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210706-5995202-0728-4-C/results/933820453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:56","STORET",7,NA,2021-07-28 22:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C","Quality Control Sample-Field Blank","Water",NA,2021-08-26,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820483","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C/results/933820483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:56","STORET",7,NA,2021-08-26 23:50:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C","Quality Control Sample-Field Blank","Water",NA,2021-08-26,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820486","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210826-5995202-0826-4-C/results/933820486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:56","STORET",7,NA,2021-08-26 23:50:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C","Quality Control Sample-Field Blank","Water",NA,2021-09-10,"18:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820516","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C/results/933820516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-09-11 01:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C","Quality Control Sample-Field Blank","Water",NA,2021-09-10,"18:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820519","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL210905-5995202-0910-4-C/results/933820519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-09-11 01:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C","Sample-Routine","Water",NA,2021-04-08,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820533",NA,"as N","Nitrogen","Total","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C/results/933820533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-04-08 17:57:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C","Sample-Routine","Water",NA,2021-04-08,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820536",NA,"as N","Nitrogen","Dissolved","0.106","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210408-5995700-0408-4-C/results/933820536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-04-08 17:57:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.106,"MG/L","Numeric","Pass","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820566",NA,"as N","Nitrogen","Total","0.141","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-24,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C/results/933820566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-05-10 17:45:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.141,"MG/L","Numeric","Pass","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820569",NA,"as N","Nitrogen","Dissolved","0.174","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210510-5995700-0510-4-C/results/933820569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-05-10 17:45:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.174,"MG/L","Numeric","Pass","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820583",NA,"as N","Nitrogen","Total","0.751","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C/results/933820583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-06-01 17:35:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.751,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C","Sample-Routine","Water",NA,2021-06-01,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820586",NA,"as N","Nitrogen","Dissolved","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210601-5995700-0601-4-C/results/933820586/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-06-01 17:35:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"10:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820600",NA,"as N","Nitrogen","Total","0.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C/results/933820600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-07-26 17:47:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.56,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"10:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820603",NA,"as N","Nitrogen","Dissolved","0.517","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210726-5995700-0726-4-C/results/933820603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-07-26 17:47:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.517,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C","Sample-Routine","Water",NA,2021-08-27,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820633",NA,"as N","Nitrogen","Total","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C/results/933820633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-08-27 17:45:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C","Sample-Routine","Water",NA,2021-08-27,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820636",NA,"as N","Nitrogen","Dissolved","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210827-5995700-0827-4-C/results/933820636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-08-27 17:45:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C","Quality Control Sample-Field Blank","Water",NA,2021-08-23,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820659",NA,"as N","Nitrogen","Total","0.117","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C/results/933820659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-08-23 16:25:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.117,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C","Quality Control Sample-Field Blank","Water",NA,2021-08-23,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820662","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210822-4951766-0823-4-C/results/933820662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:57","STORET",7,NA,2021-08-23 16:25:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C","Quality Control Sample-Field Blank","Water",NA,2021-04-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4957002","BLM Moab Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820688","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C/results/933820688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-04-14 22:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C","Quality Control Sample-Field Blank","Water",NA,2021-04-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4957002","BLM Moab Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820691","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB210407-4957002-0414-4-C/results/933820691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-04-14 22:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-22,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820698","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C/results/933820698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-09-22 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-09-22,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820701","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH210922-4990006-0922-4-C/results/933820701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-09-22 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-27,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820727","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C/results/933820727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-07-28 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-07-27,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820730",NA,"as N","Nitrogen","Dissolved","0.091","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK210723-5931467-0727-4-C/results/933820730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-07-28 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.091,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-26,"10:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820737","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C/results/933820737/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-05-26 17:43:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-05-26,"10:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820740","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR210526-5919942-0526-4-C/results/933820740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-05-26 17:43:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C","Quality Control Sample-Field Blank","Water",NA,2021-09-04,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820746",NA,"as N","Nitrogen","Total","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C/results/933820746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-09-05 00:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C","Quality Control Sample-Field Blank","Water",NA,2021-09-04,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-933820749",NA,"as N","Nitrogen","Dissolved","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE210903-4951766-0904-4-C/results/933820749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-30T14:18:58","STORET",7,NA,2021-09-05 00:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926203-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146924",NA,"as N","Nitrogen","Total","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926203-0614-4-C/results/934146924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926260-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926260","HUFF CK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9630100000","-111.2349100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146927",NA,"as N","Nitrogen","Total","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926260-0614-4-C/results/934146927/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",40.96301,-111.23491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926290-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"11:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146930",NA,"as N","Nitrogen","Total","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926290-0614-4-C/results/934146930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 18:48:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926350-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"15:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146933",NA,"as N","Nitrogen","Total","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926350-0614-4-C/results/934146933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 22:51:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926352-0614-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-06-14,"15:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146936",NA,"as N","Nitrogen","Total","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926352-0614-4-C/results/934146936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 22:51:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926355-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"13:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146939",NA,"as N","Nitrogen","Total","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926355-0614-4-C/results/934146939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 20:33:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926360-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146942",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926360-0614-4-C/results/934146942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926361-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146945",NA,"as N","Nitrogen","Total","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926361-0614-4-C/results/934146945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 21:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926363-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"14:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146948",NA,"as N","Nitrogen","Total","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926363-0614-4-C/results/934146948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 21:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926370-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"09:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146951",NA,"as N","Nitrogen","Total","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926370-0614-4-C/results/934146951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 16:36:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926380-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"08:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146954",NA,"as N","Nitrogen","Total","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926380-0614-4-C/results/934146954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 15:58:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK210614-4926390-0614-4-C","Sample-Routine","Water",NA,2021-06-14,"10:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;305","Targeted;Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934146957",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK210614-4926390-0614-4-C/results/934146957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T10:54:35","STORET",7,NA,2021-06-14 17:21:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342015",NA,"as N","Nitrogen","Total","0.181","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C/results/934342015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:14","STORET",7,NA,2021-09-23 17:40:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.181,"MG/L","Numeric","Pass","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C","Sample-Routine","Water",NA,2021-09-23,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995700","SQUARE TOWER SPRING",NA,NA,NA,NA,"37.3855500000","-109.0812200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342018",NA,"as N","Nitrogen","Dissolved","0.196","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN210923-5995700-0923-4-C/results/934342018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:14","STORET",7,NA,2021-09-23 17:40:00,NA,"Spring",NA,"14080202",NA,NA,NA,NA,"37.3855500000","-109.0812200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.196,"MG/L","Numeric","Pass","Uncensored",37.38555,-109.08122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342768",NA,"as N","Nitrogen","Total","0.388","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C/results/934342768/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:22","STORET",7,NA,2021-09-22 16:28:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.388,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342771",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4930010-0922-4-C/results/934342771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:22","STORET",7,NA,2021-09-22 16:28:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C","Sample-Routine","Water",NA,2021-09-24,"14:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342801",NA,"as N","Nitrogen","Total","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C/results/934342801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:22","STORET",7,NA,2021-09-24 21:17:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C","Sample-Routine","Water",NA,2021-09-24,"14:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342804",NA,"as N","Nitrogen","Dissolved","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4930150-0924-4-C/results/934342804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:22","STORET",7,NA,2021-09-24 21:17:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"07:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342834",NA,"as N","Nitrogen","Total","0.491","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C/results/934342834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:22","STORET",7,NA,2021-09-22 14:58:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.491,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"07:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342837",NA,"as N","Nitrogen","Dissolved","0.518","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4952380-0922-4-C/results/934342837/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:22","STORET",7,NA,2021-09-22 14:58:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.518,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342867",NA,"as N","Nitrogen","Total","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C/results/934342867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:23","STORET",7,NA,2021-09-22 16:52:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"09:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342870",NA,"as N","Nitrogen","Dissolved","0.584","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4952400-0922-4-C/results/934342870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:23","STORET",7,NA,2021-09-22 16:52:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.584,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C","Sample-Routine","Water",NA,2021-09-24,"16:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342900",NA,"as N","Nitrogen","Total","0.654","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C/results/934342900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:23","STORET",7,NA,2021-09-24 23:12:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.654,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C","Sample-Routine","Water",NA,2021-09-24,"16:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302;306","Targeted;Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934342903",NA,"as N","Nitrogen","Dissolved","0.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCANR210922-4956290-0924-4-C/results/934342903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:13:23","STORET",7,NA,2021-09-24 23:12:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N",NA,NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.73,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C","Sample-Routine","Water",NA,2021-07-12,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900352","Sage Creek about 275 meters below confl North Fork",NA,NA,NA,NA,"41.7678500000","-111.1716600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360074",NA,"as N","Nitrogen","Total","0.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C/results/934360074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:58","STORET",7,NA,2021-07-12 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7678500000","-111.1716600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.76785,-111.17166,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C","Sample-Routine","Water",NA,2021-07-12,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900352","Sage Creek about 275 meters below confl North Fork",NA,NA,NA,NA,"41.7678500000","-111.1716600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360077",NA,"as N","Nitrogen","Dissolved","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900352-0712-4-C/results/934360077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:58","STORET",7,NA,2021-07-12 18:10:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7678500000","-111.1716600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",41.76785,-111.17166,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900602-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900602","South Branch Otter Creek 300m ab road xing ab confluence with Middle Branch",NA,NA,NA,NA,"41.7058400000","-111.2365700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360109",NA,"as N","Nitrogen","Total","0.304","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900602-0922-4-C/results/934360109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-09-22 17:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7058400000","-111.2365700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.304,"MG/L","Numeric","Not Reviewed","Uncensored",41.70584,-111.23657,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900702-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900702","South Fork Sixmile Ck at 6575 feet elevation 450m ab road crossing",NA,NA,NA,NA,"41.8119600000","-111.1800000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360122",NA,"as N","Nitrogen","Total","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900702-0913-4-C/results/934360122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-09-13 18:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.8119600000","-111.1800000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",41.81196,-111.18,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900802-0805-4-C","Sample-Routine","Water",NA,2021-08-05,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900802","Old Canyon 1.33 miles ab confluence with Little Creek",NA,NA,NA,NA,"41.6462200000","-111.2811100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360135",NA,"as N","Nitrogen","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900802-0805-4-C/results/934360135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-08-05 18:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6462200000","-111.2811100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",41.64622,-111.28111,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900822-0804-4-C","Sample-Routine","Water",NA,2021-08-04,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900822","Bear River 1.3 miles south of confluence with Otter Creek",NA,NA,NA,NA,"41.7433300000","-111.0784400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360148",NA,"as N","Nitrogen","Total","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900822-0804-4-C/results/934360148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-08-04 20:40:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7433300000","-111.0784400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",41.74333,-111.07844,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900852-0804-4-C","Sample-Routine","Water",NA,2021-08-04,"11:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900852","Bear River 1 km NW of Kearn Ranch (Crawford Mountain Rd and Mine Rd)",NA,NA,NA,NA,"41.7012900000","-111.0968100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360161",NA,"as N","Nitrogen","Total","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900852-0804-4-C/results/934360161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-08-04 18:07:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7012900000","-111.0968100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.70129,-111.09681,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900872-0729-4-C","Sample-Routine","Water",NA,2021-07-29,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900872","Hayden Fork 0.5 km ab confluence with Whiskey Creek and east of SR 150 milepost 38.6",NA,NA,NA,NA,"40.7828900000","-110.8822100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360174","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900872-0729-4-C/results/934360174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-07-29 18:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.7828900000","-110.8822100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.78289,-110.88221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900902-0728-4-C","Sample-Routine","Water",NA,2021-07-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900902","Rabbit Creek ab Big Bend Spring at 6615 feet elevation",NA,NA,NA,NA,"41.8950400000","-111.1309900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360187",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900902-0728-4-C/results/934360187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-07-28 18:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.8950400000","-111.1309900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.89504,-111.13099,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900922-0727-4-C","Sample-Routine","Water",NA,2021-07-27,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900922","Bear River 1.7km (1.1) mile north of Weston Lane on Mine Rd and west 140 meters",NA,NA,NA,NA,"41.7341200000","-111.0667100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360200",NA,"as N","Nitrogen","Total","0.433","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900922-0727-4-C/results/934360200/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-07-27 18:15:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7341200000","-111.0667100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.433,"MG/L","Numeric","Not Reviewed","Uncensored",41.73412,-111.06671,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900952-0726-4-C","Sample-Routine","Water",NA,2021-07-26,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900952","Otter Creek BL South Branch confluence and 0.5 mile BL Otter Creek Road xing",NA,NA,NA,NA,"41.7108900000","-111.1800500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360213",NA,"as N","Nitrogen","Total","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-08-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900952-0726-4-C/results/934360213/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-07-26 20:45:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7108900000","-111.1800500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",41.71089,-111.18005,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933352","Current Creek 0.75 mile below Current Creek Dam spillway",NA,NA,NA,NA,"40.3247400000","-111.0464800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360226",NA,"as N","Nitrogen","Total","0.344","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C/results/934360226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-09-13 18:12:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.3247400000","-111.0464800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.344,"MG/L","Numeric","Not Reviewed","Uncensored",40.32474,-111.04648,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C","Sample-Routine","Water",NA,2021-09-13,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933352","Current Creek 0.75 mile below Current Creek Dam spillway",NA,NA,NA,NA,"40.3247400000","-111.0464800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360229",NA,"as N","Nitrogen","Dissolved","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933352-0913-4-C/results/934360229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:14:59","STORET",7,NA,2021-09-13 18:12:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.3247400000","-111.0464800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",40.32474,-111.04648,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4944252","Mammoth Creek 0.1 mile bl Mammoth Creek Road crossing",NA,NA,NA,NA,"37.6271100000","-112.6431000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360262",NA,"as N","Nitrogen","Total","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C/results/934360262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:00","STORET",7,NA,2021-06-02 16:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6271100000","-112.6431000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",37.62711,-112.6431,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C","Sample-Routine","Water",NA,2021-06-02,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4944252","Mammoth Creek 0.1 mile bl Mammoth Creek Road crossing",NA,NA,NA,NA,"37.6271100000","-112.6431000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360265",NA,"as N","Nitrogen","Dissolved","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944252-0602-4-C/results/934360265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:00","STORET",7,NA,2021-06-02 16:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6271100000","-112.6431000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",37.62711,-112.6431,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C","Sample-Routine","Water",NA,2021-06-03,"08:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4944302","Salina Creek bl confluence with Beaver Creek",NA,NA,NA,NA,"38.9348300000","-111.5384600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360297",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C/results/934360297/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:00","STORET",7,NA,2021-06-03 15:31:00,NA,"River/Stream",NA,"16030003",NA,NA,NA,NA,"38.9348300000","-111.5384600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",38.93483,-111.53846,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C","Sample-Routine","Water",NA,2021-06-03,"08:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4944302","Salina Creek bl confluence with Beaver Creek",NA,NA,NA,NA,"38.9348300000","-111.5384600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360300",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944302-0603-4-C/results/934360300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:00","STORET",7,NA,2021-06-03 15:31:00,NA,"River/Stream",NA,"16030003",NA,NA,NA,NA,"38.9348300000","-111.5384600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",38.93483,-111.53846,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4944352","South Fork Baker Canyon ab confluence with North Fork Baker Canyon",NA,NA,NA,NA,"38.2778500000","-112.5521600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360332",NA,"as N","Nitrogen","Total","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C/results/934360332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:00","STORET",7,NA,2021-09-22 18:00:00,NA,"River/Stream",NA,"16030007",NA,NA,NA,NA,"38.2778500000","-112.5521600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",1,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",38.27785,-112.55216,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C","Sample-Routine","Water",NA,2021-09-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4944352","South Fork Baker Canyon ab confluence with North Fork Baker Canyon",NA,NA,NA,NA,"38.2778500000","-112.5521600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360335",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4944352-0922-4-C/results/934360335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:00","STORET",7,NA,2021-09-22 18:00:00,NA,"River/Stream",NA,"16030007",NA,NA,NA,NA,"38.2778500000","-112.5521600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",1,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",38.27785,-112.55216,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955252","Johnson Creek headwaters above Cooley Gulch and ab Johnson Creek Rd xing",NA,NA,NA,NA,"37.8281400000","-109.4833400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360367","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C/results/934360367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:01","STORET",7,NA,2021-05-25 15:50:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.8281400000","-109.4833400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.82814,-109.48334,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C","Sample-Routine","Water",NA,2021-05-25,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955252","Johnson Creek headwaters above Cooley Gulch and ab Johnson Creek Rd xing",NA,NA,NA,NA,"37.8281400000","-109.4833400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360370","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955252-0525-4-C/results/934360370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:01","STORET",7,NA,2021-05-25 15:50:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.8281400000","-109.4833400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.82814,-109.48334,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C","Sample-Routine","Water",NA,2021-05-26,"10:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955312","Oak Creek 0.25 mile ab diversion in Capitol Reef National Park",NA,NA,NA,NA,"38.0840100000","-111.1409800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360402",NA,"as N","Nitrogen","Total","0.147","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C/results/934360402/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:01","STORET",7,NA,2021-05-26 17:09:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0840100000","-111.1409800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.147,"MG/L","Numeric","Pass","Uncensored",38.08401,-111.14098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C","Sample-Routine","Water",NA,2021-05-26,"10:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955312","Oak Creek 0.25 mile ab diversion in Capitol Reef National Park",NA,NA,NA,NA,"38.0840100000","-111.1409800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360405",NA,"as N","Nitrogen","Dissolved","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955312-0526-4-C/results/934360405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:01","STORET",7,NA,2021-05-26 17:09:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0840100000","-111.1409800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",38.08401,-111.14098,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C","Sample-Routine","Water",NA,2021-09-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4977052","Johnson Creek Left Hand Fork 0.4 mile bl Browns Canyon",NA,NA,NA,NA,"41.8873400000","-113.5314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360439",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C/results/934360439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:01","STORET",7,NA,2021-09-08 17:00:00,NA,"River/Stream",NA,"17040210",NA,NA,NA,NA,"41.8873400000","-113.5314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.88734,-113.53145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C","Sample-Routine","Water",NA,2021-09-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4977052","Johnson Creek Left Hand Fork 0.4 mile bl Browns Canyon",NA,NA,NA,NA,"41.8873400000","-113.5314500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360442",NA,"as N","Nitrogen","Dissolved","0.633","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4977052-0908-4-C/results/934360442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:01","STORET",7,NA,2021-09-08 17:00:00,NA,"River/Stream",NA,"17040210",NA,NA,NA,NA,"41.8873400000","-113.5314500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.633,"MG/L","Numeric","Not Reviewed","Uncensored",41.88734,-113.53145,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"09:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4999102","Nebo Creek 55 meters ab National Forest Boundary",NA,NA,NA,NA,"39.8694700000","-111.5856300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360473",NA,"as N","Nitrogen","Total","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C/results/934360473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:02","STORET",7,NA,2021-06-15 16:44:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"39.8694700000","-111.5856300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",39.86947,-111.58563,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"09:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4999102","Nebo Creek 55 meters ab National Forest Boundary",NA,NA,NA,NA,"39.8694700000","-111.5856300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360476",NA,"as N","Nitrogen","Dissolved","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999102-0615-4-C/results/934360476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:02","STORET",7,NA,2021-06-15 16:44:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"39.8694700000","-111.5856300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",39.86947,-111.58563,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C","Sample-Routine","Water",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4999152","Daniels Creek 0.75 mile bl Whiskey Spring picnic site",NA,NA,NA,NA,"40.4166300000","-111.3335700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360508",NA,"as N","Nitrogen","Total","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C/results/934360508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:02","STORET",7,NA,2021-09-15 17:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4166300000","-111.3335700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.41663,-111.33357,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C","Sample-Routine","Water",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4999152","Daniels Creek 0.75 mile bl Whiskey Spring picnic site",NA,NA,NA,NA,"40.4166300000","-111.3335700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360511",NA,"as N","Nitrogen","Dissolved","0.186","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999152-0915-4-C/results/934360511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:02","STORET",7,NA,2021-09-15 17:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4166300000","-111.3335700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Pass","Uncensored",40.41663,-111.33357,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4999202","Mill B South Fork 0.9 mile above Big Cottonwood Creek confluence",NA,NA,NA,NA,"40.6222000000","-111.7114000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360542",NA,"as N","Nitrogen","Total","0.156","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C/results/934360542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:02","STORET",7,NA,2021-07-15 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6222000000","-111.7114000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.156,"MG/L","Numeric","Pass","Uncensored",40.6222,-111.7114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C","Sample-Routine","Water",NA,2021-07-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4999202","Mill B South Fork 0.9 mile above Big Cottonwood Creek confluence",NA,NA,NA,NA,"40.6222000000","-111.7114000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-934360545",NA,"as N","Nitrogen","Dissolved","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999202-0715-4-C/results/934360545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-03-31T11:15:02","STORET",7,NA,2021-07-15 17:40:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6222000000","-111.7114000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",40.6222,-111.7114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995210-1007-4-C","Sample-Routine","Water",NA,2020-10-07,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213339",NA,"as N","Nitrogen","Total","15.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995210-1007-4-C/results/936213339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:27","STORET",7,NA,2020-10-07 22:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK201005-4995210-1007-4-C","Sample-Routine","Water",NA,2020-10-07,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213344",NA,"as N","Nitrogen","Dissolved","14.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2020-10-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK201005-4995210-1007-4-C/results/936213344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:27","STORET",7,NA,2020-10-07 22:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C","Sample-Routine","Water",NA,2021-03-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213372",NA,"as N","Nitrogen","Total","11.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C/results/936213372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:27","STORET",7,NA,2021-03-17 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C","Sample-Routine","Water",NA,2021-03-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213377",NA,"as N","Nitrogen","Dissolved","11.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210315-4995210-0317-4-C/results/936213377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:27","STORET",7,NA,2021-03-17 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213396",NA,"as N","Nitrogen","Total","16.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C/results/936213396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:27","STORET",7,NA,2021-05-10 21:00:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C","Sample-Routine","Water",NA,2021-05-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213401",NA,"as N","Nitrogen","Dissolved","16.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210510-4995250-0510-4-C/results/936213401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:27","STORET",7,NA,2021-05-10 21:00:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213430",NA,"as N","Nitrogen","Total","24.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C/results/936213430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:28","STORET",7,NA,2021-06-15 21:30:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",24.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C","Sample-Routine","Water",NA,2021-06-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213435",NA,"as N","Nitrogen","Dissolved","24.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210614-4995250-0615-4-C/results/936213435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:28","STORET",7,NA,2021-06-15 21:30:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",24.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C","Sample-Routine","Water",NA,2021-07-12,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213451",NA,"as N","Nitrogen","Total","17.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C/results/936213451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:28","STORET",7,NA,2021-07-12 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C","Sample-Routine","Water",NA,2021-07-12,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213456",NA,"as N","Nitrogen","Dissolved","17.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210712-4995210-0712-4-C/results/936213456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:28","STORET",7,NA,2021-07-12 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213484",NA,"as N","Nitrogen","Total","15.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C/results/936213484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:28","STORET",7,NA,2021-08-17 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C","Sample-Routine","Water",NA,2021-08-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213489",NA,"as N","Nitrogen","Dissolved","15.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210816-4995210-0817-4-C/results/936213489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:28","STORET",7,NA,2021-08-17 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C","Sample-Routine","Water",NA,2021-09-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213505",NA,"as N","Nitrogen","Total","18.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C/results/936213505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:28","STORET",7,NA,2021-09-15 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C","Sample-Routine","Water",NA,2021-09-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-936213510",NA,"as N","Nitrogen","Dissolved","18.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK210913-4995210-0915-4-C/results/936213510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-04-20T17:00:29","STORET",7,NA,2021-09-15 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"32","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1184S","Sample-Routine","Water",NA,2022-01-24,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-RARE - 1","RARE - 1",NA,NA,NA,NA,"37.5122083300","109.4942416700","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-937784278",NA,"as N","Ammonia","Unfiltered","0.811","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201184S/results/937784278/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-05-04T22:26:50","STORET",7,NA,2022-01-24 19:30:00,NA,"Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",811,"UG/L","Numeric","Not Reviewed","Uncensored",37.51220833,109.49424167,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"33","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1185Q","Quality Control Sample-Field Replicate","Water",NA,2022-01-24,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-RARE - 1","RARE - 1",NA,NA,NA,NA,"37.5122083300","109.4942416700","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-937784350",NA,"as N","Ammonia","Unfiltered","0.760","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201185Q/results/937784350/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-05-04T22:26:53","STORET",7,NA,2022-01-24 19:35:00,NA,"Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_replicate","Not Reviewed","WATER","AMMONIA",760,"UG/L","Numeric","Not Reviewed","Uncensored",37.51220833,109.49424167,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"34","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1186S","Sample-Routine","Water",NA,2022-04-05,"09:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-RARE - 1","RARE - 1",NA,NA,NA,NA,"37.5122083300","109.4942416700","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-937809567",NA,"as N","Ammonia","Unfiltered","0.961","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201186S/results/937809567/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-05-05T21:46:35","STORET",7,NA,2022-04-05 16:02:00,NA,"Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",961,"UG/L","Numeric","Not Reviewed","Uncensored",37.51220833,109.49424167,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"35","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1187S","Sample-Routine","Water",NA,2022-04-05,"13:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-WM_GWMW_W","white mesa ground water monitoring well; west",NA,NA,NA,NA,"37.4897350000","-109.5180720000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-937809639","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201187S/results/937809639/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-05-05T21:46:37","STORET",7,NA,2022-04-05 20:07:00,NA,"Well","monitoring well downgradient of White Mesa Uranium Mill, southwest","14080201",NA,NA,NA,NA,"37.4897350000","-109.5180720000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83","5491","ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.489735,-109.518072,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900552-0921-4-C","Sample-Routine","Water",NA,2021-09-21,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900552","Big Creek 100 meters below gaging station",NA,NA,NA,NA,"41.6104900000","-111.2539800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-939094801",NA,"as N","Nitrogen","Total","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900552-0921-4-C/results/939094801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-05-17T17:20:24","STORET",7,NA,2021-09-21 19:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6104900000","-111.2539800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",41.61049,-111.25398,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900652-0914-4-C","Sample-Routine","Water",NA,2021-09-14,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900652","South Branch Otter Creek 260m bl Otter Creek cutoff Rd xing",NA,NA,NA,NA,"41.7024000000","-111.2539400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-939094809",NA,"as N","Nitrogen","Total","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-09-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900652-0914-4-C/results/939094809/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-05-17T17:20:24","STORET",7,NA,2021-09-14 16:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7024000000","-111.2539400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",41.7024,-111.25394,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900742-0916-4-C","Sample-Routine","Water",NA,2021-09-16,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900742","Hayden Fork 0.5 mile ab Beaverview CG and east of SR 150 milepost 41.1",NA,NA,NA,NA,"40.8156700000","-110.8662700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-939094817",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900742-0916-4-C/results/939094817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-05-17T17:20:24","STORET",7,NA,2021-09-16 21:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8156700000","-110.8662700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",40.81567,-110.86627,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900772-0916-4-C","Sample-Routine","Water",NA,2021-09-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900772","Stillwater Fork 500 meters ab trailhead at Christmas Meadows Campground",NA,NA,NA,NA,"40.8195000000","-110.8022400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-939094825",NA,"as N","Nitrogen","Total","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900772-0916-4-C/results/939094825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-05-17T17:20:24","STORET",7,NA,2021-09-16 18:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8195000000","-110.8022400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.8195,-110.80224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"36","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202205191157:SR","Sample-Routine","Water",NA,2022-05-19,"11:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-942562323","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202205191157%3ASR/results/942562323/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2022-06-22T09:14:41","STORET",7,NA,2022-05-19 18:57:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2048","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202205191157:SR","Sample-Routine","Water",NA,2022-05-19,"11:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-942562325","Not Reported","as N","Nitrate","Total",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2022-06-22T09:14:41","STORET",7,NA,2022-05-19 18:57:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"37","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202205191409:SR","Sample-Routine","Water",NA,2022-05-19,"14:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-G4C","4 Corners",NA,NA,NA,NA,"40.2415300000","-109.8590500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-942562374","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-G4C%3A202205191409%3ASR/results/942562374/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2022-06-22T09:14:41","STORET",7,NA,2022-05-19 21:09:00,NA,"River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.24153,-109.85905,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2049","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202205191409:SR","Sample-Routine","Water",NA,2022-05-19,"14:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-G4C","4 Corners",NA,NA,NA,NA,"40.2415300000","-109.8590500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-942562376","Not Reported","as N","Nitrate","Total",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2022-06-22T09:14:41","STORET",7,NA,2022-05-19 21:09:00,NA,"River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.24153,-109.85905,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2050","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-UFD:202205231220:SR","Sample-Routine","Water",NA,2022-05-23,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-UFD","Ft. Duchesne",NA,NA,NA,NA,"40.3019500000","-109.8531500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-942562429","Not Reported","as N","Nitrate","Total",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2022-06-22T09:14:42","STORET",7,NA,2022-05-23 19:20:00,NA,"River/Stream","Uintah River at US 40 Bridge","14060003",NA,NA,NA,NA,"40.3019500000","-109.8531500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.30195,-109.85315,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"38","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-UFD:202205231220:SR","Sample-Routine","Water",NA,2022-05-23,"12:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-UFD","Ft. Duchesne",NA,NA,NA,NA,"40.3019500000","-109.8531500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-942562442","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202205231220%3ASR/results/942562442/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2022-06-22T09:14:42","STORET",7,NA,2022-05-23 19:20:00,NA,"River/Stream","Uintah River at US 40 Bridge","14060003",NA,NA,NA,NA,"40.3019500000","-109.8531500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.30195,-109.85315,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"39","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202205191128:SR","Sample-Routine","Water",NA,2022-05-19,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DDC","Duchesne River South of Randlett",NA,NA,NA,NA,"40.2158400000","-109.7838900000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-942562502","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202205191128%3ASR/results/942562502/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2022-06-22T09:14:42","STORET",7,NA,2022-05-19 18:28:00,NA,"River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.21584,-109.78389,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2051","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202205191128:SR","Sample-Routine","Water",NA,2022-05-19,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DDC","Duchesne River South of Randlett",NA,NA,NA,NA,"40.2158400000","-109.7838900000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-942562504","Not Reported","as N","Nitrate","Total",NA,NA,NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"Calculation","NTHRNUTE","Calculation",NA,NA,"ACZ Laboratories, Inc.",NA,NA,NA,NA,NA,NA,NA,"2022-06-22T09:14:42","STORET",7,NA,2022-05-19 18:28:00,NA,"River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"No Result Value","Non_QC","Not Reviewed","WATER","NITRATE",NA,NA,"ND or NA","Not Reviewed","Uncensored",40.21584,-109.78389,"N","Unknown","Not Reviewed","Not Reviewed","AS N","NonStandardized","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"40","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202205171545:SR","Sample-Routine","Water",NA,2022-05-17,"15:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-IDR","INDIAN CREEK",NA,NA,NA,NA,"40.1572222222","-110.4050000000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-943147982","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202205171545%3ASR/results/943147982/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2022-06-28T07:39:49","STORET",7,NA,2022-05-17 22:45:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.1572222222,-110.405,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"41","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-RKD:202205171417:SR","Sample-Routine","Water",NA,2022-05-17,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-RKD","Rock Creek",NA,NA,NA,NA,"40.3110798300","-110.4938520000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-943147993","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-RKD%3A202205171417%3ASR/results/943147993/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2022-06-28T07:39:49","STORET",7,NA,2022-05-17 21:17:00,NA,"River/Stream","Knights Diversion below 3rd bridge.","14060003",NA,NA,NA,NA,"40.3110798300","-110.4938520000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.31107983,-110.493852,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"42","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202205181011:SR","Sample-Routine","Water",NA,2022-05-18,"10:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WRB","Whiterocks River 2",NA,NA,NA,NA,"40.5331460000","-109.9237518300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-943148053","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202205181011%3ASR/results/943148053/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2022-06-28T07:39:50","STORET",7,NA,2022-05-18 17:11:00,NA,"River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.533146,-109.92375183,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1203","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994790-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994790","Utah Lake",NA,NA,NA,NA,"40.3609517430","-111.8985135820","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386647",NA,"as N","Nitrate","Total","0.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:37","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",100,"UG/L","Numeric","Not Reviewed","Uncensored",40.360951743,-111.898513582,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1204","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994790-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994790","Utah Lake",NA,NA,NA,NA,"40.3609517430","-111.8985135820","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386660",NA,"as N","Nitrate","Total","0.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:37","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",100,"UG/L","Numeric","Not Reviewed","Uncensored",40.360951743,-111.898513582,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1205","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994790-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994790","Utah Lake",NA,NA,NA,NA,"40.3609517430","-111.8985135820","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386673",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:37","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.360951743,-111.898513582,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1206","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994790-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994790","Utah Lake",NA,NA,NA,NA,"40.3609517430","-111.8985135820","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386686",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:37","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.360951743,-111.898513582,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1207","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994790-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994790","Utah Lake",NA,NA,NA,NA,"40.3609517430","-111.8985135820","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386699",NA,"as N","Nitrate","Total","0.074","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",74,"UG/L","Numeric","Not Reviewed","Uncensored",40.360951743,-111.898513582,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1208","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994790-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994790","Utah Lake",NA,NA,NA,NA,"40.3609517430","-111.8985135820","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386712",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.360951743,-111.898513582,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1209","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994730-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386725",NA,"as N","Nitrate","Total","0.936","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",936,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1210","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994730-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386738",NA,"as N","Nitrate","Total","0.984","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",984,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1211","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994730-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386751",NA,"as N","Nitrate","Total","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",331,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1212","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994730-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386764",NA,"as N","Nitrate","Total","0.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",100,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1213","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994730-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386777",NA,"as N","Nitrate","Total","0.105","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",105,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1214","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994730-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386790",NA,"as N","Nitrate","Total","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",214,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1215","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994730-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386803",NA,"as N","Nitrate","Total","0.138","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",138,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1216","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994730-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386816",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1217","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994730-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386829",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1218","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994730-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386842",NA,"as N","Nitrate","Total","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",340,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1219","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994730-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386861",NA,"as N","Nitrate","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1400,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1220","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994730-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386874",NA,"as N","Nitrate","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1010,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1221","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994600-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386900",NA,"as N","Nitrate","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:38","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1250,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1222","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994600-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386913",NA,"as N","Nitrate","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1250,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1223","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994600-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386926",NA,"as N","Nitrate","Total","0.875","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",875,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1224","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994600-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386939",NA,"as N","Nitrate","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1300,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1225","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994600-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386952",NA,"as N","Nitrate","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1320,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1226","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994600-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386965",NA,"as N","Nitrate","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1320,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1227","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994600-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386978",NA,"as N","Nitrate","Total","1.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1930,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1228","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994600-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943386991",NA,"as N","Nitrate","Total","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1510,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1229","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994600-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387004",NA,"as N","Nitrate","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1160,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1230","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994600-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387017",NA,"as N","Nitrate","Total","0.855","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",855,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1231","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994600-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387036",NA,"as N","Nitrate","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1390,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1232","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994600-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387049",NA,"as N","Nitrate","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1390,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1233","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994270-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387075",NA,"as N","Nitrate","Total","3.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3980,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1234","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994270-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387088",NA,"as N","Nitrate","Total","4.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4120,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1235","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994270-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387101",NA,"as N","Nitrate","Total","3.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3850,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1236","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994270-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387114",NA,"as N","Nitrate","Total","4.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4040,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1237","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994270-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387127",NA,"as N","Nitrate","Total","3.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3080,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1238","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994270-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387140",NA,"as N","Nitrate","Total","3.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3870,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1239","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994270-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387153",NA,"as N","Nitrate","Total","3.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3560,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1240","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994270-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387166",NA,"as N","Nitrate","Total","2.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2590,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1241","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994270-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387179",NA,"as N","Nitrate","Total","3.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3210,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1242","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994270-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387192",NA,"as N","Nitrate","Total","2.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2920,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1243","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994270-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387211",NA,"as N","Nitrate","Total","4.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4050,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1244","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994270-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387224",NA,"as N","Nitrate","Total","3.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3630,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1245","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994170-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387250",NA,"as N","Nitrate","Total","4.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4180,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1246","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994170-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387263",NA,"as N","Nitrate","Total","4.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4150,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1247","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994170-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387276",NA,"as N","Nitrate","Total","3.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3820,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1248","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994170-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387289",NA,"as N","Nitrate","Total","3.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3120,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1249","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994170-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387302",NA,"as N","Nitrate","Total","2.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2710,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1250","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994170-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387315",NA,"as N","Nitrate","Total","2.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2870,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1251","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994170-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387328",NA,"as N","Nitrate","Total","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2480,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1252","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994170-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387341",NA,"as N","Nitrate","Total","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1920,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1253","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994170-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387354",NA,"as N","Nitrate","Total","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1620,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1254","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994170-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387367",NA,"as N","Nitrate","Total","2.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2980,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1255","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994170-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387386",NA,"as N","Nitrate","Total","3.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3810,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1256","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994170-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387399",NA,"as N","Nitrate","Total","3.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3380,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1257","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994160-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387425",NA,"as N","Nitrate","Total","8.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8160,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1258","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994160-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387438",NA,"as N","Nitrate","Total","4.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4060,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1259","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994160-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387451",NA,"as N","Nitrate","Total","9.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9080,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1260","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994160-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387464",NA,"as N","Nitrate","Total","8.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8330,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1261","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994160-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387477",NA,"as N","Nitrate","Total","8.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8750,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1262","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994160-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387490",NA,"as N","Nitrate","Total","8.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8450,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1263","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994160-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387503",NA,"as N","Nitrate","Total","8.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8050,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1264","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994160-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387516",NA,"as N","Nitrate","Total","7.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7660,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1265","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994160-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387529",NA,"as N","Nitrate","Total","6.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6870,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1266","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994160-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387542",NA,"as N","Nitrate","Total","11.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11100,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1267","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994160-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387561",NA,"as N","Nitrate","Total","11.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11100,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1268","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994160-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387574",NA,"as N","Nitrate","Total","8.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8910,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1269","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994100-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387600",NA,"as N","Nitrate","Total","6.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6450,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1270","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994100-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387613",NA,"as N","Nitrate","Total","6.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6210,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1271","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994100-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387626",NA,"as N","Nitrate","Total","6.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6140,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1272","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994100-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387639",NA,"as N","Nitrate","Total","4.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4460,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1273","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994100-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387652",NA,"as N","Nitrate","Total","5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5000,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1274","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994100-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387665",NA,"as N","Nitrate","Total","4.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4400,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1275","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994100-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387678",NA,"as N","Nitrate","Total","3.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3610,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1276","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994100-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387691",NA,"as N","Nitrate","Total","3.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3530,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1277","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994100-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387704",NA,"as N","Nitrate","Total","3.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3470,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1278","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994100-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387717",NA,"as N","Nitrate","Total","5.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5030,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1279","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994100-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387736",NA,"as N","Nitrate","Total","6.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6940,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1280","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4994100-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387749",NA,"as N","Nitrate","Total","5.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5550,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1281","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4993580-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387775",NA,"as N","Nitrate","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1320,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1282","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4993580-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387788",NA,"as N","Nitrate","Total","0.931","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",931,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1283","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4993580-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387801",NA,"as N","Nitrate","Total","1.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1930,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1284","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4993580-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387814",NA,"as N","Nitrate","Total","0.427","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",427,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1285","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4993580-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387827",NA,"as N","Nitrate","Total","0.489","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",489,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1286","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4993580-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387840",NA,"as N","Nitrate","Total","0.102","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",102,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1287","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4993580-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387853",NA,"as N","Nitrate","Total","0.937","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",937,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1288","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4993580-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387866",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1289","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4993580-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387879",NA,"as N","Nitrate","Total","0.138","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",138,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1290","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4993580-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387892",NA,"as N","Nitrate","Total","0.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",650,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1291","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4993580-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387911",NA,"as N","Nitrate","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1040,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1292","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4993580-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387924",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1293","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992950-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387950",NA,"as N","Nitrate","Total","0.626","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",626,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1294","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992950-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387963",NA,"as N","Nitrate","Total","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",617,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1295","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992950-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387976",NA,"as N","Nitrate","Total","0.679","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",679,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1296","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992950-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943387989",NA,"as N","Nitrate","Total","0.125","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",125,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1297","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992950-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388002",NA,"as N","Nitrate","Total","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",287,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1298","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992950-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388015",NA,"as N","Nitrate","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",242,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1299","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992950-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388028",NA,"as N","Nitrate","Total","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",437,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1300","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992950-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388041",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1301","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992950-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388054",NA,"as N","Nitrate","Total","0.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",130,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1302","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992950-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388067",NA,"as N","Nitrate","Total","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",471,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1303","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992950-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388086",NA,"as N","Nitrate","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",600,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1304","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992950-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388099",NA,"as N","Nitrate","Total","0.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",620,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1305","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992880-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388125",NA,"as N","Nitrate","Total","4.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4810,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1306","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992880-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388138",NA,"as N","Nitrate","Total","3.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3870,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1307","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992880-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388151",NA,"as N","Nitrate","Total","3.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3980,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1308","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992880-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388164",NA,"as N","Nitrate","Total","2.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2370,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1309","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992880-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388177",NA,"as N","Nitrate","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1490,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1310","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992880-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388190",NA,"as N","Nitrate","Total","2.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2600,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1311","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992880-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388203",NA,"as N","Nitrate","Total","2.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2900,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1312","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992880-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388216",NA,"as N","Nitrate","Total","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1820,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1313","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992880-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388229",NA,"as N","Nitrate","Total","2.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2080,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1314","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992880-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388242",NA,"as N","Nitrate","Total","3.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3610,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1315","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992880-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388261",NA,"as N","Nitrate","Total","4.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4490,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1316","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992880-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388274",NA,"as N","Nitrate","Total","3.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3540,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1317","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992540-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388300",NA,"as N","Nitrate","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1650,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1318","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992540-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388313",NA,"as N","Nitrate","Total","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1900,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1319","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992540-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388326",NA,"as N","Nitrate","Total","2.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2250,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1320","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992540-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388339",NA,"as N","Nitrate","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1550,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1321","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992540-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388352",NA,"as N","Nitrate","Total","1.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1930,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1322","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992540-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388365",NA,"as N","Nitrate","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1430,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1323","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992540-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388378",NA,"as N","Nitrate","Total","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1590,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1324","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992540-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388391",NA,"as N","Nitrate","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1310,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1325","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992540-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388404",NA,"as N","Nitrate","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1140,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1326","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992540-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388417",NA,"as N","Nitrate","Total","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1510,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1327","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992540-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388436",NA,"as N","Nitrate","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1490,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1328","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992540-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388449",NA,"as N","Nitrate","Total","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1520,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1329","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992500-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388475",NA,"as N","Nitrate","Total","16.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",16400,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1330","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992500-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388488",NA,"as N","Nitrate","Total","15.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15500,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1331","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992500-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388501",NA,"as N","Nitrate","Total","11.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11900,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1332","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992500-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388514",NA,"as N","Nitrate","Total","15.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15400,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1333","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992500-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388527",NA,"as N","Nitrate","Total","15.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15400,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1334","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992500-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388540",NA,"as N","Nitrate","Total","18.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",18500,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1335","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992500-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388553",NA,"as N","Nitrate","Total","20.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",20900,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1336","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992500-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388566",NA,"as N","Nitrate","Total","17.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",17500,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1337","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992500-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388579",NA,"as N","Nitrate","Total","17.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",17400,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1338","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992500-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388592",NA,"as N","Nitrate","Total","16.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",16900,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1339","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992500-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388611",NA,"as N","Nitrate","Total","21.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",21100,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1340","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992500-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388624",NA,"as N","Nitrate","Total","17.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",17500,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1341","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992480-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388650",NA,"as N","Nitrate","Total","13.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",13800,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1342","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992480-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388663",NA,"as N","Nitrate","Total","13.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",13500,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1343","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992480-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388676",NA,"as N","Nitrate","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10500,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1344","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992480-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388689",NA,"as N","Nitrate","Total","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1560,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1345","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992480-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388702",NA,"as N","Nitrate","Total","11.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11600,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1346","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992480-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388715",NA,"as N","Nitrate","Total","17.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",17100,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1347","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992480-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388728",NA,"as N","Nitrate","Total","18.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",18500,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1348","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992480-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388741",NA,"as N","Nitrate","Total","15.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15100,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1349","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992480-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388754",NA,"as N","Nitrate","Total","14.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",14500,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1350","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992480-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388767",NA,"as N","Nitrate","Total","14.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",14500,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1351","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992480-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388786",NA,"as N","Nitrate","Total","18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",18000,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1352","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992480-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388799",NA,"as N","Nitrate","Total","14.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",14200,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1353","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992320-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388825",NA,"as N","Nitrate","Total","9.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9020,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1354","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992320-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388838",NA,"as N","Nitrate","Total","7.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7640,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1355","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992320-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388851",NA,"as N","Nitrate","Total","6.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6840,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1356","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992320-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388864",NA,"as N","Nitrate","Total","6.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6810,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1357","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992320-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388877",NA,"as N","Nitrate","Total","5.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5120,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1358","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992320-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388890",NA,"as N","Nitrate","Total","7.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7330,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1359","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992320-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388903",NA,"as N","Nitrate","Total","5.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5910,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1360","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992320-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388916",NA,"as N","Nitrate","Total","6.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6140,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1361","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992320-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388929",NA,"as N","Nitrate","Total","5.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5930,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1362","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992320-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388942",NA,"as N","Nitrate","Total","7.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7180,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1363","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992320-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388961",NA,"as N","Nitrate","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10500,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1364","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992320-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943388974",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1365","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992290-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389000",NA,"as N","Nitrate","Total","8.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8210,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1366","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992290-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389013",NA,"as N","Nitrate","Total","6.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6630,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1367","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992290-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389026",NA,"as N","Nitrate","Total","6.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6200,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1368","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992290-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389039",NA,"as N","Nitrate","Total","6.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6150,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1369","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992290-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389052",NA,"as N","Nitrate","Total","4.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4230,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1370","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992290-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389065",NA,"as N","Nitrate","Total","6.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6330,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1371","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992290-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389078",NA,"as N","Nitrate","Total","5.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5120,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1372","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992290-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389091",NA,"as N","Nitrate","Total","6.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6140,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1373","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992290-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389104",NA,"as N","Nitrate","Total","5.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5770,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1374","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992290-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389117",NA,"as N","Nitrate","Total","6.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6510,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1375","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992290-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389136",NA,"as N","Nitrate","Total","9.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9750,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1376","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992290-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389149",NA,"as N","Nitrate","Total","7.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7210,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1377","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4992070-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389175",NA,"as N","Nitrate","Total","7.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7460,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1378","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4992070-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389188",NA,"as N","Nitrate","Total","5.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5870,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1379","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4992070-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389201",NA,"as N","Nitrate","Total","6.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6020,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1380","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4992070-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389214",NA,"as N","Nitrate","Total","0.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",100,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1381","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4992070-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389227",NA,"as N","Nitrate","Total","3.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3560,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1382","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4992070-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389240",NA,"as N","Nitrate","Total","6.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6890,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1383","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4992070-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389253",NA,"as N","Nitrate","Total","5.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5320,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1384","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992070-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389266",NA,"as N","Nitrate","Total","5.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5040,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1385","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4992070-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389279",NA,"as N","Nitrate","Total","4.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4710,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1386","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4992070-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389292",NA,"as N","Nitrate","Total","5.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5090,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1387","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4992070-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389311",NA,"as N","Nitrate","Total","7.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7030,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1388","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4992070-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389324",NA,"as N","Nitrate","Total","5.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5840,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1389","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991940-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389350",NA,"as N","Nitrate","Total","6.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6860,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1390","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991940-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389363",NA,"as N","Nitrate","Total","5.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5560,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1391","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991940-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389376",NA,"as N","Nitrate","Total","5.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5740,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1392","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991940-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389389",NA,"as N","Nitrate","Total","4.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4690,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1393","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991940-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389402",NA,"as N","Nitrate","Total","3.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3630,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1394","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991940-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389415",NA,"as N","Nitrate","Total","5.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5990,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1395","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991940-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389428",NA,"as N","Nitrate","Total","5.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5340,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1396","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991940-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389441",NA,"as N","Nitrate","Total","4.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4780,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1397","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991940-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389454",NA,"as N","Nitrate","Total","4.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4320,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1398","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991940-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389467",NA,"as N","Nitrate","Total","5.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5040,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1399","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991940-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389486",NA,"as N","Nitrate","Total","6.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6680,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1400","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991940-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389499",NA,"as N","Nitrate","Total","4.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4660,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1401","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991900-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389525",NA,"as N","Nitrate","Total","6.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6690,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1402","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991900-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389538",NA,"as N","Nitrate","Total","5.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5730,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1403","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991900-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389551",NA,"as N","Nitrate","Total","6.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6030,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1404","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991900-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389564",NA,"as N","Nitrate","Total","4.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4590,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1405","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991900-0520-LAB","Sample-Routine","Water",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389577",NA,"as N","Nitrate","Total","4.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4190,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1406","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991900-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389590",NA,"as N","Nitrate","Total","7.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7370,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1407","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991900-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389603",NA,"as N","Nitrate","Total","5.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5460,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1408","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991900-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389616",NA,"as N","Nitrate","Total","4.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4660,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1409","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991900-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389629",NA,"as N","Nitrate","Total","4.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4330,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1410","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991900-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389642",NA,"as N","Nitrate","Total","5.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5080,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1411","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991900-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389661",NA,"as N","Nitrate","Total","6.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6790,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1412","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991900-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389674",NA,"as N","Nitrate","Total","4.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4720,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1413","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991860-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389700",NA,"as N","Nitrate","Total","7.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7970,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1414","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991860-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389713",NA,"as N","Nitrate","Total","7.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7240,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1415","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991860-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389726",NA,"as N","Nitrate","Total","5.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5930,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1416","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991860-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389739",NA,"as N","Nitrate","Total","5.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5380,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1417","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991860-0520-LAB","Sample-Routine","Water",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389752",NA,"as N","Nitrate","Total","3.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3660,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1418","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991860-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389765",NA,"as N","Nitrate","Total","7.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7810,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1419","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991860-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389778",NA,"as N","Nitrate","Total","7.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7020,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1420","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991860-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389791",NA,"as N","Nitrate","Total","6.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6100,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1421","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991860-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389804",NA,"as N","Nitrate","Total","5.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5210,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1422","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991860-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389817",NA,"as N","Nitrate","Total","5.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:51","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5730,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1423","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991860-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389836",NA,"as N","Nitrate","Total","7.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7810,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1424","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991860-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389849",NA,"as N","Nitrate","Total","6.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6470,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1425","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991820-0121-LAB","Sample-Routine","Water",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389875",NA,"as N","Nitrate","Total","8.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8250,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1426","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991820-0225-LAB","Sample-Routine","Water",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389888",NA,"as N","Nitrate","Total","7.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7210,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1427","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991820-0325-LAB","Sample-Routine","Water",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389901",NA,"as N","Nitrate","Total","5.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5240,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1428","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991820-0422-LAB","Sample-Routine","Water",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389914",NA,"as N","Nitrate","Total","5.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5160,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1429","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991820-0520-LAB","Sample-Routine","Water",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389927",NA,"as N","Nitrate","Total","3.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3550,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1430","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991820-0624-LAB","Sample-Routine","Water",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389940",NA,"as N","Nitrate","Total","6.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6100,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1431","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991820-0722-LAB","Sample-Routine","Water",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389953",NA,"as N","Nitrate","Total","4.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4940,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1432","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991820-0902-LAB","Sample-Routine","Water",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389966",NA,"as N","Nitrate","Total","5.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5060,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1433","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991820-0923-LAB","Sample-Routine","Water",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389979",NA,"as N","Nitrate","Total","4.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4370,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1434","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991820-1021-LAB","Sample-Routine","Water",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943389992",NA,"as N","Nitrate","Total","5.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5180,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1435","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991820-1118-LAB","Sample-Routine","Water",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390011",NA,"as N","Nitrate","Total","7.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7320,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1436","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991820-1216-LAB","Sample-Routine","Water",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390024",NA,"as N","Nitrate","Total","5.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:52","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5600,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1437","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991810-0121-LAB","Sample-Routine","Water",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390050",NA,"as N","Nitrate","Total","12.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12900,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1438","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991810-0225-LAB","Sample-Routine","Water",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390063",NA,"as N","Nitrate","Total","8.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8040,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1439","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991810-0325-LAB","Sample-Routine","Water",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390076",NA,"as N","Nitrate","Total","13.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",13300,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1440","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991810-0422-LAB","Sample-Routine","Water",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390089",NA,"as N","Nitrate","Total","15.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15400,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1441","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991810-0520-LAB","Sample-Routine","Water",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390102",NA,"as N","Nitrate","Total","12.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12800,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1442","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991810-0624-LAB","Sample-Routine","Water",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390115",NA,"as N","Nitrate","Total","17.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",17800,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1443","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991810-0722-LAB","Sample-Routine","Water",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390128",NA,"as N","Nitrate","Total","12.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12700,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1444","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991810-0902-LAB","Sample-Routine","Water",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390141",NA,"as N","Nitrate","Total","12.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12900,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1445","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991810-0923-LAB","Sample-Routine","Water",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390154",NA,"as N","Nitrate","Total","15.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15800,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1446","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991810-1021-LAB","Sample-Routine","Water",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390167",NA,"as N","Nitrate","Total","15.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15700,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1447","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991810-1118-LAB","Sample-Routine","Water",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390186",NA,"as N","Nitrate","Total","12.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12300,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1448","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991810-1216-LAB","Sample-Routine","Water",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390199",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1449","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991800-0121-LAB","Sample-Routine","Water",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390225",NA,"as N","Nitrate","Total","7.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:53","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7990,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1450","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991800-0225-LAB","Sample-Routine","Water",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390238",NA,"as N","Nitrate","Total","6.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6490,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1451","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991800-0325-LAB","Sample-Routine","Water",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390251",NA,"as N","Nitrate","Total","5.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5690,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1452","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991800-0422-LAB","Sample-Routine","Water",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390264",NA,"as N","Nitrate","Total","6.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6100,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1453","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991800-0520-LAB","Sample-Routine","Water",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390277",NA,"as N","Nitrate","Total","3.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3980,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1454","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991800-0624-LAB","Sample-Routine","Water",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390290",NA,"as N","Nitrate","Total","4.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4740,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1455","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991800-0722-LAB","Sample-Routine","Water",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390303",NA,"as N","Nitrate","Total","4.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4770,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1456","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991800-0902-LAB","Sample-Routine","Water",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390316",NA,"as N","Nitrate","Total","5.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5360,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1457","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991800-0923-LAB","Sample-Routine","Water",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390329",NA,"as N","Nitrate","Total","4.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4840,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1458","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991800-1021-LAB","Sample-Routine","Water",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390342",NA,"as N","Nitrate","Total","5.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5620,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1459","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991800-1118-LAB","Sample-Routine","Water",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390361",NA,"as N","Nitrate","Total","7.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7610,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1460","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991800-1216-LAB","Sample-Routine","Water",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390374",NA,"as N","Nitrate","Total","5.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5480,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1461","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4991290-0120-LAB","Sample-Routine","Water",NA,2021-01-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390400",NA,"as N","Nitrate","Total","7.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:54","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7580,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1462","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4991290-0224-LAB","Sample-Routine","Water",NA,2021-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390413",NA,"as N","Nitrate","Total","6.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6280,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1463","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4991290-0324-LAB","Sample-Routine","Water",NA,2021-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390426",NA,"as N","Nitrate","Total","6.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6600,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1464","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4991290-0421-LAB","Sample-Routine","Water",NA,2021-04-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390439",NA,"as N","Nitrate","Total","5.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5830,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1465","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4991290-0519-LAB","Sample-Routine","Water",NA,2021-05-19,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390452",NA,"as N","Nitrate","Total","4.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4900,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1466","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4991290-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390465",NA,"as N","Nitrate","Total","4.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4940,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1467","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4991290-0721-LAB","Sample-Routine","Water",NA,2021-07-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390478",NA,"as N","Nitrate","Total","5.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5440,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1468","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991290-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390491",NA,"as N","Nitrate","Total","4.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4910,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1469","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4991290-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390504",NA,"as N","Nitrate","Total","4.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4690,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1470","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4991290-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390517",NA,"as N","Nitrate","Total","3.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3560,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1471","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4991290-1117-LAB","Sample-Routine","Water",NA,2021-11-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390535",NA,"as N","Nitrate","Total","8.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8450,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1472","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4991290-1215-LAB","Sample-Routine","Water",NA,2021-12-15,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390548",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1473","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4990890-0121-LAB","Sample-Routine","Water",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390574",NA,"as N","Nitrate","Total","7.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:55","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7130,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1474","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4990890-0225-LAB","Sample-Routine","Water",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390587",NA,"as N","Nitrate","Total","7.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7830,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1475","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4990890-0325-LAB","Sample-Routine","Water",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390600",NA,"as N","Nitrate","Total","6.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6180,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1476","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4990890-0422-LAB","Sample-Routine","Water",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390613",NA,"as N","Nitrate","Total","4.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4990,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1477","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4990890-0520-LAB","Sample-Routine","Water",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390626",NA,"as N","Nitrate","Total","3.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3770,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1478","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4990890-0624-LAB","Sample-Routine","Water",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390639",NA,"as N","Nitrate","Total","5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5000,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1479","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4990890-0722-LAB","Sample-Routine","Water",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390652",NA,"as N","Nitrate","Total","4.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4390,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1480","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990890-0901-LAB","Sample-Routine","Water",NA,2021-09-01,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390665",NA,"as N","Nitrate","Total","5.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5180,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1481","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990890-0922-LAB","Sample-Routine","Water",NA,2021-09-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390678",NA,"as N","Nitrate","Total","4.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4600,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1482","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4990890-1020-LAB","Sample-Routine","Water",NA,2021-10-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390691",NA,"as N","Nitrate","Total","3.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3480,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1483","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4990890-1118-LAB","Sample-Routine","Water",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390709",NA,"as N","Nitrate","Total","7.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7590,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1484","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4990890-1216-LAB","Sample-Routine","Water",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390722",NA,"as N","Nitrate","Total","5.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5150,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1485","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4990790-0121-LAB","Sample-Routine","Water",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390748",NA,"as N","Nitrate","Total","7.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7960,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1486","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4990790-0225-LAB","Sample-Routine","Water",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390761",NA,"as N","Nitrate","Total","7.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7610,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1487","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4990790-0325-LAB","Sample-Routine","Water",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390774",NA,"as N","Nitrate","Total","5.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:56","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5160,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1488","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4990790-0422-LAB","Sample-Routine","Water",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390787",NA,"as N","Nitrate","Total","6.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6440,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1489","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4990790-0520-LAB","Sample-Routine","Water",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390800",NA,"as N","Nitrate","Total","4.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4730,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1490","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4990790-0624-LAB","Sample-Routine","Water",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390813",NA,"as N","Nitrate","Total","5.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5760,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1491","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4990790-0722-LAB","Sample-Routine","Water",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390826",NA,"as N","Nitrate","Total","5.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5330,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1492","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990790-0902-LAB","Sample-Routine","Water",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390839",NA,"as N","Nitrate","Total","5.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5930,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1493","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990790-0923-LAB","Sample-Routine","Water",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390852",NA,"as N","Nitrate","Total","5.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5700,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1494","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4990790-1021-LAB","Sample-Routine","Water",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390865",NA,"as N","Nitrate","Total","0.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",620,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1495","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4990790-1118-LAB","Sample-Routine","Water",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390883",NA,"as N","Nitrate","Total","7.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7200,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1496","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4990790-1216-LAB","Sample-Routine","Water",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390896",NA,"as N","Nitrate","Total","6.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6310,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1497","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4990780-0121-LAB","Sample-Routine","Water",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390922",NA,"as N","Nitrate","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10500,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1498","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4990780-0225-LAB","Sample-Routine","Water",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390935",NA,"as N","Nitrate","Total","7.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7710,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1499","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4990780-0325-LAB","Sample-Routine","Water",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390948",NA,"as N","Nitrate","Total","3.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3400,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1500","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4990780-0422-LAB","Sample-Routine","Water",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390961",NA,"as N","Nitrate","Total","10.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:57","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10700,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1501","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4990780-0520-LAB","Sample-Routine","Water",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390974",NA,"as N","Nitrate","Total","10","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10000,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1502","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4990780-0624-LAB","Sample-Routine","Water",NA,2021-06-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943390987",NA,"as N","Nitrate","Total","13.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",13300,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1503","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4990780-0722-LAB","Sample-Routine","Water",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391000",NA,"as N","Nitrate","Total","3.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3120,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1504","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990780-0902-LAB","Sample-Routine","Water",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391013",NA,"as N","Nitrate","Total","8.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8800,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1505","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990780-0923-LAB","Sample-Routine","Water",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391026",NA,"as N","Nitrate","Total","8.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8620,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1506","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4990780-1021-LAB","Sample-Routine","Water",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391039",NA,"as N","Nitrate","Total","9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9000,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1507","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4990780-1118-LAB","Sample-Routine","Water",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391057",NA,"as N","Nitrate","Total","9.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9140,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1508","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4990780-1216-LAB","Sample-Routine","Water",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391070",NA,"as N","Nitrate","Total","7.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7870,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1509","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4990770-0121-LAB","Sample-Routine","Water",NA,2021-01-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391096",NA,"as N","Nitrate","Total","6.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6940,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1510","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4990770-0225-LAB","Sample-Routine","Water",NA,2021-02-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391109",NA,"as N","Nitrate","Total","6.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6660,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1511","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4990770-0325-LAB","Sample-Routine","Water",NA,2021-03-25,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391122",NA,"as N","Nitrate","Total","4.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4870,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1512","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4990770-0422-LAB","Sample-Routine","Water",NA,2021-04-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391135",NA,"as N","Nitrate","Total","5.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5610,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1513","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4990770-0520-LAB","Sample-Routine","Water",NA,2021-05-20,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391148",NA,"as N","Nitrate","Total","3.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:58","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3630,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1514","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4990770-0623-LAB","Sample-Routine","Water",NA,2021-06-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391161",NA,"as N","Nitrate","Total","7.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:59","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7820,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1515","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4990770-0722-LAB","Sample-Routine","Water",NA,2021-07-22,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391174",NA,"as N","Nitrate","Total","4.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:59","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4510,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1516","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990770-0902-LAB","Sample-Routine","Water",NA,2021-09-02,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391187",NA,"as N","Nitrate","Total","6.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:59","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6540,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1517","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990770-0923-LAB","Sample-Routine","Water",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391200",NA,"as N","Nitrate","Total","5.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:59","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5090,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","20","Y",FALSE +"1518","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4990770-0923-LAB","Sample-Routine","Water",NA,2021-09-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391213",NA,"as N","Nitrate","Total","5.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:59","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5090,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","20","Y",FALSE +"1519","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4990770-1021-LAB","Sample-Routine","Water",NA,2021-10-21,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391226",NA,"as N","Nitrate","Total","7.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:59","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7340,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1520","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4990770-1118-LAB","Sample-Routine","Water",NA,2021-11-18,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391244",NA,"as N","Nitrate","Total","9.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:59","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9670,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1521","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1221-4990770-1216-LAB","Sample-Routine","Water",NA,2021-12-16,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391257",NA,"as N","Nitrate","Total","7.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T17:26:59","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7480,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1522","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4990770-0428-LAB","Sample-Routine","Water",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391694",NA,"as N","Nitrate","Total","4.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4600,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1523","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4990770-0324-LAB","Sample-Routine","Water",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391707",NA,"as N","Nitrate","Total","4.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4100,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1524","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4990770-0224-LAB","Sample-Routine","Water",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391720",NA,"as N","Nitrate","Total","6.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:39","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6600,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1525","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4990770-0127-LAB","Sample-Routine","Water",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990770","State Canal Below SDSD",NA,NA,NA,NA,"40.9055000000","-111.9343870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391733",NA,"as N","Nitrate","Total","4.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9055000000","-111.9343870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4900,"UG/L","Numeric","Not Reviewed","Uncensored",40.9055,-111.934387,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1526","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4990780-0428-LAB","Sample-Routine","Water",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391746",NA,"as N","Nitrate","Total","8.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8300,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1527","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4990780-0324-LAB","Sample-Routine","Water",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391759",NA,"as N","Nitrate","Total","7.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7400,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1528","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4990780-0224-LAB","Sample-Routine","Water",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391772",NA,"as N","Nitrate","Total","6.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6300,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1529","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4990780-0127-LAB","Sample-Routine","Water",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990780","SDSD North Plant",NA,NA,NA,NA,"40.9046648630","-111.9352180900","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391785",NA,"as N","Nitrate","Total","8.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9046648630","-111.9352180900","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8600,"UG/L","Numeric","Not Reviewed","Uncensored",40.904664863,-111.93521809,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1530","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4990790-0428-LAB","Sample-Routine","Water",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391798",NA,"as N","Nitrate","Total","5.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:40","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5600,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1531","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4990790-0324-LAB","Sample-Routine","Water",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391811",NA,"as N","Nitrate","Total","3.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3400,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1532","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4990790-0224-LAB","Sample-Routine","Water",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391824",NA,"as N","Nitrate","Total","6.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6900,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1533","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4990790-0127-LAB","Sample-Routine","Water",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990790","State Canal Above SDSD",NA,NA,NA,NA,"40.9043880000","-111.9360450000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391837",NA,"as N","Nitrate","Total","5.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9043880000","-111.9360450000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5300,"UG/L","Numeric","Not Reviewed","Uncensored",40.904388,-111.936045,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1534","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4990890-0324-LAB","Sample-Routine","Water",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391850",NA,"as N","Nitrate","Total","4.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4500,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1535","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4990890-0224-LAB","Sample-Routine","Water",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391863",NA,"as N","Nitrate","Total","8.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8600,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1536","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4990890-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4990890","Burnham 1000 ft above",NA,NA,NA,NA,"40.8707788960","-111.9643848770","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391876",NA,"as N","Nitrate","Total","5.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8707788960","-111.9643848770","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5100,"UG/L","Numeric","Not Reviewed","Uncensored",40.870778896,-111.964384877,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1537","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991290-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391889",NA,"as N","Nitrate","Total","6.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6700,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1538","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991290-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391902",NA,"as N","Nitrate","Total","6.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6200,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1539","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991290-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391915",NA,"as N","Nitrate","Total","5.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:41","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5900,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1540","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991290-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991290","Surplus Canal @ Airport",NA,NA,NA,NA,"40.8166148110","-112.0154995100","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391928",NA,"as N","Nitrate","Total","5.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8166148110","-112.0154995100","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5300,"UG/L","Numeric","Not Reviewed","Uncensored",40.816614811,-112.01549951,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1541","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991800-0428-LAB","Sample-Routine","Water",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391941",NA,"as N","Nitrate","Total","5.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5500,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1542","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991800-0324-LAB","Sample-Routine","Water",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391954",NA,"as N","Nitrate","Total","3.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3800,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1543","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991800-0224-LAB","Sample-Routine","Water",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391967",NA,"as N","Nitrate","Total","7.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7500,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1544","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991800-0127-LAB","Sample-Routine","Water",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991800","Legacy",NA,NA,NA,NA,"40.8449454290","-111.9532748010","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391980",NA,"as N","Nitrate","Total","6.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8449454290","-111.9532748010","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6100,"UG/L","Numeric","Not Reviewed","Uncensored",40.844945429,-111.953274801,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1545","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991810-0428-LAB","Sample-Routine","Water",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943391993",NA,"as N","Nitrate","Total","15.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15300,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1546","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991810-0324-LAB","Sample-Routine","Water",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392006",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1547","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991810-0224-LAB","Sample-Routine","Water",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392019",NA,"as N","Nitrate","Total","14.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",14600,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1548","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991810-0127-LAB","Sample-Routine","Water",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991810","SDSD South Plant",NA,NA,NA,NA,"40.8433700000","-111.9482900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392032",NA,"as N","Nitrate","Total","16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8433700000","-111.9482900000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",16000,"UG/L","Numeric","Not Reviewed","Uncensored",40.84337,-111.94829,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1549","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991820-0428-LAB","Sample-Routine","Water",NA,2022-04-28,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392045",NA,"as N","Nitrate","Total","5.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5300,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1550","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991820-0324-LAB","Sample-Routine","Water",NA,2022-03-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392058",NA,"as N","Nitrate","Total","3.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:42","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3400,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1551","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991820-0224-LAB","Sample-Routine","Water",NA,2022-02-24,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392071",NA,"as N","Nitrate","Total","7.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7600,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1552","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991820-0127-LAB","Sample-Routine","Water",NA,2022-01-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991820","Center Street",NA,NA,NA,NA,"40.8416149990","-111.9507716860","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392084",NA,"as N","Nitrate","Total","5.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8416149990","-111.9507716860","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5800,"UG/L","Numeric","Not Reviewed","Uncensored",40.841614999,-111.950771686,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1553","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991860-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392097",NA,"as N","Nitrate","Total","5.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5400,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1554","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991860-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392110",NA,"as N","Nitrate","Total","5.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5100,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1555","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991860-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392123",NA,"as N","Nitrate","Total","7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7000,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1556","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991860-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991860","1800 N",NA,NA,NA,NA,"40.8074495600","-111.9393884490","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392136",NA,"as N","Nitrate","Total","5.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.8074495600","-111.9393884490","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5300,"UG/L","Numeric","Not Reviewed","Uncensored",40.80744956,-111.939388449,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1557","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991900-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392149",NA,"as N","Nitrate","Total","4.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4800,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1558","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991900-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392162",NA,"as N","Nitrate","Total","5.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5400,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1559","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991900-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392175",NA,"as N","Nitrate","Total","5.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5800,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1560","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991900-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991900","300 N",NA,NA,NA,NA,"40.7773943560","-111.9353505470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392188",NA,"as N","Nitrate","Total","4.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7773943560","-111.9353505470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4400,"UG/L","Numeric","Not Reviewed","Uncensored",40.777394356,-111.935350547,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1561","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4991940-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392201",NA,"as N","Nitrate","Total","4.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:43","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4300,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1562","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4991940-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392214",NA,"as N","Nitrate","Total","6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6000,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1563","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4991940-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392227",NA,"as N","Nitrate","Total","5.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5500,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1564","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4991940-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4991940","400 S",NA,NA,NA,NA,"40.7603945480","-111.9231582080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392240",NA,"as N","Nitrate","Total","4.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7603945480","-111.9231582080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4300,"UG/L","Numeric","Not Reviewed","Uncensored",40.760394548,-111.923158208,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1565","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992070-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392253",NA,"as N","Nitrate","Total","4.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4500,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1566","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992070-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392266",NA,"as N","Nitrate","Total","3.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3800,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1567","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992070-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392279",NA,"as N","Nitrate","Total","5.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5400,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1568","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992070-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992070","1300 S",NA,NA,NA,NA,"40.7416103240","-111.9177107500","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392292",NA,"as N","Nitrate","Total","4.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7416103240","-111.9177107500","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4300,"UG/L","Numeric","Not Reviewed","Uncensored",40.741610324,-111.91771075,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1569","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992290-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392305",NA,"as N","Nitrate","Total","6.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6300,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1570","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992290-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392318",NA,"as N","Nitrate","Total","6.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:44","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6300,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1571","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992290-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392331",NA,"as N","Nitrate","Total","6.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6400,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1572","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992290-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992290","1700 S",NA,NA,NA,NA,"40.7335552510","-111.9235450390","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392344",NA,"as N","Nitrate","Total","5.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7335552510","-111.9235450390","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5500,"UG/L","Numeric","Not Reviewed","Uncensored",40.733555251,-111.923545039,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1573","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992320-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392357",NA,"as N","Nitrate","Total","7.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7300,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1574","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992320-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392370",NA,"as N","Nitrate","Total","8.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8300,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1575","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992320-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392383",NA,"as N","Nitrate","Total","7.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7100,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1576","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992320-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992320","2100 S Above Diversion",NA,NA,NA,NA,"40.7257600000","-111.9257710000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392396",NA,"as N","Nitrate","Total","6.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7257600000","-111.9257710000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6200,"UG/L","Numeric","Not Reviewed","Uncensored",40.72576,-111.925771,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1577","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992480-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392409",NA,"as N","Nitrate","Total","12.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12300,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1578","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992480-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392422",NA,"as N","Nitrate","Total","16.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",16900,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1579","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992480-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392435",NA,"as N","Nitrate","Total","19.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:45","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",19700,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1580","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992480-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992480","Mill Creek Below CVWRF",NA,NA,NA,NA,"40.7085584880","-111.9199322530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392448",NA,"as N","Nitrate","Total","12.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7085584880","-111.9199322530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12200,"UG/L","Numeric","Not Reviewed","Uncensored",40.708558488,-111.919932253,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1581","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992500-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392461",NA,"as N","Nitrate","Total","16.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",16600,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1582","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992500-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392474",NA,"as N","Nitrate","Total","21.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",21100,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1583","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992500-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392487",NA,"as N","Nitrate","Total","27.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",27500,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1584","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992500-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992500","Central Valley WWRF",NA,NA,NA,NA,"40.7080700000","-111.9158600000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392500",NA,"as N","Nitrate","Total","14.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7080700000","-111.9158600000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",14100,"UG/L","Numeric","Not Reviewed","Uncensored",40.70807,-111.91586,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1585","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992540-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392513",NA,"as N","Nitrate","Total","0.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",800,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1586","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992540-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392526",NA,"as N","Nitrate","Total","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1700,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1587","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992540-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392539",NA,"as N","Nitrate","Total","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2000,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1588","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992540-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992540","Mill Creek Above CV at 300 W",NA,NA,NA,NA,"40.7062600000","-111.8999100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392552",NA,"as N","Nitrate","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:46","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.7062600000","-111.8999100000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1300,"UG/L","Numeric","Not Reviewed","Uncensored",40.70626,-111.89991,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1589","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992880-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392565",NA,"as N","Nitrate","Total","3.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3100,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1590","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992880-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392578",NA,"as N","Nitrate","Total","4.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4300,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1591","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992880-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392591",NA,"as N","Nitrate","Total","3.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3900,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1592","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992880-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992880","3300 S",NA,NA,NA,NA,"40.6992480000","-111.9247340000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392604",NA,"as N","Nitrate","Total","3.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6992480000","-111.9247340000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3300,"UG/L","Numeric","Not Reviewed","Uncensored",40.699248,-111.924734,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1593","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4992950-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392617",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1594","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4992950-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392630",NA,"as N","Nitrate","Total","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",900,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1595","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4992950-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392643",NA,"as N","Nitrate","Total","0.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",800,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1596","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4992950-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4992950","Big Cottonwood at Confluence",NA,NA,NA,NA,"40.6805067230","-111.9118785530","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392656",NA,"as N","Nitrate","Total","0.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6805067230","-111.9118785530","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",500,"UG/L","Numeric","Not Reviewed","Uncensored",40.680506723,-111.911878553,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1597","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4993580-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392669",NA,"as N","Nitrate","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",600,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1598","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4993580-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392682",NA,"as N","Nitrate","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1400,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1599","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4993580-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392695",NA,"as N","Nitrate","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:47","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1200,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1600","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4993580-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4993580","Little Cottonwood Creek",NA,NA,NA,NA,"40.6663327720","-111.9065982550","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392708",NA,"as N","Nitrate","Total","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6663327720","-111.9065982550","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",900,"UG/L","Numeric","Not Reviewed","Uncensored",40.666332772,-111.906598255,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1601","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994100-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392721",NA,"as N","Nitrate","Total","5.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5200,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1602","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994100-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392734",NA,"as N","Nitrate","Total","7.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7200,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1603","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994100-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392747",NA,"as N","Nitrate","Total","5.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5500,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1604","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994100-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994100","6400 S",NA,NA,NA,NA,"40.6305020000","-111.9229870000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392760",NA,"as N","Nitrate","Total","5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6305020000","-111.9229870000","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5000,"UG/L","Numeric","Not Reviewed","Uncensored",40.630502,-111.922987,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1605","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994160-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392773",NA,"as N","Nitrate","Total","8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8000,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1606","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994160-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392786",NA,"as N","Nitrate","Total","9.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9900,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1607","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994160-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392799",NA,"as N","Nitrate","Total","8.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8100,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1608","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994160-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994160","South Valley WWTP",NA,NA,NA,NA,"40.6163908590","-111.9222842510","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392812",NA,"as N","Nitrate","Total","7.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6163908590","-111.9222842510","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7400,"UG/L","Numeric","Not Reviewed","Uncensored",40.616390859,-111.922284251,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1609","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994170-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392825",NA,"as N","Nitrate","Total","2.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2700,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1610","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994170-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392838",NA,"as N","Nitrate","Total","4.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:48","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4400,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1611","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994170-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392851",NA,"as N","Nitrate","Total","3.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3800,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1612","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994170-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994170","7800 S",NA,NA,NA,NA,"40.6093920360","-111.9210414140","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392864",NA,"as N","Nitrate","Total","3.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6093920360","-111.9210414140","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3100,"UG/L","Numeric","Not Reviewed","Uncensored",40.609392036,-111.921041414,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1613","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994270-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392877",NA,"as N","Nitrate","Total","3.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3100,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1614","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994270-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392890",NA,"as N","Nitrate","Total","4.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4800,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1615","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994270-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392903",NA,"as N","Nitrate","Total","4.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4100,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1616","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994270-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994270","9000 S",NA,NA,NA,NA,"40.5874498930","-111.9127167080","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392916",NA,"as N","Nitrate","Total","3.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874498930","-111.9127167080","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3200,"UG/L","Numeric","Not Reviewed","Uncensored",40.587449893,-111.912716708,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1617","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994600-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392929",NA,"as N","Nitrate","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1500,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1618","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994600-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392942",NA,"as N","Nitrate","Total","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1600,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1619","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994600-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392955",NA,"as N","Nitrate","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:49","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1300,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1620","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994600-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994600","14600 S (Bluffdale Road)",NA,NA,NA,NA,"40.4863379220","-111.9360408470","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392968",NA,"as N","Nitrate","Total","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4863379220","-111.9360408470","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",900,"UG/L","Numeric","Not Reviewed","Uncensored",40.486337922,-111.936040847,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1621","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994730-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392981",NA,"as N","Nitrate","Total","0.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",500,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1622","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994730-0323-LAB","Sample-Routine","Water",NA,2022-03-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943392994",NA,"as N","Nitrate","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1500,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1623","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994730-0223-LAB","Sample-Routine","Water",NA,2022-02-23,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943393007",NA,"as N","Nitrate","Total","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",900,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1624","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994730-0126-LAB","Sample-Routine","Water",NA,2022-01-26,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994730","Narrows",NA,NA,NA,NA,"40.4430042040","-111.9227164890","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943393020",NA,"as N","Nitrate","Total","0.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.4430042040","-111.9227164890","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",700,"UG/L","Numeric","Not Reviewed","Uncensored",40.443004204,-111.922716489,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1625","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994790-0427-LAB","Sample-Routine","Water",NA,2022-04-27,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994790","Utah Lake",NA,NA,NA,NA,"40.3609517430","-111.8985135820","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-943393033",NA,"as N","Nitrate","Total","0.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"300.0","USEPA","300.0 ~ EPA; Determination of Inorganic Anions by Ion Chromatography",NA,"https://www.nemi.gov/methods/method_summary/4680/",NA,NA,NA,NA,NA,NA,NA,NA,"2022-07-11T18:00:50","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609517430","-111.8985135820","GPS-Unspecified",NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",50,"UG/L","Numeric","Not Reviewed","Uncensored",40.360951743,-111.898513582,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1626","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4994952-0112-LAB","Sample-Routine","Water",NA,2021-01-12,"09:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160232",NA,"as N","Nitrate","Total","3.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4994952-0112-LAB/results/944160232/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:53","STORET",7,NA,2021-01-12 16:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3700,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1627","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995043-0112-LAB","Sample-Routine","Water",NA,2021-01-12,"09:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160243",NA,"as N","Nitrate","Total","6.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995043-0112-LAB/results/944160243/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:53","STORET",7,NA,2021-01-12 16:58:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6330,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1628","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995075-0112-LAB","Sample-Routine","Water",NA,2021-01-12,"10:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160254",NA,"as N","Nitrate","Total","3.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995075-0112-LAB/results/944160254/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:54","STORET",7,NA,2021-01-12 17:31:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3570,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1629","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995222-0112-LAB","Sample-Routine","Water",NA,2021-01-12,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160269",NA,"as N","Nitrate","Total","4.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995222-0112-LAB/results/944160269/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:54","STORET",7,NA,2021-01-12 17:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4990,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1630","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995210-0112-LAB","Sample-Routine","Water",NA,2021-01-12,"11:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160279",NA,"as N","Nitrate","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995210-0112-LAB/results/944160279/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:54","STORET",7,NA,2021-01-12 18:49:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10500,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1631","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996680-0112-LAB","Sample-Routine","Water",NA,2021-01-12,"13:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160290",NA,"as N","Nitrate","Total","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996680-0112-LAB/results/944160290/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:54","STORET",7,NA,2021-01-12 20:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",556,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1632","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995575-0112-LAB","Sample-Routine","Water",NA,2021-01-12,"14:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160300",NA,"as N","Nitrate","Total","0.636","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995575-0112-LAB/results/944160300/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:54","STORET",7,NA,2021-01-12 21:37:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",636,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1633","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996570-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"08:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160311",NA,"as N","Nitrate","Total","2.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996570-0113-LAB/results/944160311/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:54","STORET",7,NA,2021-01-13 15:47:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2260,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1634","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996560-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"09:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160322",NA,"as N","Nitrate","Total","28.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996560-0113-LAB/results/944160322/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:54","STORET",7,NA,2021-01-13 16:00:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",28400,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1635","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996550-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"09:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160333",NA,"as N","Nitrate","Total","26.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996550-0113-LAB/results/944160333/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:54","STORET",7,NA,2021-01-13 16:12:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",26800,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1636","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996410-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160343",NA,"as N","Nitrate","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996410-0113-LAB/results/944160343/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 16:30:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1290,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1637","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996190-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"09:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160354",NA,"as N","Nitrate","Total","8.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996190-0113-LAB/results/944160354/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 16:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8820,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1638","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996540-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"10:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160365",NA,"as N","Nitrate","Total","9.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996540-0113-LAB/results/944160365/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 17:19:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9070,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1639","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996566-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"10:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160376",NA,"as N","Nitrate","Total","8.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996566-0113-LAB/results/944160376/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 17:32:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8760,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1640","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996100-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"11:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160387",NA,"as N","Nitrate","Total","8.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996100-0113-LAB/results/944160387/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 18:04:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8250,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1641","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996275-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"10:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160398",NA,"as N","Nitrate","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996275-0113-LAB/results/944160398/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 17:53:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1110,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1642","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996022-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"11:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160408",NA,"as N","Nitrate","Total","4.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996022-0113-LAB/results/944160408/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 18:44:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4180,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1643","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996020-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"11:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160419",NA,"as N","Nitrate","Total","4.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996020-0113-LAB/results/944160419/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 18:59:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4850,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1644","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4996003-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"12:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160430",NA,"as N","Nitrate","Total","4.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4996003-0113-LAB/results/944160430/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 19:13:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4740,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1645","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4917712-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160441",NA,"as N","Nitrate","Total","3.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4917712-0113-LAB/results/944160441/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:55","STORET",7,NA,2021-01-13 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3300,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1646","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0121-4995467-0113-LAB","Sample-Routine","Water",NA,2021-01-13,"13:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160452",NA,"as N","Nitrate","Total","4.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0121-4995467-0113-LAB/results/944160452/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-01-13 20:11:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4340,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1647","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995575-0216-LAB","Sample-Routine","Water",NA,2021-02-16,"09:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160463",NA,"as N","Nitrate","Total","0.375","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995575-0216-LAB/results/944160463/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-16 16:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",375,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1648","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4917712-0216-LAB","Sample-Routine","Water",NA,2021-02-16,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160474",NA,"as N","Nitrate","Total","2.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4917712-0216-LAB/results/944160474/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-16 17:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2040,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1649","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996680-0216-LAB","Sample-Routine","Water",NA,2021-02-16,"11:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160485",NA,"as N","Nitrate","Total","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996680-0216-LAB/results/944160485/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-16 18:22:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",452,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1650","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995210-0216-LAB","Sample-Routine","Water",NA,2021-02-16,"12:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160496",NA,"as N","Nitrate","Total","8.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995210-0216-LAB/results/944160496/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-16 19:41:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8390,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1651","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4994952-0216-LAB","Sample-Routine","Water",NA,2021-02-16,"09:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160507",NA,"as N","Nitrate","Total","2.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4994952-0216-LAB/results/944160507/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-16 16:49:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2570,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1652","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995043-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160518",NA,"as N","Nitrate","Total","5.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995043-0217-LAB/results/944160518/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-17 17:24:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5930,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1653","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995075-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160529",NA,"as N","Nitrate","Total","2.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995075-0217-LAB/results/944160529/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-17 17:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2470,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1654","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4995222-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"11:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160544",NA,"as N","Nitrate","Total","0.917","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4995222-0217-LAB/results/944160544/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-17 18:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",917,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1655","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996570-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"11:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160555",NA,"as N","Nitrate","Total","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996570-0217-LAB/results/944160555/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-17 18:43:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1350,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1656","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996560-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160566",NA,"as N","Nitrate","Total","25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996560-0217-LAB/results/944160566/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:56","STORET",7,NA,2021-02-17 18:55:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",25000,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1657","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996550-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"12:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160577",NA,"as N","Nitrate","Total","21.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996550-0217-LAB/results/944160577/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 19:13:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",21800,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1658","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996410-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160588",NA,"as N","Nitrate","Total","0.909","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996410-0217-LAB/results/944160588/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 19:30:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",909,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1659","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996190-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"12:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160599",NA,"as N","Nitrate","Total","5.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996190-0217-LAB/results/944160599/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 19:46:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5530,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1660","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996540-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"13:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160610",NA,"as N","Nitrate","Total","6.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996540-0217-LAB/results/944160610/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 20:17:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6940,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1661","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996566-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"13:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160621",NA,"as N","Nitrate","Total","8.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996566-0217-LAB/results/944160621/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 20:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8830,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1662","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996275-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"13:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160632",NA,"as N","Nitrate","Total","5.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996275-0217-LAB/results/944160632/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 20:46:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5970,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1663","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996100-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"13:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160643",NA,"as N","Nitrate","Total","0.891","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996100-0217-LAB/results/944160643/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 20:58:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",891,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1664","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996022-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"14:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160654",NA,"as N","Nitrate","Total","2.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996022-0217-LAB/results/944160654/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 21:28:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2980,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1665","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996020-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"14:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160665",NA,"as N","Nitrate","Total","4.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996020-0217-LAB/results/944160665/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 21:45:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4650,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1666","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0221-4996003-0217-LAB","Sample-Routine","Water",NA,2021-02-17,"14:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160676",NA,"as N","Nitrate","Total","3.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0221-4996003-0217-LAB/results/944160676/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-02-17 21:56:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3890,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1667","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4994952-0316-LAB","Sample-Routine","Water",NA,2021-03-16,"08:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160687",NA,"as N","Nitrate","Total","2.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4994952-0316-LAB/results/944160687/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:57","STORET",7,NA,2021-03-16 15:42:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2890,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1668","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995043-0316-LAB","Sample-Routine","Water",NA,2021-03-16,"09:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160698",NA,"as N","Nitrate","Total","7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995043-0316-LAB/results/944160698/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-16 16:19:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7000,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1669","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995075-0316-LAB","Sample-Routine","Water",NA,2021-03-16,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160709",NA,"as N","Nitrate","Total","3.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995075-0316-LAB/results/944160709/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-16 16:47:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3160,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1670","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995222-0316-LAB","Sample-Routine","Water",NA,2021-03-16,"10:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160720",NA,"as N","Nitrate","Total","2.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995222-0316-LAB/results/944160720/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-16 17:03:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2040,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1671","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995210-0316-LAB","Sample-Routine","Water",NA,2021-03-16,"11:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160731",NA,"as N","Nitrate","Total","8.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995210-0316-LAB/results/944160731/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-16 18:31:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8880,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1672","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996680-0316-LAB","Sample-Routine","Water",NA,2021-03-16,"12:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160742",NA,"as N","Nitrate","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996680-0316-LAB/results/944160742/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-16 19:53:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",315,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1673","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995575-0316-LAB","Sample-Routine","Water",NA,2021-03-16,"14:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160753",NA,"as N","Nitrate","Total","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995575-0316-LAB/results/944160753/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-16 21:41:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",382,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1674","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4917712-0316-LAB","Sample-Routine","Water",NA,2021-03-16,"15:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160764",NA,"as N","Nitrate","Total","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4917712-0316-LAB/results/944160764/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-16 22:24:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",568,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1675","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4995467-0316-LAB","Sample-Routine","Water",NA,2021-03-16,"15:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160775",NA,"as N","Nitrate","Total","2.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4995467-0316-LAB/results/944160775/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-16 22:51:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2860,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1676","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996570-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"08:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160786",NA,"as N","Nitrate","Total","2.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996570-0317-LAB/results/944160786/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-17 15:44:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2350,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1677","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996560-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"08:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160797",NA,"as N","Nitrate","Total","29.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996560-0317-LAB/results/944160797/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-17 15:56:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",29700,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1678","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996550-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"09:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160808",NA,"as N","Nitrate","Total","25.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996550-0317-LAB/results/944160808/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-17 16:12:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",25400,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1679","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996410-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160819",NA,"as N","Nitrate","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996410-0317-LAB/results/944160819/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-17 16:30:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1500,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1680","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996190-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"09:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160830",NA,"as N","Nitrate","Total","5.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996190-0317-LAB/results/944160830/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:58","STORET",7,NA,2021-03-17 16:44:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5330,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1681","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996540-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"10:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160841",NA,"as N","Nitrate","Total","10.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996540-0317-LAB/results/944160841/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-03-17 17:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10400,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1682","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996566-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"10:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160852",NA,"as N","Nitrate","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996566-0317-LAB/results/944160852/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-03-17 17:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10500,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1683","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996275-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"10:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160863",NA,"as N","Nitrate","Total","5.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996275-0317-LAB/results/944160863/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-03-17 17:58:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5270,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1684","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996100-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"11:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160878",NA,"as N","Nitrate","Total","0.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996100-0317-LAB/results/944160878/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-03-17 18:12:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",950,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1685","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996022-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"11:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160889",NA,"as N","Nitrate","Total","2.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996022-0317-LAB/results/944160889/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-03-17 18:49:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2970,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1686","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996020-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"12:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160900",NA,"as N","Nitrate","Total","3.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996020-0317-LAB/results/944160900/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-03-17 19:06:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3580,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1687","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0321-4996003-0317-LAB","Sample-Routine","Water",NA,2021-03-17,"12:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160911",NA,"as N","Nitrate","Total","3.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0321-4996003-0317-LAB/results/944160911/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-03-17 19:21:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3540,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1688","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4994952-0413-LAB","Sample-Routine","Water",NA,2021-04-13,"08:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160922",NA,"as N","Nitrate","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4994952-0413-LAB/results/944160922/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-04-13 15:52:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1310,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1689","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995043-0413-LAB","Sample-Routine","Water",NA,2021-04-13,"09:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160933",NA,"as N","Nitrate","Total","5.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995043-0413-LAB/results/944160933/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-04-13 16:29:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5170,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1690","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995075-0413-LAB","Sample-Routine","Water",NA,2021-04-13,"09:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160944",NA,"as N","Nitrate","Total","3.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995075-0413-LAB/results/944160944/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-04-13 16:56:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3100,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1691","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995222-0413-LAB","Sample-Routine","Water",NA,2021-04-13,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160955",NA,"as N","Nitrate","Total","0.921","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995222-0413-LAB/results/944160955/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-04-13 17:14:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",921,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1692","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995210-0413-LAB","Sample-Routine","Water",NA,2021-04-13,"11:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160966",NA,"as N","Nitrate","Total","9.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995210-0413-LAB/results/944160966/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:12:59","STORET",7,NA,2021-04-13 18:43:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9890,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1693","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996680-0413-LAB","Sample-Routine","Water",NA,2021-04-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160977",NA,"as N","Nitrate","Total","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996680-0413-LAB/results/944160977/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-13 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",381,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1694","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995575-0413-LAB","Sample-Routine","Water",NA,2021-04-13,"13:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160988",NA,"as N","Nitrate","Total","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995575-0413-LAB/results/944160988/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-13 20:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",362,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1695","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4917712-0413-LAB","Sample-Routine","Water",NA,2021-04-13,"14:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944160999",NA,"as N","Nitrate","Total","2.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4917712-0413-LAB/results/944160999/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-13 21:23:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2100,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1696","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4995467-0413-LAB","Sample-Routine","Water",NA,2021-04-13,"14:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161010",NA,"as N","Nitrate","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4995467-0413-LAB/results/944161010/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-13 21:49:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1410,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1697","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996570-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"09:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161021",NA,"as N","Nitrate","Total","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996570-0414-LAB/results/944161021/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-14 16:09:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2310,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1698","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996560-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"09:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161032",NA,"as N","Nitrate","Total","30","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996560-0414-LAB/results/944161032/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-14 16:23:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",30000,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1699","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996550-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"09:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161043",NA,"as N","Nitrate","Total","26.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996550-0414-LAB/results/944161043/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-14 16:37:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",26600,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1700","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996410-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"09:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161054",NA,"as N","Nitrate","Total","0.834","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996410-0414-LAB/results/944161054/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-14 16:59:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",834,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1701","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996190-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161065",NA,"as N","Nitrate","Total","5.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996190-0414-LAB/results/944161065/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-14 17:14:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5740,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1702","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996540-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"10:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161076",NA,"as N","Nitrate","Total","13.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996540-0414-LAB/results/944161076/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-14 17:49:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",13200,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1703","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996566-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"11:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161087",NA,"as N","Nitrate","Total","11.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996566-0414-LAB/results/944161087/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-14 18:02:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11500,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1704","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996275-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"11:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161098",NA,"as N","Nitrate","Total","5.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996275-0414-LAB/results/944161098/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-14 18:16:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5690,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1705","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996100-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"11:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161109",NA,"as N","Nitrate","Total","0.623","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996100-0414-LAB/results/944161109/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:00","STORET",7,NA,2021-04-14 18:35:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",623,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1706","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996022-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"12:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161120",NA,"as N","Nitrate","Total","2.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996022-0414-LAB/results/944161120/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-04-14 19:07:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2910,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1707","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996020-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"12:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161131",NA,"as N","Nitrate","Total","4.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996020-0414-LAB/results/944161131/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-04-14 19:24:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4480,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1708","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0421-4996003-0414-LAB","Sample-Routine","Water",NA,2021-04-14,"12:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161142",NA,"as N","Nitrate","Total","2.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0421-4996003-0414-LAB/results/944161142/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-04-14 19:42:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2960,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1709","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4994952-0511-LAB","Sample-Routine","Water",NA,2021-05-11,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161153",NA,"as N","Nitrate","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4994952-0511-LAB/results/944161153/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-05-11 15:57:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1380,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1710","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995043-0511-LAB","Sample-Routine","Water",NA,2021-05-11,"09:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161164",NA,"as N","Nitrate","Total","2.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995043-0511-LAB/results/944161164/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-05-11 16:36:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2240,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1711","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995075-0511-LAB","Sample-Routine","Water",NA,2021-05-11,"10:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161175",NA,"as N","Nitrate","Total","2.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995075-0511-LAB/results/944161175/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-05-11 17:07:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2980,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1712","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995222-0511-LAB","Sample-Routine","Water",NA,2021-05-11,"10:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161186",NA,"as N","Nitrate","Total","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995222-0511-LAB/results/944161186/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-05-11 17:32:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",561,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1713","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995210-0511-LAB","Sample-Routine","Water",NA,2021-05-11,"11:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161197",NA,"as N","Nitrate","Total","11.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995210-0511-LAB/results/944161197/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-05-11 18:42:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11600,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1714","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996680-0511-LAB","Sample-Routine","Water",NA,2021-05-11,"13:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161208",NA,"as N","Nitrate","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996680-0511-LAB/results/944161208/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-05-11 20:17:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",275,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1715","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995575-0511-LAB","Sample-Routine","Water",NA,2021-05-11,"14:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161219",NA,"as N","Nitrate","Total","0.149","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995575-0511-LAB/results/944161219/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-05-11 21:23:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",149,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1716","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4917712-0511-LAB","Sample-Routine","Water",NA,2021-05-11,"15:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161230",NA,"as N","Nitrate","Total","4.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4917712-0511-LAB/results/944161230/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-05-11 22:41:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4580,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1717","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4995467-0511-LAB","Sample-Routine","Water",NA,2021-05-11,"16:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161245",NA,"as N","Nitrate","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4995467-0511-LAB/results/944161245/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:01","STORET",7,NA,2021-05-11 23:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1500,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1718","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996570-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"08:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161256",NA,"as N","Nitrate","Total","1.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996570-0512-LAB/results/944161256/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 15:43:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1930,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1719","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996560-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"09:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161267",NA,"as N","Nitrate","Total","27.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996560-0512-LAB/results/944161267/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 16:06:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",27600,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1720","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996550-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"09:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161278",NA,"as N","Nitrate","Total","23.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996550-0512-LAB/results/944161278/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 16:21:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",23600,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1721","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996410-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161289",NA,"as N","Nitrate","Total","0.591","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996410-0512-LAB/results/944161289/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 16:47:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",591,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1722","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996190-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161300",NA,"as N","Nitrate","Total","6.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996190-0512-LAB/results/944161300/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 17:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6760,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1723","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996540-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"10:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161311",NA,"as N","Nitrate","Total","6.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996540-0512-LAB/results/944161311/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 17:37:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6970,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1724","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996566-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"10:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161322",NA,"as N","Nitrate","Total","6.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996566-0512-LAB/results/944161322/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 17:53:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6680,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1725","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996275-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"11:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161333",NA,"as N","Nitrate","Total","6.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996275-0512-LAB/results/944161333/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 18:27:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6530,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1726","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996100-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"11:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161344",NA,"as N","Nitrate","Total","0.147","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996100-0512-LAB/results/944161344/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 18:52:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",147,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1727","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996022-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"12:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161355",NA,"as N","Nitrate","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996022-0512-LAB/results/944161355/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 19:27:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1170,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1728","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996020-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"12:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161366",NA,"as N","Nitrate","Total","3.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996020-0512-LAB/results/944161366/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:02","STORET",7,NA,2021-05-12 19:45:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3200,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1729","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0521-4996003-0512-LAB","Sample-Routine","Water",NA,2021-05-12,"13:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161377",NA,"as N","Nitrate","Total","2.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0521-4996003-0512-LAB/results/944161377/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-05-12 20:24:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2160,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1730","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4994952-0615-LAB","Sample-Routine","Water",NA,2021-06-15,"08:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161388",NA,"as N","Nitrate","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4994952-0615-LAB/results/944161388/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-15 15:56:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1070,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1731","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995043-0615-LAB","Sample-Routine","Water",NA,2021-06-15,"09:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161399",NA,"as N","Nitrate","Total","4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995043-0615-LAB/results/944161399/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-15 16:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4000,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1732","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995075-0615-LAB","Sample-Routine","Water",NA,2021-06-15,"10:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161410",NA,"as N","Nitrate","Total","2.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995075-0615-LAB/results/944161410/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-15 17:01:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2720,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1733","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995222-0615-LAB","Sample-Routine","Water",NA,2021-06-15,"11:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161421",NA,"as N","Nitrate","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995222-0615-LAB/results/944161421/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-15 18:01:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1020,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1734","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995210-0615-LAB","Sample-Routine","Water",NA,2021-06-15,"12:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161432",NA,"as N","Nitrate","Total","14.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995210-0615-LAB/results/944161432/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-15 19:36:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",14900,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1735","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996680-0615-LAB","Sample-Routine","Water",NA,2021-06-15,"13:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161443",NA,"as N","Nitrate","Total","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996680-0615-LAB/results/944161443/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-15 20:47:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",279,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1736","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4995575-0615-LAB","Sample-Routine","Water",NA,2021-06-15,"15:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161454","Below Reporting Limit","as N","Nitrate","Total",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4995575-0615-LAB/results/944161454/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-15 22:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1737","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996570-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"08:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161465",NA,"as N","Nitrate","Total","1.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996570-0616-LAB/results/944161465/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-16 15:36:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1840,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1738","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996560-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"08:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161476",NA,"as N","Nitrate","Total","24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996560-0616-LAB/results/944161476/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-16 15:54:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",24000,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1739","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996550-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"09:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161487",NA,"as N","Nitrate","Total","20","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996550-0616-LAB/results/944161487/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:03","STORET",7,NA,2021-06-16 16:04:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",20000,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1740","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996410-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"09:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161498",NA,"as N","Nitrate","Total","0.734","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996410-0616-LAB/results/944161498/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:04","STORET",7,NA,2021-06-16 16:34:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",734,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1741","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996190-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161509",NA,"as N","Nitrate","Total","8.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996190-0616-LAB/results/944161509/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:04","STORET",7,NA,2021-06-16 16:55:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8760,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1742","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996540-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"10:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161520",NA,"as N","Nitrate","Total","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996540-0616-LAB/results/944161520/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:04","STORET",7,NA,2021-06-16 17:28:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10600,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1743","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996566-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"10:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161531",NA,"as N","Nitrate","Total","6.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996566-0616-LAB/results/944161531/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:04","STORET",7,NA,2021-06-16 17:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6990,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1744","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996275-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"11:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161542",NA,"as N","Nitrate","Total","7.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996275-0616-LAB/results/944161542/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:04","STORET",7,NA,2021-06-16 18:06:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7890,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1745","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996100-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"11:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161557","Below Reporting Limit","as N","Nitrate","Total",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996100-0616-LAB/results/944161557/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:04","STORET",7,NA,2021-06-16 18:27:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1746","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996022-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"12:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161568",NA,"as N","Nitrate","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996022-0616-LAB/results/944161568/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:04","STORET",7,NA,2021-06-16 19:14:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1130,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1747","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996020-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161579",NA,"as N","Nitrate","Total","5.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996020-0616-LAB/results/944161579/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:04","STORET",7,NA,2021-06-16 19:35:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5490,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1748","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4996003-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"12:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161590",NA,"as N","Nitrate","Total","3.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4996003-0616-LAB/results/944161590/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:04","STORET",7,NA,2021-06-16 19:51:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3660,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1749","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0621-4917712-0616-LAB","Sample-Routine","Water",NA,2021-06-16,"13:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161601",NA,"as N","Nitrate","Total","3.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0621-4917712-0616-LAB/results/944161601/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-06-16 20:47:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3050,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1750","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4994952-0713-LAB","Sample-Routine","Water",NA,2021-07-13,"08:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161612",NA,"as N","Nitrate","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4994952-0713-LAB/results/944161612/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-07-13 15:36:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1130,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1751","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995043-0713-LAB","Sample-Routine","Water",NA,2021-07-13,"09:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161623",NA,"as N","Nitrate","Total","4.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995043-0713-LAB/results/944161623/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-07-13 16:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4460,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1752","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995075-0713-LAB","Sample-Routine","Water",NA,2021-07-13,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161634",NA,"as N","Nitrate","Total","2.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995075-0713-LAB/results/944161634/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-07-13 17:00:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2580,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1753","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995222-0713-LAB","Sample-Routine","Water",NA,2021-07-13,"10:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161645",NA,"as N","Nitrate","Total","0.584","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995222-0713-LAB/results/944161645/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-07-13 17:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",584,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1754","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996680-0713-LAB","Sample-Routine","Water",NA,2021-07-13,"14:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161656",NA,"as N","Nitrate","Total","0.413","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996680-0713-LAB/results/944161656/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-07-13 21:14:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",413,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1755","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995210-0713-LAB","Sample-Routine","Water",NA,2021-07-13,"12:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161667",NA,"as N","Nitrate","Total","20.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995210-0713-LAB/results/944161667/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-07-13 19:17:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",20400,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1756","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4995575-0713-LAB","Sample-Routine","Water",NA,2021-07-13,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161678",NA,"as N","Nitrate","Total","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4995575-0713-LAB/results/944161678/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-07-13 21:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",287,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1757","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4917712-0713-LAB","Sample-Routine","Water",NA,2021-07-13,"16:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161689",NA,"as N","Nitrate","Total","2.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4917712-0713-LAB/results/944161689/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-07-13 23:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2600,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1758","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996560-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"08:45:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161700",NA,"as N","Nitrate","Total","24.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996560-0714-LAB/results/944161700/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:05","STORET",7,NA,2021-07-14 15:45:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",24100,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1759","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996020-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"09:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161711",NA,"as N","Nitrate","Total","6.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996020-0714-LAB/results/944161711/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 16:09:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6090,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1760","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996570-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"09:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161722",NA,"as N","Nitrate","Total","1.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996570-0714-LAB/results/944161722/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 16:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1950,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1761","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996550-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161733",NA,"as N","Nitrate","Total","23.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996550-0714-LAB/results/944161733/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",23700,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1762","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996410-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161744",NA,"as N","Nitrate","Total","0.487","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996410-0714-LAB/results/944161744/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 17:24:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",487,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1763","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996190-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"10:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161755",NA,"as N","Nitrate","Total","8.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996190-0714-LAB/results/944161755/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 17:38:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8430,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1764","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996540-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"11:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161766",NA,"as N","Nitrate","Total","6.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996540-0714-LAB/results/944161766/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 18:09:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6980,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1765","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996566-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"11:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161777",NA,"as N","Nitrate","Total","6.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996566-0714-LAB/results/944161777/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 18:27:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6670,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1766","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996275-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"11:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161788",NA,"as N","Nitrate","Total","9.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996275-0714-LAB/results/944161788/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 18:49:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9180,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1767","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996100-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161799",NA,"as N","Nitrate","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996100-0714-LAB/results/944161799/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 19:09:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1768","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996022-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"13:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161810",NA,"as N","Nitrate","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996022-0714-LAB/results/944161810/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 20:19:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1120,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1769","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0721-4996003-0714-LAB","Sample-Routine","Water",NA,2021-07-14,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161821",NA,"as N","Nitrate","Total","4.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0721-4996003-0714-LAB/results/944161821/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:06","STORET",7,NA,2021-07-14 20:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4870,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1770","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4994952-0817-LAB","Sample-Routine","Water",NA,2021-08-17,"08:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161832",NA,"as N","Nitrate","Total","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4994952-0817-LAB/results/944161832/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-17 15:58:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1540,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1771","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995043-0817-LAB","Sample-Routine","Water",NA,2021-08-17,"09:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161843",NA,"as N","Nitrate","Total","7.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995043-0817-LAB/results/944161843/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-17 16:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7410,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1772","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995075-0817-LAB","Sample-Routine","Water",NA,2021-08-17,"09:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161854",NA,"as N","Nitrate","Total","3.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995075-0817-LAB/results/944161854/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-17 16:59:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3060,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1773","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995222-0817-LAB","Sample-Routine","Water",NA,2021-08-17,"10:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161865",NA,"as N","Nitrate","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995222-0817-LAB/results/944161865/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-17 17:34:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1090,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1774","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995210-0817-LAB","Sample-Routine","Water",NA,2021-08-17,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161876",NA,"as N","Nitrate","Total","14.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995210-0817-LAB/results/944161876/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-17 18:46:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",14200,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1775","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996680-0817-LAB","Sample-Routine","Water",NA,2021-08-17,"13:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161889","Below Reporting Limit","as N","Nitrate","Total",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996680-0817-LAB/results/944161889/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-17 20:12:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1776","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995575-0817-LAB","Sample-Routine","Water",NA,2021-08-17,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161902",NA,"as N","Nitrate","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995575-0817-LAB/results/944161902/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",NA,NA,NA,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",269,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1777","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4917712-0817-LAB","Sample-Routine","Water",NA,2021-08-17,"16:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161913",NA,"as N","Nitrate","Total","3.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4917712-0817-LAB/results/944161913/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-17 23:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3460,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1778","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4995467-0817-LAB","Sample-Routine","Water",NA,2021-08-17,"16:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161924",NA,"as N","Nitrate","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4995467-0817-LAB/results/944161924/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-17 23:41:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1650,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1779","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996570-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"09:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161935",NA,"as N","Nitrate","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996570-0818-LAB/results/944161935/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-18 16:27:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1300,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1780","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996560-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161946",NA,"as N","Nitrate","Total","25.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996560-0818-LAB/results/944161946/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-18 16:47:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",25400,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1781","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996550-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161957",NA,"as N","Nitrate","Total","8.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996550-0818-LAB/results/944161957/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-18 17:14:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8940,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1782","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996410-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"10:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161968",NA,"as N","Nitrate","Total","0.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996410-0818-LAB/results/944161968/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:07","STORET",7,NA,2021-08-18 17:47:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",960,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1783","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996190-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"11:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161979",NA,"as N","Nitrate","Total","4.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996190-0818-LAB/results/944161979/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-08-18 18:04:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4330,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1784","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996540-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"11:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944161990",NA,"as N","Nitrate","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996540-0818-LAB/results/944161990/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-08-18 18:42:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10500,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1785","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996566-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"12:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162001",NA,"as N","Nitrate","Total","9.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996566-0818-LAB/results/944162001/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-08-18 19:02:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9660,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1786","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996275-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"12:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162012",NA,"as N","Nitrate","Total","3.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996275-0818-LAB/results/944162012/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-08-18 19:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3850,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1787","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996100-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"12:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162023",NA,"as N","Nitrate","Total","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996100-0818-LAB/results/944162023/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-08-18 19:44:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",578,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1788","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996022-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"13:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162034",NA,"as N","Nitrate","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996022-0818-LAB/results/944162034/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-08-18 20:28:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1490,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1789","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996020-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"13:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162045",NA,"as N","Nitrate","Total","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996020-0818-LAB/results/944162045/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-08-18 20:54:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3320,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1790","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0821-4996003-0818-LAB","Sample-Routine","Water",NA,2021-08-18,"14:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162056",NA,"as N","Nitrate","Total","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0821-4996003-0818-LAB/results/944162056/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-08-18 21:06:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1820,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1791","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4994952-0914-LAB","Sample-Routine","Water",NA,2021-09-14,"08:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162067",NA,"as N","Nitrate","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4994952-0914-LAB/results/944162067/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-09-14 15:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1310,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1792","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995043-0914-LAB","Sample-Routine","Water",NA,2021-09-14,"09:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162078",NA,"as N","Nitrate","Total","6.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995043-0914-LAB/results/944162078/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-09-14 16:16:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6260,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1793","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995075-0914-LAB","Sample-Routine","Water",NA,2021-09-14,"10:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162089",NA,"as N","Nitrate","Total","2.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995075-0914-LAB/results/944162089/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-09-14 17:03:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2990,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1794","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995210-0914-LAB","Sample-Routine","Water",NA,2021-09-14,"12:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162100",NA,"as N","Nitrate","Total","16.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995210-0914-LAB/results/944162100/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-09-14 19:23:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",16160,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1795","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996680-0914-LAB","Sample-Routine","Water",NA,2021-09-14,"13:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162111",NA,"as N","Nitrate","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996680-0914-LAB/results/944162111/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-09-14 20:46:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",242,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1796","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995575-0914-LAB","Sample-Routine","Water",NA,2021-09-14,"15:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162122",NA,"as N","Nitrate","Total","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995575-0914-LAB/results/944162122/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-09-14 22:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",345,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1797","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4917712-0914-LAB","Sample-Routine","Water",NA,2021-09-14,"17:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162133",NA,"as N","Nitrate","Total","3.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4917712-0914-LAB/results/944162133/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-09-15 00:09:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3020,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1798","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996570-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"08:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162144",NA,"as N","Nitrate","Total","2.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996570-0915-LAB/results/944162144/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-09-15 15:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2450,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1799","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996560-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162155",NA,"as N","Nitrate","Total","24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996560-0915-LAB/results/944162155/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:08","STORET",7,NA,2021-09-15 15:57:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",24000,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1800","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996550-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"09:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162166",NA,"as N","Nitrate","Total","21.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996550-0915-LAB/results/944162166/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:09","STORET",7,NA,2021-09-15 16:16:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",21800,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1801","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996410-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"09:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162177",NA,"as N","Nitrate","Total","0.879","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996410-0915-LAB/results/944162177/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:09","STORET",7,NA,2021-09-15 16:44:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",879,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1802","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996190-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162188",NA,"as N","Nitrate","Total","6.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996190-0915-LAB/results/944162188/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:09","STORET",7,NA,2021-09-15 17:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6470,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1803","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996540-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"10:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162199",NA,"as N","Nitrate","Total","12.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996540-0915-LAB/results/944162199/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:09","STORET",7,NA,2021-09-15 17:33:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12300,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1804","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996566-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"10:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162210",NA,"as N","Nitrate","Total","12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996566-0915-LAB/results/944162210/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:09","STORET",7,NA,2021-09-15 17:49:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12000,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1805","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996275-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"11:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162221",NA,"as N","Nitrate","Total","7.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996275-0915-LAB/results/944162221/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:09","STORET",7,NA,2021-09-15 18:09:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7070,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1806","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996100-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162232",NA,"as N","Nitrate","Total","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996100-0915-LAB/results/944162232/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:09","STORET",7,NA,2021-09-15 18:28:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",270,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1807","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996020-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"12:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162243",NA,"as N","Nitrate","Total","2.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996020-0915-LAB/results/944162243/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:09","STORET",7,NA,2021-09-15 19:00:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2990,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1808","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996022-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"12:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162254",NA,"as N","Nitrate","Total","2.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996022-0915-LAB/results/944162254/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:09","STORET",7,NA,2021-09-15 19:59:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2930,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1809","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4996003-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"13:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162269",NA,"as N","Nitrate","Total","2.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4996003-0915-LAB/results/944162269/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:10","STORET",7,NA,2021-09-15 20:07:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2920,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1810","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0921-4995467-0915-LAB","Sample-Routine","Water",NA,2021-09-15,"13:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162280",NA,"as N","Nitrate","Total","0.438","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0921-4995467-0915-LAB/results/944162280/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:10","STORET",7,NA,2021-09-15 20:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",438,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1811","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4994952-1012-LAB","Sample-Routine","Water",NA,2021-10-12,"08:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162291",NA,"as N","Nitrate","Total","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4994952-1012-LAB/results/944162291/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:10","STORET",7,NA,2021-10-12 15:42:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1630,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1812","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995043-1012-LAB","Sample-Routine","Water",NA,2021-10-12,"09:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162302",NA,"as N","Nitrate","Total","8.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995043-1012-LAB/results/944162302/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:10","STORET",7,NA,2021-10-12 16:23:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8130,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1813","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995075-1012-LAB","Sample-Routine","Water",NA,2021-10-12,"10:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162313",NA,"as N","Nitrate","Total","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995075-1012-LAB/results/944162313/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:10","STORET",7,NA,2021-10-12 17:05:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2310,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1814","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995222-1012-LAB","Sample-Routine","Water",NA,2021-10-12,"10:40:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162324",NA,"as N","Nitrate","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995222-1012-LAB/results/944162324/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:10","STORET",7,NA,2021-10-12 17:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1250,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1815","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995210-1012-LAB","Sample-Routine","Water",NA,2021-10-12,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162335",NA,"as N","Nitrate","Total","12.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995210-1012-LAB/results/944162335/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:10","STORET",7,NA,2021-10-12 18:46:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12900,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1816","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996680-1012-LAB","Sample-Routine","Water",NA,2021-10-12,"13:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162346",NA,"as N","Nitrate","Total","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996680-1012-LAB/results/944162346/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:10","STORET",7,NA,2021-10-12 20:27:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",342,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1817","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995575-1012-LAB","Sample-Routine","Water",NA,2021-10-12,"14:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162357",NA,"as N","Nitrate","Total","0.601","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995575-1012-LAB/results/944162357/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-12 21:48:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",601,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1818","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4917712-1012-LAB","Sample-Routine","Water",NA,2021-10-12,"15:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162368",NA,"as N","Nitrate","Total","6.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4917712-1012-LAB/results/944162368/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-12 22:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6170,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1819","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4995467-1012-LAB","Sample-Routine","Water",NA,2021-10-12,"16:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162379",NA,"as N","Nitrate","Total","2.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4995467-1012-LAB/results/944162379/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-12 23:06:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2670,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1820","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996570-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"09:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162390",NA,"as N","Nitrate","Total","2.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996570-1013-LAB/results/944162390/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-13 16:02:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2570,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1821","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996560-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"09:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162401",NA,"as N","Nitrate","Total","25.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996560-1013-LAB/results/944162401/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-13 16:54:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",25200,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1822","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996550-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"09:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162412",NA,"as N","Nitrate","Total","23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996550-1013-LAB/results/944162412/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-13 16:32:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",23000,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1823","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996410-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"10:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162423",NA,"as N","Nitrate","Total","0.689","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996410-1013-LAB/results/944162423/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-13 17:10:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",689,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1824","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996190-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"10:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162434",NA,"as N","Nitrate","Total","8.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996190-1013-LAB/results/944162434/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-13 17:37:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8460,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1825","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996540-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"11:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162445",NA,"as N","Nitrate","Total","7.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996540-1013-LAB/results/944162445/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-13 18:13:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7880,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1826","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996566-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"11:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162456",NA,"as N","Nitrate","Total","6.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996566-1013-LAB/results/944162456/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:11","STORET",7,NA,2021-10-13 18:28:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6590,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1827","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996275-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"11:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162467",NA,"as N","Nitrate","Total","7.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996275-1013-LAB/results/944162467/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-10-13 18:54:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7500,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1828","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996100-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"12:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162478",NA,"as N","Nitrate","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996100-1013-LAB/results/944162478/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-10-13 19:12:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1310,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1829","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996020-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"13:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162489",NA,"as N","Nitrate","Total","5.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996020-1013-LAB/results/944162489/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-10-13 20:23:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5880,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1830","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996003-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"13:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162500",NA,"as N","Nitrate","Total","3.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996003-1013-LAB/results/944162500/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-10-13 20:32:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3850,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1831","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1021-4996022-1013-LAB","Sample-Routine","Water",NA,2021-10-13,"13:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162511",NA,"as N","Nitrate","Total","2.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1021-4996022-1013-LAB/results/944162511/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-10-13 20:06:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2700,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1832","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4994952-1108-LAB","Sample-Routine","Water",NA,2021-11-08,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162522",NA,"as N","Nitrate","Total","2.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4994952-1108-LAB/results/944162522/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-11-08 15:57:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2350,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1833","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995075-1108-LAB","Sample-Routine","Water",NA,2021-11-08,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162533",NA,"as N","Nitrate","Total","3.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995075-1108-LAB/results/944162533/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-11-08 16:47:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3200,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1834","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995222-1108-LAB","Sample-Routine","Water",NA,2021-11-08,"10:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162544",NA,"as N","Nitrate","Total","3.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995222-1108-LAB/results/944162544/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-11-08 17:39:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3700,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1835","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996680-1108-LAB","Sample-Routine","Water",NA,2021-11-08,"11:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162559","Below Reporting Limit","as N","Nitrate","Total",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996680-1108-LAB/results/944162559/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-11-08 18:11:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1836","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995575-1108-LAB","Sample-Routine","Water",NA,2021-11-08,"13:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162570",NA,"as N","Nitrate","Total","0.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995575-1108-LAB/results/944162570/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-11-08 20:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",300,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1837","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4917712-1108-LAB","Sample-Routine","Water",NA,2021-11-08,"14:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162581",NA,"as N","Nitrate","Total","7.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4917712-1108-LAB/results/944162581/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-11-08 21:47:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7520,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1838","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995043-1109-LAB","Sample-Routine","Water",NA,2021-11-09,"09:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162592",NA,"as N","Nitrate","Total","8.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995043-1109-LAB/results/944162592/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:12","STORET",7,NA,2021-11-09 16:11:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8470,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1839","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4995210-1109-LAB","Sample-Routine","Water",NA,2021-11-09,"10:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162603",NA,"as N","Nitrate","Total","17.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4995210-1109-LAB/results/944162603/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-09 17:53:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",17600,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1840","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996570-1109-LAB","Sample-Routine","Water",NA,2021-11-09,"12:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162614",NA,"as N","Nitrate","Total","2.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996570-1109-LAB/results/944162614/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-09 19:29:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2540,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1841","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996560-1109-LAB","Sample-Routine","Water",NA,2021-11-09,"12:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162625",NA,"as N","Nitrate","Total","24.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996560-1109-LAB/results/944162625/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-09 19:48:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",24200,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1842","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996550-1109-LAB","Sample-Routine","Water",NA,2021-11-09,"13:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162636",NA,"as N","Nitrate","Total","21.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996550-1109-LAB/results/944162636/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-09 20:39:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",21100,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1843","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996410-1109-LAB","Sample-Routine","Water",NA,2021-11-09,"13:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162647",NA,"as N","Nitrate","Total","0.879","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996410-1109-LAB/results/944162647/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-09 20:56:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",879,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1844","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996190-1109-LAB","Sample-Routine","Water",NA,2021-11-09,"14:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162658",NA,"as N","Nitrate","Total","8.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996190-1109-LAB/results/944162658/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-09 21:26:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8930,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1845","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996540-1109-LAB","Sample-Routine","Water",NA,2021-11-09,"15:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162669",NA,"as N","Nitrate","Total","10.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996540-1109-LAB/results/944162669/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-09 22:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10500,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1846","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996566-1109-LAB","Sample-Routine","Water",NA,2021-11-09,"15:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162680",NA,"as N","Nitrate","Total","9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996566-1109-LAB/results/944162680/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-09 22:36:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9000,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1847","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996275-1110-LAB","Sample-Routine","Water",NA,2021-11-10,"08:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162691",NA,"as N","Nitrate","Total","6.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996275-1110-LAB/results/944162691/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-10 15:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6980,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1848","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996100-1110-LAB","Sample-Routine","Water",NA,2021-11-10,"08:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162702",NA,"as N","Nitrate","Total","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996100-1110-LAB/results/944162702/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-10 15:48:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",847,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1849","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996022-1110-LAB","Sample-Routine","Water",NA,2021-11-10,"09:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162713",NA,"as N","Nitrate","Total","2.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996022-1110-LAB/results/944162713/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-10 16:59:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2570,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1850","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996020-1110-LAB","Sample-Routine","Water",NA,2021-11-10,"10:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162724",NA,"as N","Nitrate","Total","3.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996020-1110-LAB/results/944162724/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:13","STORET",7,NA,2021-11-10 17:22:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3470,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1851","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-4996003-1110-LAB","Sample-Routine","Water",NA,2021-11-10,"10:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162735",NA,"as N","Nitrate","Total","2.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-4996003-1110-LAB/results/944162735/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:14","STORET",7,NA,2021-11-10 17:33:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2710,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1852","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC1121-5919860-1110-LAB","Sample-Routine","Water",NA,2021-11-10,"11:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-5919860","Beer Creek at 6400 S Road",NA,NA,NA,NA,"40.1144010000","-111.7929820000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944162746",NA,"as N","Nitrate","Total","4.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC1121-5919860-1110-LAB/results/944162746/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:13:14","STORET",7,NA,2021-11-10 18:09:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1144010000","-111.7929820000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4040,"UG/L","Numeric","Not Reviewed","Uncensored",40.114401,-111.792982,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1853","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4917712-0104-LAB","Sample-Routine","Water",NA,2022-01-04,"15:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170157",NA,"as N","Nitrate","Total","6.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4917712-0104-LAB/results/944170157/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:41","STORET",7,NA,2022-01-04 22:03:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6890,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1854","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4994952-0104-LAB","Sample-Routine","Water",NA,2022-01-04,"08:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170168",NA,"as N","Nitrate","Total","3.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4994952-0104-LAB/results/944170168/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:41","STORET",7,NA,2022-01-04 15:28:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3240,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1855","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4995043-0104-LAB","Sample-Routine","Water",NA,2022-01-04,"09:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170179",NA,"as N","Nitrate","Total","6.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4995043-0104-LAB/results/944170179/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:41","STORET",7,NA,2022-01-04 16:06:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6150,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1856","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4995075-0104-LAB","Sample-Routine","Water",NA,2022-01-04,"09:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170190",NA,"as N","Nitrate","Total","3.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4995075-0104-LAB/results/944170190/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:41","STORET",7,NA,2022-01-04 16:53:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3110,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1857","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4995210-0104-LAB","Sample-Routine","Water",NA,2022-01-04,"11:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170201",NA,"as N","Nitrate","Total","15.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4995210-0104-LAB/results/944170201/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:41","STORET",7,NA,2022-01-04 18:43:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15200,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1858","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4995222-0104-LAB","Sample-Routine","Water",NA,2022-01-04,"10:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170212",NA,"as N","Nitrate","Total","4.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4995222-0104-LAB/results/944170212/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:41","STORET",7,NA,2022-01-04 17:34:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4050,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1859","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996680-0104-LAB","Sample-Routine","Water",NA,2022-01-04,"13:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170223",NA,"as N","Nitrate","Total","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996680-0104-LAB/results/944170223/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-04 20:12:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",421,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1860","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-5919860-0104-LAB","Sample-Routine","Water",NA,2022-01-04,"15:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-5919860","Beer Creek at 6400 S Road",NA,NA,NA,NA,"40.1144010000","-111.7929820000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170234",NA,"as N","Nitrate","Total","2.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-5919860-0104-LAB/results/944170234/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-04 22:38:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1144010000","-111.7929820000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2920,"UG/L","Numeric","Not Reviewed","Uncensored",40.114401,-111.792982,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1861","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996003-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"13:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170245",NA,"as N","Nitrate","Total","2.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996003-0105-LAB/results/944170245/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 20:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2790,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1862","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996020-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"12:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170256",NA,"as N","Nitrate","Total","3.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996020-0105-LAB/results/944170256/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 19:51:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3840,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1863","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996022-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"12:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170267",NA,"as N","Nitrate","Total","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996022-0105-LAB/results/944170267/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 19:18:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2310,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1864","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996190-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"10:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170278",NA,"as N","Nitrate","Total","5.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996190-0105-LAB/results/944170278/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 17:14:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5450,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1865","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996275-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"11:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170289",NA,"as N","Nitrate","Total","5.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996275-0105-LAB/results/944170289/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 18:41:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5200,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1866","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996410-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"09:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170300",NA,"as N","Nitrate","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996410-0105-LAB/results/944170300/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 16:49:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1090,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1867","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996540-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"10:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170311",NA,"as N","Nitrate","Total","10.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996540-0105-LAB/results/944170311/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 17:49:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10800,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1868","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996550-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170322",NA,"as N","Nitrate","Total","20.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996550-0105-LAB/results/944170322/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 16:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",20400,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1869","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996560-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"09:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170333",NA,"as N","Nitrate","Total","23.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996560-0105-LAB/results/944170333/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 16:09:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",23800,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1870","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996566-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"11:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170344",NA,"as N","Nitrate","Total","8.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996566-0105-LAB/results/944170344/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 18:08:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8780,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1871","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0122-4996570-0105-LAB","Sample-Routine","Water",NA,2022-01-05,"08:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170355",NA,"as N","Nitrate","Total","2.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0122-4996570-0105-LAB/results/944170355/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-01-05 15:51:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2500,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1872","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4917712-0214-LAB","Sample-Routine","Water",NA,2022-02-14,"14:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170366",NA,"as N","Nitrate","Total","4.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4917712-0214-LAB/results/944170366/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-02-14 21:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4800,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1873","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4994952-0214-LAB","Sample-Routine","Water",NA,2022-02-14,"08:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170377",NA,"as N","Nitrate","Total","3.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4994952-0214-LAB/results/944170377/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-02-14 15:47:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3060,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1874","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995043-0214-LAB","Sample-Routine","Water",NA,2022-02-14,"09:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170388",NA,"as N","Nitrate","Total","5.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995043-0214-LAB/results/944170388/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-02-14 16:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5750,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1875","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995075-0214-LAB","Sample-Routine","Water",NA,2022-02-14,"09:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170399",NA,"as N","Nitrate","Total","3.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995075-0214-LAB/results/944170399/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-02-14 16:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3200,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1876","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995210-0214-LAB","Sample-Routine","Water",NA,2022-02-14,"11:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170410",NA,"as N","Nitrate","Total","10.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995210-0214-LAB/results/944170410/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-02-14 18:49:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10400,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1877","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995575-0214-LAB","Sample-Routine","Water",NA,2022-02-14,"14:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170421",NA,"as N","Nitrate","Total","0.494","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995575-0214-LAB/results/944170421/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:42","STORET",7,NA,2022-02-14 21:04:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",494,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1878","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996680-0214-LAB","Sample-Routine","Water",NA,2022-02-14,"13:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170432",NA,"as N","Nitrate","Total","0.353","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996680-0214-LAB/results/944170432/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-14 20:07:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",353,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1879","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4995467-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"13:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170443",NA,"as N","Nitrate","Total","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4995467-0216-LAB/results/944170443/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2220,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1880","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996003-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"12:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170454",NA,"as N","Nitrate","Total","2.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996003-0216-LAB/results/944170454/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 19:38:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2590,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1881","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996020-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"12:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170465",NA,"as N","Nitrate","Total","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996020-0216-LAB/results/944170465/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 19:26:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1780,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1882","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996022-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"12:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170476",NA,"as N","Nitrate","Total","3.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996022-0216-LAB/results/944170476/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 19:09:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3400,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1883","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996100-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"13:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170487",NA,"as N","Nitrate","Total","0.805","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996100-0216-LAB/results/944170487/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 20:58:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",805,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1884","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996190-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"10:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170498",NA,"as N","Nitrate","Total","2.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996190-0216-LAB/results/944170498/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 17:21:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2620,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1885","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996275-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"11:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170509",NA,"as N","Nitrate","Total","2.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996275-0216-LAB/results/944170509/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 18:39:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2670,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1886","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996410-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"10:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170520",NA,"as N","Nitrate","Total","0.796","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996410-0216-LAB/results/944170520/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 17:02:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",796,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1887","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996540-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"10:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170531",NA,"as N","Nitrate","Total","9.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996540-0216-LAB/results/944170531/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 17:57:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9730,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1888","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996550-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"09:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170542",NA,"as N","Nitrate","Total","16.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996550-0216-LAB/results/944170542/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 16:29:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",16600,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1889","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996560-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"09:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170553",NA,"as N","Nitrate","Total","18.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996560-0216-LAB/results/944170553/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 16:19:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",18800,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1890","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996566-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"11:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170564",NA,"as N","Nitrate","Total","9.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996566-0216-LAB/results/944170564/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 18:11:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9090,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1891","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0222-4996570-0216-LAB","Sample-Routine","Water",NA,2022-02-16,"09:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170575",NA,"as N","Nitrate","Total","2.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0222-4996570-0216-LAB/results/944170575/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-02-16 16:04:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2390,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1892","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4917712-0314-LAB","Sample-Routine","Water",NA,2022-03-14,"15:06:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170586",NA,"as N","Nitrate","Total","4.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4917712-0314-LAB/results/944170586/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-03-14 22:06:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4800,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1893","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4994952-0314-LAB","Sample-Routine","Water",NA,2022-03-14,"08:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170597",NA,"as N","Nitrate","Total","2.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4994952-0314-LAB/results/944170597/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-03-14 15:26:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2390,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1894","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4995043-0314-LAB","Sample-Routine","Water",NA,2022-03-14,"08:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170608",NA,"as N","Nitrate","Total","5.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4995043-0314-LAB/results/944170608/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-03-14 15:56:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5990,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1895","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4995075-0314-LAB","Sample-Routine","Water",NA,2022-03-14,"09:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170619",NA,"as N","Nitrate","Total","2.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4995075-0314-LAB/results/944170619/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-03-14 16:29:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2860,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1896","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4995210-0314-LAB","Sample-Routine","Water",NA,2022-03-14,"10:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170630",NA,"as N","Nitrate","Total","8.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4995210-0314-LAB/results/944170630/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-03-14 17:59:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8650,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1897","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4995575-0314-LAB","Sample-Routine","Water",NA,2022-03-14,"14:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170641",NA,"as N","Nitrate","Total","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4995575-0314-LAB/results/944170641/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-03-14 21:31:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",461,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1898","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996680-0314-LAB","Sample-Routine","Water",NA,2022-03-14,"12:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170652",NA,"as N","Nitrate","Total","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996680-0314-LAB/results/944170652/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-03-14 19:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",381,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1899","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996003-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"13:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170663",NA,"as N","Nitrate","Total","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996003-0316-LAB/results/944170663/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:43","STORET",7,NA,2022-03-16 20:25:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1610,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1900","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996020-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"13:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170674",NA,"as N","Nitrate","Total","0.432","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996020-0316-LAB/results/944170674/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 20:13:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",432,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1901","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996022-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"12:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170685",NA,"as N","Nitrate","Total","3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996022-0316-LAB/results/944170685/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 19:59:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3000,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1902","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996100-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"12:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170696",NA,"as N","Nitrate","Total","0.755","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996100-0316-LAB/results/944170696/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 19:01:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",755,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1903","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996190-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"10:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170707",NA,"as N","Nitrate","Total","5.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996190-0316-LAB/results/944170707/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 17:07:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5160,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1904","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996275-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"11:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170718",NA,"as N","Nitrate","Total","4.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996275-0316-LAB/results/944170718/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 18:32:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4910,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1905","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996410-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"09:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170729",NA,"as N","Nitrate","Total","0.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996410-0316-LAB/results/944170729/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 16:48:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",970,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1906","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996540-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"10:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170740",NA,"as N","Nitrate","Total","9.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996540-0316-LAB/results/944170740/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 17:46:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9660,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1907","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996550-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"09:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170751",NA,"as N","Nitrate","Total","22.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996550-0316-LAB/results/944170751/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 16:17:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",22100,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1908","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996560-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"09:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170762",NA,"as N","Nitrate","Total","28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996560-0316-LAB/results/944170762/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 16:02:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",28000,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1909","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996566-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"11:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170773",NA,"as N","Nitrate","Total","7.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996566-0316-LAB/results/944170773/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 18:07:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7690,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1910","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-4996570-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"08:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170784",NA,"as N","Nitrate","Total","2.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-4996570-0316-LAB/results/944170784/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 15:43:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2050,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1911","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0322-5919860-0316-LAB","Sample-Routine","Water",NA,2022-03-16,"14:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-5919860","Beer Creek at 6400 S Road",NA,NA,NA,NA,"40.1144010000","-111.7929820000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170795",NA,"as N","Nitrate","Total","2.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0322-5919860-0316-LAB/results/944170795/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-03-16 21:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1144010000","-111.7929820000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2660,"UG/L","Numeric","Not Reviewed","Uncensored",40.114401,-111.792982,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1912","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4994952-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"08:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170806",NA,"as N","Nitrate","Total","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4994952-0411-LAB/results/944170806/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 15:41:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1330,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1913","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995043-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"09:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170817",NA,"as N","Nitrate","Total","6.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995043-0411-LAB/results/944170817/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 16:07:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6810,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1914","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995075-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"09:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170828",NA,"as N","Nitrate","Total","2.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995075-0411-LAB/results/944170828/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 16:48:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2750,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1915","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995222-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"10:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170839",NA,"as N","Nitrate","Total","2.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995222-0411-LAB/results/944170839/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 17:12:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2860,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1916","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996100-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"15:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170850",NA,"as N","Nitrate","Total","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996100-0411-LAB/results/944170850/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 22:13:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",458,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1917","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996190-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"12:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170861",NA,"as N","Nitrate","Total","7.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996190-0411-LAB/results/944170861/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 19:26:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7030,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1918","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996275-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"14:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170872",NA,"as N","Nitrate","Total","6.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996275-0411-LAB/results/944170872/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 21:23:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6450,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1919","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996410-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"12:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170883",NA,"as N","Nitrate","Total","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996410-0411-LAB/results/944170883/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 19:04:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",869,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1920","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996540-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"13:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170894",NA,"as N","Nitrate","Total","9.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996540-0411-LAB/results/944170894/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 20:14:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9650,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1921","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996550-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"11:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170905",NA,"as N","Nitrate","Total","18.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996550-0411-LAB/results/944170905/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:44","STORET",7,NA,2022-04-11 18:53:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",18400,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1922","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996560-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"11:12:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170916",NA,"as N","Nitrate","Total","19.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996560-0411-LAB/results/944170916/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-11 18:12:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",19700,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1923","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996566-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"14:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170927",NA,"as N","Nitrate","Total","8.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996566-0411-LAB/results/944170927/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-11 21:04:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8970,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1924","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996570-0411-LAB","Sample-Routine","Water",NA,2022-04-11,"11:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170938",NA,"as N","Nitrate","Total","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996570-0411-LAB/results/944170938/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-11 18:02:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1830,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1925","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4917712-0413-LAB","Sample-Routine","Water",NA,2022-04-13,"13:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170949",NA,"as N","Nitrate","Total","5.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4917712-0413-LAB/results/944170949/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-13 20:29:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5090,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1926","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995210-0413-LAB","Sample-Routine","Water",NA,2022-04-13,"09:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170960",NA,"as N","Nitrate","Total","10.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995210-0413-LAB/results/944170960/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-13 16:48:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10900,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1927","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995467-0413-LAB","Sample-Routine","Water",NA,2022-04-13,"14:05:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170971",NA,"as N","Nitrate","Total","3.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995467-0413-LAB/results/944170971/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-13 21:05:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3470,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1928","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4995575-0413-LAB","Sample-Routine","Water",NA,2022-04-13,"12:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170982",NA,"as N","Nitrate","Total","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4995575-0413-LAB/results/944170982/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-13 19:33:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",900,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1929","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996003-0413-LAB","Sample-Routine","Water",NA,2022-04-13,"14:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944170993",NA,"as N","Nitrate","Total","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996003-0413-LAB/results/944170993/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-13 21:46:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3320,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1930","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996020-0413-LAB","Sample-Routine","Water",NA,2022-04-13,"15:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171004",NA,"as N","Nitrate","Total","3.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996020-0413-LAB/results/944171004/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-13 22:04:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3140,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1931","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996022-0413-LAB","Sample-Routine","Water",NA,2022-04-13,"15:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171015",NA,"as N","Nitrate","Total","3.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996022-0413-LAB/results/944171015/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-13 22:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3230,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1932","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0422-4996680-0413-LAB","Sample-Routine","Water",NA,2022-04-13,"11:25:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171026",NA,"as N","Nitrate","Total","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0422-4996680-0413-LAB/results/944171026/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-04-13 18:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",447,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1933","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4994952-0510-LAB","Sample-Routine","Water",NA,2022-05-10,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171037",NA,"as N","Nitrate","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4994952-0510-LAB/results/944171037/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-10 15:57:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1150,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1934","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995043-0510-LAB","Sample-Routine","Water",NA,2022-05-10,"09:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171048",NA,"as N","Nitrate","Total","7.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995043-0510-LAB/results/944171048/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-10 16:26:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7520,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1935","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995075-0510-LAB","Sample-Routine","Water",NA,2022-05-10,"09:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171059",NA,"as N","Nitrate","Total","2.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995075-0510-LAB/results/944171059/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-10 16:59:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2590,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1936","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995222-0510-LAB","Sample-Routine","Water",NA,2022-05-10,"10:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171070",NA,"as N","Nitrate","Total","0.616","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995222-0510-LAB/results/944171070/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-10 17:34:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",616,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1937","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995210-0510-LAB","Sample-Routine","Water",NA,2022-05-10,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171081",NA,"as N","Nitrate","Total","12.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995210-0510-LAB/results/944171081/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-10 18:46:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12100,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1938","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996680-0510-LAB","Sample-Routine","Water",NA,2022-05-10,"13:09:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171092",NA,"as N","Nitrate","Total","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996680-0510-LAB/results/944171092/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-10 20:09:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",310,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1939","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995575-0510-LAB","Sample-Routine","Water",NA,2022-05-10,"14:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171103",NA,"as N","Nitrate","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995575-0510-LAB/results/944171103/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-10 21:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1430,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1940","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4917712-0510-LAB","Sample-Routine","Water",NA,2022-05-10,"15:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171114",NA,"as N","Nitrate","Total","3.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4917712-0510-LAB/results/944171114/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-10 22:08:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3610,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1941","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4995467-0510-LAB","Sample-Routine","Water",NA,2022-05-10,"15:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171125",NA,"as N","Nitrate","Total","3.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4995467-0510-LAB/results/944171125/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-10 22:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3050,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1942","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996570-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"08:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171136",NA,"as N","Nitrate","Total","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996570-0511-LAB/results/944171136/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-11 15:48:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1580,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1943","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996560-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"08:58:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171147",NA,"as N","Nitrate","Total","26.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996560-0511-LAB/results/944171147/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:45","STORET",7,NA,2022-05-11 15:58:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",26200,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1944","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996550-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"09:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171158",NA,"as N","Nitrate","Total","21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996550-0511-LAB/results/944171158/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 16:07:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",21000,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1945","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996410-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"09:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171169",NA,"as N","Nitrate","Total","0.646","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996410-0511-LAB/results/944171169/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 16:20:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",646,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1946","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996190-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"09:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171180",NA,"as N","Nitrate","Total","6.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996190-0511-LAB/results/944171180/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 16:26:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6280,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1947","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996540-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"09:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171191",NA,"as N","Nitrate","Total","7.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996540-0511-LAB/results/944171191/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 16:41:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7970,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1948","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996566-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"09:51:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171202",NA,"as N","Nitrate","Total","7.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996566-0511-LAB/results/944171202/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 16:51:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7810,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1949","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996275-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"10:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171213",NA,"as N","Nitrate","Total","6.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996275-0511-LAB/results/944171213/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 17:02:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6890,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1950","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996100-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"10:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171224",NA,"as N","Nitrate","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996100-0511-LAB/results/944171224/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 17:11:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",292,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1951","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996022-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"10:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171235",NA,"as N","Nitrate","Total","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996022-0511-LAB/results/944171235/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 17:27:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1600,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1952","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996020-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"10:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171246",NA,"as N","Nitrate","Total","2.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996020-0511-LAB/results/944171246/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 17:41:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2670,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1953","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0522-4996003-0511-LAB","Sample-Routine","Water",NA,2022-05-11,"10:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171257",NA,"as N","Nitrate","Total","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0522-4996003-0511-LAB/results/944171257/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-05-11 17:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1900,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1954","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4994952-0607-LAB","Sample-Routine","Water",NA,2022-06-07,"08:27:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171268",NA,"as N","Nitrate","Total","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4994952-0607-LAB/results/944171268/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-06-07 15:27:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1620,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1955","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4994958-0607-LAB","Sample-Routine","Water",NA,2022-06-07,"08:57:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994958","American Fork River at mouth",NA,NA,NA,NA,"40.3430690000","-111.8034880000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171279","Below Reporting Limit","as N","Nitrate","Total",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4994958-0607-LAB/results/944171279/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-06-07 15:57:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3430690000","-111.8034880000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.343069,-111.803488,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1956","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995043-0607-LAB","Sample-Routine","Water",NA,2022-06-07,"09:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171290",NA,"as N","Nitrate","Total","5.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995043-0607-LAB/results/944171290/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-06-07 16:23:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5600,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1957","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995075-0607-LAB","Sample-Routine","Water",NA,2022-06-07,"09:54:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171301",NA,"as N","Nitrate","Total","2.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995075-0607-LAB/results/944171301/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-06-07 16:54:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2850,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1958","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995222-0607-LAB","Sample-Routine","Water",NA,2022-06-07,"10:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171312",NA,"as N","Nitrate","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995222-0607-LAB/results/944171312/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-06-07 17:36:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1220,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1959","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995210-0607-LAB","Sample-Routine","Water",NA,2022-06-07,"11:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171323",NA,"as N","Nitrate","Total","12.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995210-0607-LAB/results/944171323/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-06-07 18:52:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",12300,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1960","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996680-0607-LAB","Sample-Routine","Water",NA,2022-06-07,"14:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171334",NA,"as N","Nitrate","Total","0.353","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996680-0607-LAB/results/944171334/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:46","STORET",7,NA,2022-06-07 21:17:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",353,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1961","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4995575-0607-LAB","Sample-Routine","Water",NA,2022-06-07,"15:19:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171345",NA,"as N","Nitrate","Total","0.379","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4995575-0607-LAB/results/944171345/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-07 22:19:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",379,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1962","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4917712-0607-LAB","Sample-Routine","Water",NA,2022-06-07,"15:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171356",NA,"as N","Nitrate","Total","2.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4917712-0607-LAB/results/944171356/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-07 22:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2840,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1963","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996570-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"09:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171367",NA,"as N","Nitrate","Total","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996570-0608-LAB/results/944171367/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 16:11:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1920,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1964","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996560-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"09:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171378",NA,"as N","Nitrate","Total","22.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996560-0608-LAB/results/944171378/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 16:30:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",22200,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1965","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996550-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"09:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171389",NA,"as N","Nitrate","Total","18.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996550-0608-LAB/results/944171389/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 16:53:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",18700,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1966","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996410-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"10:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171400",NA,"as N","Nitrate","Total","0.778","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996410-0608-LAB/results/944171400/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 17:39:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",778,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1967","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996190-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"11:01:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171411",NA,"as N","Nitrate","Total","5.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996190-0608-LAB/results/944171411/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 18:01:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5520,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1968","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996540-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"11:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171422",NA,"as N","Nitrate","Total","7.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996540-0608-LAB/results/944171422/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 18:36:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",7820,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1969","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996566-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"11:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171433",NA,"as N","Nitrate","Total","5.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996566-0608-LAB/results/944171433/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 18:59:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5910,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1970","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996275-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171444",NA,"as N","Nitrate","Total","5.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996275-0608-LAB/results/944171444/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5440,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1971","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996100-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"13:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171455","Below Reporting Limit","as N","Nitrate","Total",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996100-0608-LAB/results/944171455/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 20:14:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1972","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996022-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"13:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171466",NA,"as N","Nitrate","Total","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996022-0608-LAB/results/944171466/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 20:46:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1450,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1973","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996020-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"14:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171477",NA,"as N","Nitrate","Total","6.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996020-0608-LAB/results/944171477/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 21:04:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6370,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1974","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0622-4996003-0608-LAB","Sample-Routine","Water",NA,2022-06-08,"14:22:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-944171488",NA,"as N","Nitrate","Total","3.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0622-4996003-0608-LAB/results/944171488/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-14T18:45:47","STORET",7,NA,2022-06-08 21:22:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3850,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-2-C","Sample-Routine","Water",NA,2021-10-13,"10:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376740","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-2-C/results/945376740/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:27","STORET",7,NA,2021-10-13 17:11:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-23-C","Sample-Routine","Water",NA,2021-10-13,"10:11:00","MST",NA,NA,NA,"AboveThermoclin","0.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376760","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-23-C/results/945376760/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:27","STORET",7,NA,2021-10-13 17:11:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-24-C","Sample-Routine","Water",NA,2021-10-13,"10:14:00","MST",NA,NA,NA,"Midwater","7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376778","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-24-C/results/945376778/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:28","STORET",7,NA,2021-10-13 17:14:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-26-C","Sample-Routine","Water",NA,2021-10-13,"10:16:00","MST",NA,NA,NA,"Midwater","13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376796","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-26-C/results/945376796/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:28","STORET",7,NA,2021-10-13 17:16:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-27-C","Sample-Routine","Water",NA,2021-10-13,"10:17:00","MST",NA,NA,NA,"BelowThermoclin","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376814","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-27-C/results/945376814/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:29","STORET",7,NA,2021-10-13 17:17:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211013-4936050-1013-29-C","Sample-Routine","Water",NA,2021-10-13,"10:20:00","MST",NA,NA,NA,"Bottom","25.9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376836","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-10-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211013-4936050-1013-29-C/results/945376836/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:29","STORET",7,NA,2021-10-13 17:20:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",25.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-2-C","Sample-Routine","Water",NA,2021-10-20,"10:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376848","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-2-C/results/945376848/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:30","STORET",7,NA,2021-10-20 17:01:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-24-C","Sample-Routine","Water",NA,2021-10-20,"10:02:00","MST",NA,NA,NA,"Midwater","4","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376862","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-24-C/results/945376862/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:30","STORET",7,NA,2021-10-20 17:02:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-26-C","Sample-Routine","Water",NA,2021-10-20,"10:04:00","MST",NA,NA,NA,"Midwater","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376874","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-26-C/results/945376874/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:31","STORET",7,NA,2021-10-20 17:04:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-27-C","Sample-Routine","Water",NA,2021-10-20,"10:05:00","MST",NA,NA,NA,"BelowThermoclin","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376886","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-27-C/results/945376886/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:31","STORET",7,NA,2021-10-20 17:05:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-28-C","Sample-Routine","Water",NA,2021-10-20,"10:11:00","MST",NA,NA,NA,"Near Bottom","22","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376902","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-28-C/results/945376902/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:32","STORET",7,NA,2021-10-20 17:11:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"10:16:00","MST",NA,NA,NA,"Bottom","58","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376914","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914010-1020-29-C/results/945376914/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:32","STORET",7,NA,2021-10-20 17:16:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",58,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-2-C","Sample-Routine","Water",NA,2021-10-20,"10:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376926","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-2-C/results/945376926/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:33","STORET",7,NA,2021-10-20 17:48:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"10:54:00","MST",NA,NA,NA,"Bottom","26","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376940","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914040-1020-29-C/results/945376940/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:33","STORET",7,NA,2021-10-20 17:54:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",26,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-2-C","Sample-Routine","Water",NA,2021-10-20,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376954","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-2-C/results/945376954/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:34","STORET",7,NA,2021-10-20 18:12:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"11:19:00","MST",NA,NA,NA,"Bottom","27","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376969","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJP211020-5914030-1020-29-C/results/945376969/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:34","STORET",7,NA,2021-10-20 18:19:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",27,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-2-C","Sample-Routine","Water",NA,2021-10-21,"09:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376980","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-2-C/results/945376980/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:35","STORET",7,NA,2021-10-21 16:43:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-25-C","Sample-Routine","Water",NA,2021-10-21,"09:47:00","MST",NA,NA,NA,"Midwater","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945376994","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-25-C/results/945376994/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:35","STORET",7,NA,2021-10-21 16:47:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-28-C","Sample-Routine","Water",NA,2021-10-21,"09:48:00","MST",NA,NA,NA,"Near Bottom","22","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377006","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-28-C/results/945377006/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:36","STORET",7,NA,2021-10-21 16:48:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-29-C","Sample-Routine","Water",NA,2021-10-21,"09:52:00","MST",NA,NA,NA,"Bottom","30.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377018","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913220-1021-29-C/results/945377018/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:36","STORET",7,NA,2021-10-21 16:52:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",30.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-2-C","Sample-Routine","Water",NA,2021-10-21,"10:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377034","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-2-C/results/945377034/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:37","STORET",7,NA,2021-10-21 17:27:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-25-C","Sample-Routine","Water",NA,2021-10-21,"10:31:00","MST",NA,NA,NA,"Midwater","9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377048","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-25-C/results/945377048/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:37","STORET",7,NA,2021-10-21 17:31:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-29-C","Sample-Routine","Water",NA,2021-10-21,"10:34:00","MST",NA,NA,NA,"Bottom","18","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377059","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913230-1021-29-C/results/945377059/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:38","STORET",7,NA,2021-10-21 17:34:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",18,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-2-C","Sample-Routine","Water",NA,2021-10-21,"10:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377070","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-2-C/results/945377070/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:38","STORET",7,NA,2021-10-21 17:53:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-29-C","Sample-Routine","Water",NA,2021-10-21,"10:57:00","MST",NA,NA,NA,"Bottom","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377082","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913240-1021-29-C/results/945377082/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:39","STORET",7,NA,2021-10-21 17:57:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC211021-5913490-1021-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-21,"09:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377097","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC211021-5913490-1021-2-C/results/945377097/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:39","STORET",7,NA,2021-10-21 16:42:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4998400-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"09:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377113","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4998400-1027-4-C/results/945377113/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:40","STORET",7,NA,2021-10-27 16:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4998140-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING",NA,NA,NA,NA,"40.6099500000","-111.3051800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377125","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4998140-1027-4-C/results/945377125/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:40","STORET",7,NA,2021-10-27 17:04:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60995,-111.30518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4998130-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377156","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4998130-1027-4-C/results/945377156/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:41","STORET",7,NA,2021-10-27 17:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997330-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377191","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997330-1027-4-C/results/945377191/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:42","STORET",7,NA,2021-10-27 17:31:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997675-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377222","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997675-1027-4-C/results/945377222/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:42","STORET",7,NA,2021-10-27 17:51:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997670-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377234","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997670-1027-4-C/results/945377234/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:43","STORET",7,NA,2021-10-27 18:01:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997300-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377246","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997300-1027-4-C/results/945377246/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:43","STORET",7,NA,2021-10-27 18:17:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5910302-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377262","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5910302-1027-4-C/results/945377262/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:44","STORET",7,NA,2021-10-27 18:26:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5910273-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377274","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5910273-1027-4-C/results/945377274/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:45","STORET",7,NA,2021-10-27 18:36:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4997250-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377286","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4997250-1027-4-C/results/945377286/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:45","STORET",7,NA,2021-10-27 18:49:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5910250-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377298","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5910250-1027-4-C/results/945377298/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:46","STORET",7,NA,2021-10-27 18:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5910160-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"12:39:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377314","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5910160-1027-4-C/results/945377314/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:47","STORET",7,NA,2021-10-27 19:39:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5913460-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377326","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5913460-1027-4-C/results/945377326/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:47","STORET",7,NA,2021-10-27 20:04:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996870-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377338","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996870-1027-4-C/results/945377338/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:48","STORET",7,NA,2021-10-27 20:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-5913210-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377350","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-5913210-1027-4-C/results/945377350/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:49","STORET",7,NA,2021-10-27 20:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996890-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-27,"13:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377362","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996890-1027-4-C/results/945377362/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:49","STORET",7,NA,2021-10-27 20:33:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996850-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377378","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996850-1027-4-C/results/945377378/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:50","STORET",7,NA,2021-10-27 20:45:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996830-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377390","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996830-1027-4-C/results/945377390/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:51","STORET",7,NA,2021-10-27 20:59:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996810-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377402","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996810-1027-4-C/results/945377402/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:51","STORET",7,NA,2021-10-27 21:05:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211027-4996780-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"14:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377414","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211027-4996780-1027-4-C/results/945377414/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:52","STORET",7,NA,2021-10-27 21:18:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211028-4995600-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"09:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377434","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211028-4995600-1028-4-C/results/945377434/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:52","STORET",7,NA,2021-10-28 16:52:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211028-4995730-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"10:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377489","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211028-4995730-1028-4-C/results/945377489/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:55","STORET",7,NA,2021-10-28 17:44:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211028-4995710-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377506","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211028-4995710-1028-4-C/results/945377506/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:56","STORET",7,NA,2021-10-28 17:40:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-2-C","Sample-Routine","Water",NA,2021-11-04,"11:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377538","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-2-C/results/945377538/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:57","STORET",7,NA,2021-11-04 18:32:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-23-C","Sample-Routine","Water",NA,2021-11-04,"11:33:00","MST",NA,NA,NA,"AboveThermoclin","1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377558","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-23-C/results/945377558/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:58","STORET",7,NA,2021-11-04 18:33:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-24-C","Sample-Routine","Water",NA,2021-11-04,"11:35:00","MST",NA,NA,NA,"Midwater","8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377576",NA,"as N","Nitrogen","Dissolved","1.7","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-24-C/results/945377576/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:12:59","STORET",7,NA,2021-11-04 18:35:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-26-C","Sample-Routine","Water",NA,2021-11-04,"11:38:00","MST",NA,NA,NA,"Midwater","14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377598","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-26-C/results/945377598/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:00","STORET",7,NA,2021-11-04 18:38:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-27-C","Sample-Routine","Water",NA,2021-11-04,"11:39:00","MST",NA,NA,NA,"BelowThermoclin","20","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377616","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-27-C/results/945377616/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:01","STORET",7,NA,2021-11-04 18:39:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR211104-4936050-1104-29-C","Sample-Routine","Water",NA,2021-11-04,"11:43:00","MST",NA,NA,NA,"Bottom","28.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377634","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR211104-4936050-1104-29-C/results/945377634/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:01","STORET",7,NA,2021-11-04 18:43:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",28.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4998400-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"10:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377665","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4998400-1207-4-C/results/945377665/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:02","STORET",7,NA,2021-12-07 17:04:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4998140-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"10:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING",NA,NA,NA,NA,"40.6099500000","-111.3051800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377677","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4998140-1207-4-C/results/945377677/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:03","STORET",7,NA,2021-12-07 17:23:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60995,-111.30518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4998130-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"10:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377689","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4998130-1207-4-C/results/945377689/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:03","STORET",7,NA,2021-12-07 17:31:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997330-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377701","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997330-1207-4-C/results/945377701/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:04","STORET",7,NA,2021-12-07 17:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997675-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377736","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997675-1207-4-C/results/945377736/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:05","STORET",7,NA,2021-12-07 18:07:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997670-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377767","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997670-1207-4-C/results/945377767/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:06","STORET",7,NA,2021-12-07 18:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997300-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377779","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997300-1207-4-C/results/945377779/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:06","STORET",7,NA,2021-12-07 18:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5910302-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377795","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5910302-1207-4-C/results/945377795/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:07","STORET",7,NA,2021-12-07 18:37:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5910273-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377807","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5910273-1207-4-C/results/945377807/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:08","STORET",7,NA,2021-12-07 18:46:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4997250-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377819","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4997250-1207-4-C/results/945377819/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:09","STORET",7,NA,2021-12-07 18:59:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5910250-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"12:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377835","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5910250-1207-4-C/results/945377835/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:10","STORET",7,NA,2021-12-07 19:06:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5910160-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"12:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377850","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5910160-1207-4-C/results/945377850/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:10","STORET",7,NA,2021-12-07 19:48:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5913460-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"13:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377862","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5913460-1207-4-C/results/945377862/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:11","STORET",7,NA,2021-12-07 20:18:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996870-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"13:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377874","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996870-1207-4-C/results/945377874/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:12","STORET",7,NA,2021-12-07 20:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-5913210-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377890",NA,"as N","Nitrogen","Dissolved","1.5","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-5913210-1207-4-C/results/945377890/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:12","STORET",7,NA,2021-12-07 20:45:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996890-1207-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-07,"13:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377902","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996890-1207-4-C/results/945377902/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:13","STORET",7,NA,2021-12-07 20:46:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996850-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"13:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377914","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996850-1207-4-C/results/945377914/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:14","STORET",7,NA,2021-12-07 20:58:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996830-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"14:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377929","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996830-1207-4-C/results/945377929/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:15","STORET",7,NA,2021-12-07 21:07:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996810-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"14:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377942","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996810-1207-4-C/results/945377942/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:15","STORET",7,NA,2021-12-07 21:16:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP211207-4996780-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"14:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377954","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP211207-4996780-1207-4-C/results/945377954/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:16","STORET",7,NA,2021-12-07 21:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211208-4995600-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"09:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945377970","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211208-4995600-1208-4-C/results/945377970/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:16","STORET",7,NA,2021-12-08 16:02:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211208-4995730-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"10:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995730","SIXTH WATER CREEK ABOVE DIAMOND FORK CREEK",NA,NA,NA,NA,"40.0841200000","-111.3546200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378025","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211208-4995730-1208-4-C/results/945378025/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:19","STORET",7,NA,2021-12-08 17:03:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0841200000","-111.3546200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08412,-111.35462,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF211208-4995710-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"09:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995710","DIAMOND FORK CREEK ABOVE SIXTH WATER",NA,NA,NA,NA,"40.0846800000","-111.3551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378042","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2021-12-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF211208-4995710-1208-4-C/results/945378042/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:19","STORET",7,NA,2021-12-08 16:58:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0846800000","-111.3551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.08468,-111.35518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220225-4995600-0225-4-C","Sample-Routine","Water",NA,2022-02-25,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378072","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220225-4995600-0225-4-C/results/945378072/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:21","STORET",7,NA,2022-02-25 18:50:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4998400-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"09:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378123","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4998400-0228-4-C/results/945378123/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:23","STORET",7,NA,2022-02-28 16:58:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4998130-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"10:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378153","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4998130-0228-4-C/results/945378153/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:24","STORET",7,NA,2022-02-28 17:22:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4997330-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"10:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378183","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4997330-0228-4-C/results/945378183/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:24","STORET",7,NA,2022-02-28 17:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4997300-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"10:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378198","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4997300-0228-4-C/results/945378198/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:25","STORET",7,NA,2022-02-28 17:54:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5910302-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378209","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5910302-0228-4-C/results/945378209/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:26","STORET",7,NA,2022-02-28 18:03:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5910273-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378220","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5910273-0228-4-C/results/945378220/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:26","STORET",7,NA,2022-02-28 18:12:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4997250-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378231","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4997250-0228-4-C/results/945378231/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:26","STORET",7,NA,2022-02-28 18:25:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5910250-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"11:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378242","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5910250-0228-4-C/results/945378242/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:27","STORET",7,NA,2022-02-28 18:33:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5910160-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"12:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378260","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5910160-0228-4-C/results/945378260/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:28","STORET",7,NA,2022-02-28 19:17:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-5913460-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"12:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378271","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-5913460-0228-4-C/results/945378271/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:28","STORET",7,NA,2022-02-28 19:44:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4996830-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"13:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378282","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4996830-0228-4-C/results/945378282/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:29","STORET",7,NA,2022-02-28 20:03:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220228-4996780-0228-4-C","Sample-Routine","Water",NA,2022-02-28,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378293","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220228-4996780-0228-4-C/results/945378293/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:29","STORET",7,NA,2022-02-28 20:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4998400-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"10:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378327","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4998400-0329-4-C/results/945378327/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:30","STORET",7,NA,2022-03-29 17:07:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4998140-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"10:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING",NA,NA,NA,NA,"40.6099500000","-111.3051800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378339","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4998140-0329-4-C/results/945378339/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:31","STORET",7,NA,2022-03-29 17:26:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60995,-111.30518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4998130-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378351","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4998130-0329-4-C/results/945378351/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:32","STORET",7,NA,2022-03-29 17:35:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997330-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"10:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378363","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997330-0329-4-C/results/945378363/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:32","STORET",7,NA,2022-03-29 17:54:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997675-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"11:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378398","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997675-0329-4-C/results/945378398/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:33","STORET",7,NA,2022-03-29 18:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997670-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"11:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378429","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997670-0329-4-C/results/945378429/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:33","STORET",7,NA,2022-03-29 18:21:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997300-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"11:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378441","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997300-0329-4-C/results/945378441/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:34","STORET",7,NA,2022-03-29 18:36:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5910302-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"11:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378453","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5910302-0329-4-C/results/945378453/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:34","STORET",7,NA,2022-03-29 18:44:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5910273-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"11:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378469","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5910273-0329-4-C/results/945378469/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:35","STORET",7,NA,2022-03-29 18:52:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4997250-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"12:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378481","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4997250-0329-4-C/results/945378481/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:35","STORET",7,NA,2022-03-29 19:03:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5910250-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378493",NA,"as N","Nitrogen","Dissolved","1.4","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5910250-0329-4-C/results/945378493/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:36","STORET",7,NA,2022-03-29 19:10:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5910020-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910020","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK",NA,NA,NA,NA,"40.4613500000","-111.4715700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378527",NA,"as N","Nitrogen","Dissolved","1.7","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5910020-0329-4-C/results/945378527/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:37","STORET",7,NA,2022-03-29 20:00:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.46135,-111.47157,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5913460-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"13:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378543",NA,"as N","Nitrogen","Dissolved","1.9","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5913460-0329-4-C/results/945378543/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:37","STORET",7,NA,2022-03-29 20:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996870-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"13:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378555","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996870-0329-4-C/results/945378555/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:38","STORET",7,NA,2022-03-29 20:33:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-5913210-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"13:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378567","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-5913210-0329-4-C/results/945378567/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:39","STORET",7,NA,2022-03-29 20:37:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996890-0329-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-29,"13:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378579","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996890-0329-4-C/results/945378579/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:39","STORET",7,NA,2022-03-29 20:38:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996850-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378595","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996850-0329-4-C/results/945378595/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:40","STORET",7,NA,2022-03-29 20:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996830-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"13:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378607","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996830-0329-4-C/results/945378607/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:40","STORET",7,NA,2022-03-29 20:59:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996810-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378619","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996810-0329-4-C/results/945378619/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:41","STORET",7,NA,2022-03-29 21:10:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220329-4996780-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"14:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378631","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220329-4996780-0329-4-C/results/945378631/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:41","STORET",7,NA,2022-03-29 21:22:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220330-4995600-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"08:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378650","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220330-4995600-0330-4-C/results/945378650/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:42","STORET",7,NA,2022-03-30 15:57:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220330-4995640-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"09:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995640","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING",NA,NA,NA,NA,"40.0269000000","-111.5040800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378665","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/Not Reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220330-4995640-0330-4-C/results/945378665/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:42","STORET",7,NA,2022-03-30 16:12:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0269000000","-111.5040800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0269,-111.50408,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220330-4995790-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"09:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995790","SPANISH FK R AB CNFL / DIAMOND FK CK",NA,NA,NA,NA,"40.0246700000","-111.5029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-945378671",NA,"as N","Nitrogen","Dissolved","1","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220330-4995790-0330-4-C/results/945378671/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2022-07-20T15:13:43","STORET",7,NA,2022-03-30 16:22:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0246700000","-111.5029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.02467,-111.50297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1975","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4994952-0712-LAB","Sample-Routine","Water",NA,2022-07-12,"09:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214013",NA,"as N","Nitrate","Total","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4994952-0712-LAB/results/946214013/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:53","STORET",7,NA,2022-07-12 16:07:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1450,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1976","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995043-0712-LAB","Sample-Routine","Water",NA,2022-07-12,"09:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214024",NA,"as N","Nitrate","Total","3.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995043-0712-LAB/results/946214024/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-12 16:37:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3930,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1977","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995075-0712-LAB","Sample-Routine","Water",NA,2022-07-12,"10:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214035",NA,"as N","Nitrate","Total","2.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995075-0712-LAB/results/946214035/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-12 17:04:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2790,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1978","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995222-0712-LAB","Sample-Routine","Water",NA,2022-07-12,"10:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214046",NA,"as N","Nitrate","Total","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995222-0712-LAB/results/946214046/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-12 17:37:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",614,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1979","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995210-0712-LAB","Sample-Routine","Water",NA,2022-07-12,"11:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214057",NA,"as N","Nitrate","Total","11.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995210-0712-LAB/results/946214057/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-12 18:46:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",11200,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1980","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996680-0712-LAB","Sample-Routine","Water",NA,2022-07-12,"13:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214068","Below Reporting Limit","as N","Nitrate","Total",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996680-0712-LAB/results/946214068/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-12 20:24:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1981","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4995575-0712-LAB","Sample-Routine","Water",NA,2022-07-12,"14:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214079","Below Reporting Limit","as N","Nitrate","Total",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4995575-0712-LAB/results/946214079/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-12 21:44:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1982","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4917712-0712-LAB","Sample-Routine","Water",NA,2022-07-12,"15:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214090",NA,"as N","Nitrate","Total","2.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4917712-0712-LAB/results/946214090/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-12 22:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2690,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1983","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996570-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"08:53:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214101",NA,"as N","Nitrate","Total","1.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996570-0713-LAB/results/946214101/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-13 15:53:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1990,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1984","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996560-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"09:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214112",NA,"as N","Nitrate","Total","19.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996560-0713-LAB/results/946214112/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-13 16:03:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",19400,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1985","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996550-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"09:17:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214123",NA,"as N","Nitrate","Total","16.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996550-0713-LAB/results/946214123/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-13 16:17:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",16600,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1986","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996410-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"09:47:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214134",NA,"as N","Nitrate","Total","0.664","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996410-0713-LAB/results/946214134/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-13 16:47:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",664,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1987","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996190-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"10:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214145",NA,"as N","Nitrate","Total","8.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996190-0713-LAB/results/946214145/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-13 17:03:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8170,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1988","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996540-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"10:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214156",NA,"as N","Nitrate","Total","8.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996540-0713-LAB/results/946214156/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-13 17:31:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8090,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1989","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996566-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"10:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214167",NA,"as N","Nitrate","Total","5.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996566-0713-LAB/results/946214167/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-13 17:52:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5490,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1990","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996275-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"11:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214178",NA,"as N","Nitrate","Total","8.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996275-0713-LAB/results/946214178/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:54","STORET",7,NA,2022-07-13 18:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8230,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1991","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996100-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"11:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214189",NA,"as N","Nitrate","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996100-0713-LAB/results/946214189/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:55","STORET",7,NA,2022-07-13 18:37:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",283,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1992","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996022-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"12:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214200",NA,"as N","Nitrate","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996022-0713-LAB/results/946214200/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:55","STORET",7,NA,2022-07-13 19:29:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1430,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1993","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996020-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"12:49:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214211",NA,"as N","Nitrate","Total","8.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996020-0713-LAB/results/946214211/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:55","STORET",7,NA,2022-07-13 19:49:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8970,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1994","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0722-4996003-0713-LAB","Sample-Routine","Water",NA,2022-07-13,"13:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-946214222",NA,"as N","Nitrate","Total","4.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0722-4996003-0713-LAB/results/946214222/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-07-23T14:53:55","STORET",7,NA,2022-07-13 20:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4330,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1995","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4994952-0816-LAB","Sample-Routine","Water",NA,2022-08-16,"10:24:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871814",NA,"as N","Nitrate","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4994952-0816-LAB/results/949871814/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-16 17:24:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1140,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1996","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4995043-0816-LAB","Sample-Routine","Water",NA,2022-08-16,"10:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871825",NA,"as N","Nitrate","Total","5.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4995043-0816-LAB/results/949871825/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-16 17:41:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5080,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1997","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4995075-0816-LAB","Sample-Routine","Water",NA,2022-08-16,"09:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871838",NA,"as N","Nitrate","Total","3.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4995075-0816-LAB/results/949871838/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-16 16:39:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3250,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1998","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4995210-0816-LAB","Sample-Routine","Water",NA,2022-08-16,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871849",NA,"as N","Nitrate","Total","10.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4995210-0816-LAB/results/949871849/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-16 18:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10100,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"1999","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996680-0816-LAB","Sample-Routine","Water",NA,2022-08-16,"13:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871860",NA,"as N","Nitrate","Total","0.445","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996680-0816-LAB/results/949871860/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-16 20:59:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",445,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2000","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4917712-0816-LAB","Sample-Routine","Water",NA,2022-08-16,"15:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871871",NA,"as N","Nitrate","Total","2.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4917712-0816-LAB/results/949871871/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-16 22:11:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2840,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2001","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4995467-0816-LAB","Sample-Routine","Water",NA,2022-08-16,"15:38:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871882",NA,"as N","Nitrate","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4995467-0816-LAB/results/949871882/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-16 22:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1020,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2002","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996570-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"09:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871893",NA,"as N","Nitrate","Total","2.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996570-0817-LAB/results/949871893/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-17 16:32:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2120,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2003","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996560-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"09:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871907","Below Reporting Limit","as N","Nitrate","Total",NA,NA,NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996560-0817-LAB/results/949871907/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-17 16:43:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",230,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2004","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996550-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"10:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871918",NA,"as N","Nitrate","Total","15.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996550-0817-LAB/results/949871918/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-17 17:04:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15200,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2005","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996410-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"10:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871929",NA,"as N","Nitrate","Total","0.873","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996410-0817-LAB/results/949871929/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-17 17:33:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",873,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2006","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996190-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"10:59:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871940",NA,"as N","Nitrate","Total","9.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996190-0817-LAB/results/949871940/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-17 17:59:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9080,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2007","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996540-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"12:04:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871951",NA,"as N","Nitrate","Total","8.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996540-0817-LAB/results/949871951/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:42","STORET",7,NA,2022-08-17 19:04:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8260,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2008","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996566-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"12:35:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871962",NA,"as N","Nitrate","Total","5.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996566-0817-LAB/results/949871962/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:43","STORET",7,NA,2022-08-17 19:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",5920,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2009","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996275-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"12:50:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871973",NA,"as N","Nitrate","Total","9.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996275-0817-LAB/results/949871973/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:43","STORET",7,NA,2022-08-17 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9030,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2010","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996100-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"13:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871986",NA,"as N","Nitrate","Total","0.335","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996100-0817-LAB/results/949871986/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:43","STORET",7,NA,2022-08-17 20:11:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",335,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2011","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996022-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"14:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949871997",NA,"as N","Nitrate","Total","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996022-0817-LAB/results/949871997/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:43","STORET",7,NA,2022-08-17 21:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1690,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2012","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996020-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"14:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949872008",NA,"as N","Nitrate","Total","2.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996020-0817-LAB/results/949872008/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:43","STORET",7,NA,2022-08-17 21:32:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2640,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2013","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0822-4996003-0817-LAB","Sample-Routine","Water",NA,2022-08-17,"14:43:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-949872019",NA,"as N","Nitrate","Total","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0822-4996003-0817-LAB/results/949872019/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-08-25T16:36:43","STORET",7,NA,2022-08-17 21:43:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2310,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2014","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4994952-0913-LAB","Sample-Routine","Water",NA,2022-09-13,"08:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4994952","Spring Creek ab culvert at north end of Spring Cr Ranch Rd Lehi",NA,NA,NA,NA,"40.3729630000","-111.8340320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966344",NA,"as N","Nitrate","Total","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4994952-0913-LAB/results/951966344/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:44","STORET",7,NA,2022-09-13 15:52:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3729630000","-111.8340320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1780,"UG/L","Numeric","Not Reviewed","Uncensored",40.372963,-111.834032,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2015","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4995043-0913-LAB","Sample-Routine","Water",NA,2022-09-13,"09:28:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995043","Timpanogos WWTP at Utah Lake mouth",NA,NA,NA,NA,"40.3363310000","-111.7770790000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966355",NA,"as N","Nitrate","Total","4.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995043-0913-LAB/results/951966355/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:46","STORET",7,NA,2022-09-13 16:28:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3363310000","-111.7770790000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",4270,"UG/L","Numeric","Not Reviewed","Uncensored",40.336331,-111.777079,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2016","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4995075-0913-LAB","Sample-Routine","Water",NA,2022-09-13,"09:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995075","Lindon Drain at Utah Lake Inlet",NA,NA,NA,NA,"40.3300290000","-111.7657920000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966366",NA,"as N","Nitrate","Total","3.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995075-0913-LAB/results/951966366/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:46","STORET",7,NA,2022-09-13 16:55:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3300290000","-111.7657920000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",3250,"UG/L","Numeric","Not Reviewed","Uncensored",40.330029,-111.765792,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2017","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4995222-0913-LAB","Sample-Routine","Water",NA,2022-09-13,"10:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995222","Creek at Vineyard",NA,NA,NA,NA,"40.3039893432","-111.7623006552","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966377",NA,"as N","Nitrate","Total","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995222-0913-LAB/results/951966377/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:46","STORET",7,NA,2022-09-13 17:31:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3039893432","-111.7623006552",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",561,"UG/L","Numeric","Not Reviewed","Uncensored",40.3039893432,-111.7623006552,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2018","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4995210-0913-LAB","Sample-Routine","Water",NA,2022-09-13,"11:42:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653238630","-111.7429835120","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966388",NA,"as N","Nitrate","Total","10.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995210-0913-LAB/results/951966388/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:47","STORET",7,NA,2022-09-13 18:42:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653238630","-111.7429835120",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",10300,"UG/L","Numeric","Not Reviewed","Uncensored",40.265323863,-111.742983512,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2019","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996680-0913-LAB","Sample-Routine","Water",NA,2022-09-13,"13:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000230","-111.7315988730","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966399",NA,"as N","Nitrate","Total","0.391","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996680-0913-LAB/results/951966399/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:47","STORET",7,NA,2022-09-13 20:39:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000230","-111.7315988730",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",391,"UG/L","Numeric","Not Reviewed","Uncensored",40.236900023,-111.731598873,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2020","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4995575-0913-LAB","Sample-Routine","Water",NA,2022-09-13,"14:26:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995575","Spanish Fork River at mouth",NA,NA,NA,NA,"40.1668900000","-111.7484900000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966410",NA,"as N","Nitrate","Total","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995575-0913-LAB/results/951966410/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:48","STORET",7,NA,2022-09-13 21:26:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1668900000","-111.7484900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",311,"UG/L","Numeric","Not Reviewed","Uncensored",40.16689,-111.74849,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2021","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4917712-0913-LAB","Sample-Routine","Water",NA,2022-09-13,"15:18:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4917712","Unnamed flow at 4000 West @ mouth",NA,NA,NA,NA,"40.1522940000","-111.7509300000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966421",NA,"as N","Nitrate","Total","2.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4917712-0913-LAB/results/951966421/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:49","STORET",7,NA,2022-09-13 22:18:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1522940000","-111.7509300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",2640,"UG/L","Numeric","Not Reviewed","Uncensored",40.152294,-111.75093,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2022","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4995467-0913-LAB","Sample-Routine","Water",NA,2022-09-13,"16:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4995467","Beer Creek at Utah Lake mouth",NA,NA,NA,NA,"40.1383540000","-111.7936320000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966432",NA,"as N","Nitrate","Total","0.611","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4995467-0913-LAB/results/951966432/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:49","STORET",7,NA,2022-09-13 23:02:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1383540000","-111.7936320000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",611,"UG/L","Numeric","Not Reviewed","Uncensored",40.138354,-111.793632,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2023","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996570-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"09:07:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996570","MILLRACE CK AB PROVO WWTP",NA,NA,NA,NA,"40.2165400000","-111.6550100000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966443",NA,"as N","Nitrate","Total","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996570-0914-LAB/results/951966443/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:50","STORET",7,NA,2022-09-14 16:07:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2165400000","-111.6550100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1820,"UG/L","Numeric","Not Reviewed","Uncensored",40.21654,-111.65501,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2024","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996560-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"09:21:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996560","PROVO WWTP",NA,NA,NA,NA,"40.2114300000","-111.6519500000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966454",NA,"as N","Nitrate","Total","15.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996560-0914-LAB/results/951966454/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:50","STORET",7,NA,2022-09-14 16:21:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2114300000","-111.6519500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",15600,"UG/L","Numeric","Not Reviewed","Uncensored",40.21143,-111.65195,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2025","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996550-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"09:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996550","MILLRACE CK BL PROVO WWTP",NA,NA,NA,NA,"40.2090848655","-111.6522513752","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966465",NA,"as N","Nitrate","Total","13.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996550-0914-LAB/results/951966465/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:50","STORET",7,NA,2022-09-14 16:44:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2090848655","-111.6522513752",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",13100,"UG/L","Numeric","Not Reviewed","Uncensored",40.2090848655,-111.6522513752,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2026","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996410-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"10:16:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996410","IRONTON CANAL AB KUHNIS BYPRODUCTS",NA,NA,NA,NA,"40.1993711820","-111.6396453340","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966476",NA,"as N","Nitrate","Total","0.876","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996410-0914-LAB/results/951966476/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:51","STORET",7,NA,2022-09-14 17:16:00,NA,"Canal Transport",NA,"16020201",NA,NA,NA,NA,"40.1993711820","-111.6396453340",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",876,"UG/L","Numeric","Not Reviewed","Uncensored",40.199371182,-111.639645334,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2027","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996190-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"10:37:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996190","SPRING CK UPRR XING 1.7MI SE OF PROVO GOLF CSE",NA,NA,NA,NA,"40.1916650460","-111.6385743560","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966487",NA,"as N","Nitrate","Total","9.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996190-0914-LAB/results/951966487/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:51","STORET",7,NA,2022-09-14 17:37:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1916650460","-111.6385743560",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9190,"UG/L","Numeric","Not Reviewed","Uncensored",40.191665046,-111.638574356,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2028","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996540-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"11:20:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030894240","-111.6562123710","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966498",NA,"as N","Nitrate","Total","9.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996540-0914-LAB/results/951966498/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:52","STORET",7,NA,2022-09-14 18:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030894240","-111.6562123710",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",9050,"UG/L","Numeric","Not Reviewed","Uncensored",40.203089424,-111.656212371,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2029","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996566-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"11:39:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536560000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966509",NA,"as N","Nitrate","Total","6.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996566-0914-LAB/results/951966509/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:52","STORET",7,NA,2022-09-14 18:39:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536560000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",6150,"UG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.653656,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2030","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996275-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"12:08:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895780000","-111.6489750000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966520",NA,"as N","Nitrate","Total","8.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996275-0914-LAB/results/951966520/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:53","STORET",7,NA,2022-09-14 19:08:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895780000","-111.6489750000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",8680,"UG/L","Numeric","Not Reviewed","Uncensored",40.189578,-111.648975,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2031","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996100-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"12:23:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966531",NA,"as N","Nitrate","Total","0.504","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996100-0914-LAB/results/951966531/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:53","STORET",7,NA,2022-09-14 19:23:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",504,"UG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2032","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996022-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"13:32:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996022","Dry Creek AB Spanish Fork Discharge Confl",NA,NA,NA,NA,"40.1450050000","-111.6502840000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966542",NA,"as N","Nitrate","Total","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996022-0914-LAB/results/951966542/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:53","STORET",7,NA,2022-09-14 20:32:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1450050000","-111.6502840000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1920,"UG/L","Numeric","Not Reviewed","Uncensored",40.145005,-111.650284,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2033","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996020-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"13:48:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996020","SPANISH FORK WWTP",NA,NA,NA,NA,"40.1449720000","-111.6503330000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966553",NA,"as N","Nitrate","Total","0.743","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996020-0914-LAB/results/951966553/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:54","STORET",7,NA,2022-09-14 20:48:00,NA,"Facility Other",NA,"16020202",NA,NA,NA,NA,"40.1449720000","-111.6503330000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",743,"UG/L","Numeric","Not Reviewed","Uncensored",40.144972,-111.650333,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"2034","WFWQC_UT","Wasatch Front Water Quality Council Utah (Volunteer)","WFWQC_UT-WFWQC0922-4996003-0914-LAB","Sample-Routine","Water",NA,2022-09-14,"14:02:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"WFWQC","Wasatch Front Water Quality Council",NA,"WFWQC_UT-4996003","Dry Creek Below Spanish Fork Discharge",NA,NA,NA,NA,"40.1507640000","-111.6576370000","WFWQC-01","WFWQC_UT","Water Grab Sample",NA,"Water Sampler (Other)","STORET-951966564",NA,"as N","Nitrate","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"10206","HACH","Nitrate, Dimethylphenol Method",NA,NA,"Timpanogos Special Service District",NA,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/WFWQC_UT/activities/WFWQC_UT-WFWQC0922-4996003-0914-LAB/results/951966564/resdetectqntlmts","Minimum Reporting Level","0.23","mg/L",NA,"2022-09-28T17:52:54","STORET",7,NA,2022-09-14 21:02:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1507640000","-111.6576370000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Wasatch Front Water Quality Council sampling project",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","NITRATE",1390,"UG/L","Numeric","Not Reviewed","Uncensored",40.150764,-111.657637,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","NITRATE_TOTAL_AS N_UG/L",0.23,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900452-1004-4-C","Sample-Routine","Water",NA,2021-10-04,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900452","Little Creek 65 meters below Litle Creek Dam",NA,NA,NA,NA,"41.6734900000","-111.2265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581815",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900452-1004-4-C/results/953581815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:09","STORET",7,NA,2021-10-04 18:00:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.6734900000","-111.2265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.67349,-111.22653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4900470-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581821",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900470-1103-4-C/results/953581821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:09","STORET",7,NA,2021-11-03 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4900470-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900470","DAM CK AB MANTUA RES",NA,NA,NA,NA,"41.5143300000","-111.9324000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581824",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900470-1103-4-C/results/953581824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:09","STORET",7,NA,2021-11-03 16:00:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5143300000","-111.9324000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.51433,-111.9324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4900502-1005-4-C","Sample-Routine","Water",NA,2021-10-05,"12:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4900502","Stillwater Fork 1 mile BL Christmas Meadows CG and 0.3 mile bl FS 113 rd xing",NA,NA,NA,NA,"40.8367300000","-110.8134700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581849",NA,"as N","Nitrogen","Total","0.188","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4900502-1005-4-C/results/953581849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:11","STORET",7,NA,2021-10-05 19:02:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"40.8367300000","-110.8134700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.188,"MG/L","Numeric","Pass","Uncensored",40.83673,-110.81347,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4900751-1102-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-02,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581855","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900751-1102-4-C/results/953581855/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:12","STORET",7,NA,2021-11-02 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4900751-1102-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-02,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581858","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900751-1102-4-C/results/953581858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:12","STORET",7,NA,2021-11-02 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4900751-1103-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-03,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581881",NA,"as N","Nitrogen","Total","0.178","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900751-1103-4-C/results/953581881/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:13","STORET",7,NA,2021-11-03 20:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.178,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4900751-1103-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-03,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4900751","EQUIPMENT BLANK Bear River Watershed Crew 1",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581884","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4900751-1103-4-C/results/953581884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:13","STORET",7,NA,2021-11-03 20:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4901190-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581945",NA,"as N","Nitrogen","Total","0.427","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901190-1102-4-C/results/953581945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:15","STORET",7,NA,2021-11-02 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.427,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4901190-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901190","BOX ELDER CK AB BRIGHAM CITY WWTP",NA,NA,NA,NA,"41.5223000000","-112.0411700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581948",NA,"as N","Nitrogen","Dissolved","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901190-1102-4-C/results/953581948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:15","STORET",7,NA,2021-11-02 16:30:00,NA,"River/Stream",NA,"16010204",NA,NA,NA,NA,"41.5223000000","-112.0411700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",41.5223,-112.04117,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4901930-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581971",NA,"as N","Nitrogen","Total","0.772","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901930-1102-4-C/results/953581971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:16","STORET",7,NA,2021-11-02 17:15:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.772,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4901930-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901930","HAMMOND MAIN CANAL AT BRIDGE ON ROAD TO HAMPTON'S FORD",NA,NA,NA,NA,"41.7852100000","-112.1024600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581974",NA,"as N","Nitrogen","Dissolved","0.795","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901930-1102-4-C/results/953581974/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:16","STORET",7,NA,2021-11-02 17:15:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.7852100000","-112.1024600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.795,"MG/L","Numeric","Not Reviewed","Uncensored",41.78521,-112.10246,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4901950-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953581997",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901950-1102-4-C/results/953581997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:17","STORET",7,NA,2021-11-02 17:35:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4901950-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4901950","WEST SIDE CANAL BL CUTLER RES",NA,NA,NA,NA,"41.8254600000","-112.0665400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582000",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4901950-1102-4-C/results/953582000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:17","STORET",7,NA,2021-11-02 17:35:00,NA,"Canal Irrigation",NA,"16010204",NA,NA,NA,NA,"41.8254600000","-112.0665400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.82546,-112.06654,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903060-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582516",NA,"as N","Nitrogen","Total","2.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903060-1102-4-C/results/953582516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:42","STORET",7,NA,2021-11-02 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903060-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903060","THE SLOUGH 2 BLOCKS SOUTH OF U23 XING",NA,NA,NA,NA,"41.8583200000","-111.9981500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582519",NA,"as N","Nitrogen","Dissolved","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903060-1102-4-C/results/953582519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:42","STORET",7,NA,2021-11-02 18:15:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8583200000","-111.9981500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.85832,-111.99815,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903080-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582542",NA,"as N","Nitrogen","Total","2.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903080-1102-4-C/results/953582542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:43","STORET",7,NA,2021-11-02 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.95,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903080-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903080","THE SLOUGH AT U23 XING IN NEWTON",NA,NA,NA,NA,"41.8625900000","-111.9955900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582545",NA,"as N","Nitrogen","Dissolved","2.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903080-1102-4-C/results/953582545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:44","STORET",7,NA,2021-11-02 18:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8625900000","-111.9955900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.98,"MG/L","Numeric","Not Reviewed","Uncensored",41.86259,-111.99559,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4903130-1006-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-06,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582572",NA,"as N","Nitrogen","Total","0.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4903130-1006-2-C/results/953582572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:45","STORET",7,NA,2021-10-06 18:00:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4903130-1006-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-06,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903130","NEWTON RES AB DAM 01",NA,NA,NA,NA,"41.8971500000","-111.9743900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582576",NA,"as N","Nitrogen","Dissolved","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4903130-1006-2-C/results/953582576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:46","STORET",7,NA,2021-10-06 18:00:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8971500000","-111.9743900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",41.89715,-111.97439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4903190-1006-4-C","Sample-Routine","Water",NA,2021-10-06,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582603",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4903190-1006-4-C/results/953582603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:47","STORET",7,NA,2021-10-06 18:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4903190-1006-4-C","Sample-Routine","Water",NA,2021-10-06,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903190","CLARKSTON CK AT U142 XING",NA,NA,NA,NA,"41.9198700000","-112.0377800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582607",NA,"as N","Nitrogen","Dissolved","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4903190-1006-4-C/results/953582607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:48","STORET",7,NA,2021-10-06 18:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9198700000","-112.0377800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.91987,-112.03778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903500-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582630",NA,"as N","Nitrogen","Total","4.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903500-1102-4-C/results/953582630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:49","STORET",7,NA,2021-11-02 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903500-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903500","SUMMIT CK AB CNFL / BEAR R",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582633",NA,"as N","Nitrogen","Dissolved","4.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903500-1102-4-C/results/953582633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:49","STORET",7,NA,2021-11-02 20:30:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903501-1102-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-02,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582656",NA,"as N","Nitrogen","Total","4.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903501-1102-4-C/results/953582656/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:50","STORET",7,NA,2021-11-02 20:35:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903501-1102-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-02,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903501","SUMMIT CK AB CNFL / BEAR R Replicate of 4903500",NA,NA,NA,NA,"41.8332600000","-111.8843900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582659",NA,"as N","Nitrogen","Dissolved","4.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903501-1102-4-C/results/953582659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:50","STORET",7,NA,2021-11-02 20:35:00,NA,"River/Stream","Replicate of 4903500","16010202",NA,NA,NA,NA,"41.8332600000","-111.8843900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",4.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.83326,-111.88439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903504-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582682",NA,"as N","Nitrogen","Total","0.536","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903504-1102-4-C/results/953582682/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:52","STORET",7,NA,2021-11-02 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.536,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4903504-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903504","Summit Creek at 400 West crossing in Smithfield",NA,NA,NA,NA,"41.8363800000","-111.8439500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582685",NA,"as N","Nitrogen","Dissolved","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4903504-1102-4-C/results/953582685/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:52","STORET",7,NA,2021-11-02 20:20:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8363800000","-111.8439500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",41.83638,-111.84395,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4904310-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582708",NA,"as N","Nitrogen","Total","1.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4904310-1102-4-C/results/953582708/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:53","STORET",7,NA,2021-11-02 19:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4904310-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904310","SPRING CK E OF LEWISTON @ U61 XING",NA,NA,NA,NA,"41.9760600000","-111.8164900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582711",NA,"as N","Nitrogen","Dissolved","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4904310-1102-4-C/results/953582711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:53","STORET",7,NA,2021-11-02 19:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.9760600000","-111.8164900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",41.97606,-111.81649,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4904726-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582734",NA,"as N","Nitrogen","Total","2.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4904726-1102-4-C/results/953582734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:55","STORET",7,NA,2021-11-02 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4904726-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4904726","Clay Slough at 7000 N crossing",NA,NA,NA,NA,"41.8595700000","-111.9279800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582737",NA,"as N","Nitrogen","Dissolved","2.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4904726-1102-4-C/results/953582737/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:56","STORET",7,NA,2021-11-02 18:45:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.8595700000","-111.9279800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.85957,-111.92798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905040-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582760",NA,"as N","Nitrogen","Total","0.507","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905040-1027-4-C/results/953582760/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:57","STORET",7,NA,2021-10-27 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.507,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905135-1027-4-C","Quality Control Sample-Field Blank","Water",NA,2021-10-27,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905135","Logan River watershed nonpoint source QA/QC blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582766","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905135-1027-4-C/results/953582766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:58","STORET",7,NA,2021-10-27 19:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905137-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905137","Logan River AB boat launch near SR 30 at 3600 West",NA,NA,NA,NA,"41.7430900000","-111.9198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582770",NA,"as N","Nitrogen","Total","0.402","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905137-1027-4-C/results/953582770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:58","STORET",7,NA,2021-10-27 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.402,"MG/L","Numeric","Not Reviewed","Uncensored",41.74309,-111.91986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905140-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582776",NA,"as N","Nitrogen","Total","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905140-1027-4-C/results/953582776/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:59","STORET",7,NA,2021-10-27 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905142-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-27,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582782",NA,"as N","Nitrogen","Total","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905142-1027-4-C/results/953582782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:59","STORET",7,NA,2021-10-27 17:40:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905188-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582788",NA,"as N","Nitrogen","Total","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905188-1027-4-C/results/953582788/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:42:59","STORET",7,NA,2021-10-27 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905192-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582794",NA,"as N","Nitrogen","Total","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905192-1027-4-C/results/953582794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:00","STORET",7,NA,2021-10-27 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905195-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582800",NA,"as N","Nitrogen","Total","0.205","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905195-1027-4-C/results/953582800/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:01","STORET",7,NA,2021-10-27 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.205,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905198-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582806",NA,"as N","Nitrogen","Total","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905198-1027-4-C/results/953582806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:01","STORET",7,NA,2021-10-27 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV211027-4905400-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582812",NA,"as N","Nitrogen","Total","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV211027-4905400-1027-4-C/results/953582812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:02","STORET",7,NA,2021-10-27 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4905580-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582818",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905580-1103-4-C/results/953582818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:03","STORET",7,NA,2021-11-03 17:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4905580-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905580","LITTLE BEAR R AB WELLSVILLE LAGOONS",NA,NA,NA,NA,"41.6666000000","-111.9174400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582821",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905580-1103-4-C/results/953582821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:03","STORET",7,NA,2021-11-03 17:05:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6666000000","-111.9174400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.6666,-111.91744,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4905590-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582844",NA,"as N","Nitrogen","Total","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905590-1103-4-C/results/953582844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:05","STORET",7,NA,2021-11-03 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4905590-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905590","LITTLE BEAR RIVER BL WELLSVILLE OUTFALL AB ISLAND",NA,NA,NA,NA,"41.6667600000","-111.9203700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582847",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905590-1103-4-C/results/953582847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:05","STORET",7,NA,2021-11-03 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.6667600000","-111.9203700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.66676,-111.92037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4905770-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582870",NA,"as N","Nitrogen","Total","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905770-1103-4-C/results/953582870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:07","STORET",7,NA,2021-11-03 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4905770-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905770","DAVENPORT CREEK AB CNFL / SOUTH FORK LITTLE BEAR R",NA,NA,NA,NA,"41.5004900000","-111.8141000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582873",NA,"as N","Nitrogen","Dissolved","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4905770-1103-4-C/results/953582873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:07","STORET",7,NA,2021-11-03 18:10:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.5004900000","-111.8141000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",41.50049,-111.8141,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4908152-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582896",NA,"as N","Nitrogen","Total","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4908152-1103-4-C/results/953582896/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:09","STORET",7,NA,2021-11-03 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BRI211101-4908152-1103-4-C","Sample-Routine","Water",NA,2021-11-03,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4908152","Sage Ck 20 meters BL confl N Fork",NA,NA,NA,NA,"41.7681100000","-111.1738200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582899",NA,"as N","Nitrogen","Dissolved","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BRI211101-4908152-1103-4-C/results/953582899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:09","STORET",7,NA,2021-11-03 20:30:00,NA,"River/Stream",NA,"16010101",NA,NA,NA,NA,"41.7681100000","-111.1738200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",41.76811,-111.17382,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4910009-1020-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-20,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582930","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1020-4-C/results/953582930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:11","STORET",7,NA,2021-10-20 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4910009-1020-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-20,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582935",NA,"as N","Nitrogen","Dissolved","0.193","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1020-4-C/results/953582935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:12","STORET",7,NA,2021-10-20 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.193,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4910009-1021-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-21,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582969","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1021-4-C/results/953582969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:14","STORET",7,NA,2021-10-21 20:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4910009-1021-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-21,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582974","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1021-4-C/results/953582974/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:14","STORET",7,NA,2021-10-21 20:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4910009-1028-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-28,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582988","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1028-4-C/results/953582988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:15","STORET",7,NA,2021-10-28 21:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4910009-1028-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-28,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953582993","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4910009-1028-4-C/results/953582993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:15","STORET",7,NA,2021-10-28 21:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4910009-1115-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583007","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1115-4-C/results/953583007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:16","STORET",7,NA,2021-11-15 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4910009-1115-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583012",NA,"as N","Nitrogen","Dissolved","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1115-4-C/results/953583012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:16","STORET",7,NA,2021-11-15 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4910009-1116-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-16,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583046","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1116-4-C/results/953583046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:19","STORET",7,NA,2021-11-16 22:55:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4910009-1116-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-16,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583051",NA,"as N","Nitrogen","Dissolved","0.301","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1116-4-C/results/953583051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:19","STORET",7,NA,2021-11-16 22:55:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.301,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4910009-1117-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583065","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1117-4-C/results/953583065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:20","STORET",7,NA,2021-11-17 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4910009-1117-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583070","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4910009-1117-4-C/results/953583070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:21","STORET",7,NA,2021-11-17 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4910009-1202-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-02,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583084","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4910009-1202-4-C/results/953583084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:21","STORET",7,NA,2021-12-02 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4910009-1202-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-02,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583089",NA,"as N","Nitrogen","Dissolved","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4910009-1202-4-C/results/953583089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:22","STORET",7,NA,2021-12-02 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4910009-1208-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-08,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583123","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4910009-1208-4-C/results/953583123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:24","STORET",7,NA,2021-12-08 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4910009-1208-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-08,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583128",NA,"as N","Nitrogen","Dissolved","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4910009-1208-4-C/results/953583128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:24","STORET",7,NA,2021-12-08 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4910009-0124-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-24,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583141","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4910009-0124-4-C/results/953583141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:25","STORET",7,NA,2022-01-25 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4910009-0124-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-24,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583146","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4910009-0124-4-C/results/953583146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:25","STORET",7,NA,2022-01-25 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4910009-0215-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-15,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583159","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4910009-0215-4-C/results/953583159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:26","STORET",7,NA,2022-02-15 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4910009-0215-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-15,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583164","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4910009-0215-4-C/results/953583164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:26","STORET",7,NA,2022-02-15 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4910009-0314-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-14,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583178","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4910009-0314-4-C/results/953583178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:27","STORET",7,NA,2022-03-15 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4910009-0314-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-14,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583183","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4910009-0314-4-C/results/953583183/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:27","STORET",7,NA,2022-03-15 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4910009-0315-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-15,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583217","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4910009-0315-4-C/results/953583217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:29","STORET",7,NA,2022-03-16 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4910009-0315-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-15,"18:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583222","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4910009-0315-4-C/results/953583222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:29","STORET",7,NA,2022-03-16 01:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4915630-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583231",NA,"as N","Nitrogen","Total","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4915630-1130-4-C/results/953583231/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:29","STORET",7,NA,2021-11-30 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4915630-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583235",NA,"as N","Nitrogen","Dissolved","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4915630-1130-4-C/results/953583235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:29","STORET",7,NA,2021-11-30 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4915630-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583258",NA,"as N","Nitrogen","Total","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4915630-0125-4-C/results/953583258/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:31","STORET",7,NA,2022-01-25 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4915630-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583262",NA,"as N","Nitrogen","Dissolved","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4915630-0125-4-C/results/953583262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:31","STORET",7,NA,2022-01-25 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4915630-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583285",NA,"as N","Nitrogen","Total","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4915630-0222-4-C/results/953583285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:33","STORET",7,NA,2022-02-22 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4915630-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583289",NA,"as N","Nitrogen","Dissolved","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4915630-0222-4-C/results/953583289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:33","STORET",7,NA,2022-02-22 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4915630-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583312",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4915630-0322-4-C/results/953583312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:35","STORET",7,NA,2022-03-22 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4915630-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583316",NA,"as N","Nitrogen","Dissolved","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4915630-0322-4-C/results/953583316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:35","STORET",7,NA,2022-03-22 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4915650-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583330",NA,"as N","Nitrogen","Total","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4915650-1130-4-C/results/953583330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:36","STORET",7,NA,2021-11-30 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4915650-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583334",NA,"as N","Nitrogen","Dissolved","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4915650-1130-4-C/results/953583334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:36","STORET",7,NA,2021-11-30 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4915650-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583357",NA,"as N","Nitrogen","Total","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4915650-0125-4-C/results/953583357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:37","STORET",7,NA,2022-01-25 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4915650-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583361",NA,"as N","Nitrogen","Dissolved","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4915650-0125-4-C/results/953583361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:37","STORET",7,NA,2022-01-25 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4915650-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583384",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4915650-0222-4-C/results/953583384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:38","STORET",7,NA,2022-02-22 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4915650-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583388",NA,"as N","Nitrogen","Dissolved","0.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4915650-0222-4-C/results/953583388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:38","STORET",7,NA,2022-02-22 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4915650-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583411",NA,"as N","Nitrogen","Total","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4915650-0322-4-C/results/953583411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:40","STORET",7,NA,2022-03-22 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4915650-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583415",NA,"as N","Nitrogen","Dissolved","0.477","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4915650-0322-4-C/results/953583415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:40","STORET",7,NA,2022-03-22 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.477,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917305-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583434",NA,"as N","Nitrogen","Total","2.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917305-1020-2-C/results/953583434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:41","STORET",7,NA,2021-10-20 16:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917305-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583439",NA,"as N","Nitrogen","Dissolved","2.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917305-1020-2-C/results/953583439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:41","STORET",7,NA,2021-10-20 16:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917305-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583455",NA,"as N","Nitrogen","Total","0.844","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917305-1115-2-C/results/953583455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:42","STORET",7,NA,2021-11-15 16:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.844,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917305-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583460",NA,"as N","Nitrogen","Dissolved","0.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917305-1115-2-C/results/953583460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:42","STORET",7,NA,2021-11-15 16:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917305-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583476",NA,"as N","Nitrogen","Total","0.826","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917305-1202-2-C/results/953583476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:42","STORET",7,NA,2021-12-02 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.826,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917305-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583481",NA,"as N","Nitrogen","Dissolved","0.652","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917305-1202-2-C/results/953583481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:42","STORET",7,NA,2021-12-02 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.652,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917305-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583497",NA,"as N","Nitrogen","Dissolved","0.959","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917305-0314-2-C/results/953583497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:43","STORET",7,NA,2022-03-14 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.959,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917310-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583513",NA,"as N","Nitrogen","Total","0.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917310-1020-2-C/results/953583513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:44","STORET",7,NA,2021-10-20 17:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917310-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583518",NA,"as N","Nitrogen","Dissolved","0.852","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917310-1020-2-C/results/953583518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:44","STORET",7,NA,2021-10-20 17:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.852,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917310-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"10:15:00","MST",NA,NA,NA,"Bottom","1.256","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583531",NA,"as N","Nitrogen","Total","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917310-1020-29-C/results/953583531/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:44","STORET",7,NA,2021-10-20 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.256,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917310-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"10:15:00","MST",NA,NA,NA,"Bottom","1.256","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583536",NA,"as N","Nitrogen","Dissolved","0.932","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917310-1020-29-C/results/953583536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:44","STORET",7,NA,2021-10-20 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.932,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.256,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917310-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583570",NA,"as N","Nitrogen","Total","0.781","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917310-1115-2-C/results/953583570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:46","STORET",7,NA,2021-11-15 17:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.781,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917310-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583575",NA,"as N","Nitrogen","Dissolved","0.884","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917310-1115-2-C/results/953583575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:46","STORET",7,NA,2021-11-15 17:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.884,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917310-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"10:10:00","MST",NA,NA,NA,"Bottom","1.344","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583588",NA,"as N","Nitrogen","Total","0.805","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917310-1115-29-C/results/953583588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:47","STORET",7,NA,2021-11-15 17:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.805,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.344,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917310-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"10:10:00","MST",NA,NA,NA,"Bottom","1.344","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583593",NA,"as N","Nitrogen","Dissolved","0.837","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917310-1115-29-C/results/953583593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:47","STORET",7,NA,2021-11-15 17:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.837,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.344,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917310-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583627",NA,"as N","Nitrogen","Total","0.808","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917310-1202-2-C/results/953583627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:49","STORET",7,NA,2021-12-02 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.808,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917310-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583632",NA,"as N","Nitrogen","Dissolved","0.828","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917310-1202-2-C/results/953583632/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:50","STORET",7,NA,2021-12-02 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.828,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917310-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"10:40:00","MST",NA,NA,NA,"Bottom","1.343","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583645",NA,"as N","Nitrogen","Total","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917310-1202-29-C/results/953583645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:50","STORET",7,NA,2021-12-02 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.343,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917310-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"10:40:00","MST",NA,NA,NA,"Bottom","1.343","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583650",NA,"as N","Nitrogen","Dissolved","0.704","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917310-1202-29-C/results/953583650/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:51","STORET",7,NA,2021-12-02 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.704,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.343,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917310-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583683",NA,"as N","Nitrogen","Total","1.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917310-0314-2-C/results/953583683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:53","STORET",7,NA,2022-03-14 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917310-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583688",NA,"as N","Nitrogen","Dissolved","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917310-0314-2-C/results/953583688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:53","STORET",7,NA,2022-03-14 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917310-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"10:47:00","MST",NA,NA,NA,"Bottom","1.649","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583701",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917310-0314-29-C/results/953583701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:54","STORET",7,NA,2022-03-14 17:47:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.649,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917310-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"10:47:00","MST",NA,NA,NA,"Bottom","1.649","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583706",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917310-0314-29-C/results/953583706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:54","STORET",7,NA,2022-03-14 17:47:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.649,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917320-1020-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-20,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","No Corresponding field measurements available",NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583740",NA,"as N","Nitrogen","Total","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917320-1020-2-C/results/953583740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:56","STORET",7,NA,2021-10-20 17:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917320-1020-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-20,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","No Corresponding field measurements available",NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583745",NA,"as N","Nitrogen","Dissolved","0.941","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917320-1020-2-C/results/953583745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:56","STORET",7,NA,2021-10-20 17:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.941,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917320-1020-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-20,"10:25:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","No Corresponding field measurements available",NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583758",NA,"as N","Nitrogen","Total","0.766","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917320-1020-29-C/results/953583758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:56","STORET",7,NA,2021-10-20 17:25:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.766,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917320-1020-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-20,"10:25:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310","No Corresponding field measurements available",NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583763",NA,"as N","Nitrogen","Dissolved","0.862","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917320-1020-29-C/results/953583763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:57","STORET",7,NA,2021-10-20 17:25:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.862,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917320-1115-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583797",NA,"as N","Nitrogen","Total","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917320-1115-2-C/results/953583797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:59","STORET",7,NA,2021-11-15 17:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917320-1115-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583802",NA,"as N","Nitrogen","Dissolved","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917320-1115-2-C/results/953583802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:43:59","STORET",7,NA,2021-11-15 17:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917320-1115-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"10:20:00","MST",NA,NA,NA,"Bottom","1.359","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583815",NA,"as N","Nitrogen","Total","0.749","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917320-1115-29-C/results/953583815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:00","STORET",7,NA,2021-11-15 17:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.749,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.359,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917320-1115-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"10:20:00","MST",NA,NA,NA,"Bottom","1.359","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583820",NA,"as N","Nitrogen","Dissolved","0.752","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917320-1115-29-C/results/953583820/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:00","STORET",7,NA,2021-11-15 17:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.752,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.359,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917320-1202-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-02,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583854",NA,"as N","Nitrogen","Total","0.825","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917320-1202-2-C/results/953583854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:02","STORET",7,NA,2021-12-02 17:45:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.825,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917320-1202-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-02,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583859",NA,"as N","Nitrogen","Dissolved","0.726","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917320-1202-2-C/results/953583859/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:02","STORET",7,NA,2021-12-02 17:45:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.726,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917320-1202-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-02,"10:50:00","MST",NA,NA,NA,"Bottom","1.364","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583872",NA,"as N","Nitrogen","Total","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917320-1202-29-C/results/953583872/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:03","STORET",7,NA,2021-12-02 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.364,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917320-1202-29-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-02,"10:50:00","MST",NA,NA,NA,"Bottom","1.364","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583877",NA,"as N","Nitrogen","Dissolved","0.705","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917320-1202-29-C/results/953583877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:03","STORET",7,NA,2021-12-02 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.705,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.364,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917320-0314-2-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-14,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583911",NA,"as N","Nitrogen","Total","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917320-0314-2-C/results/953583911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:05","STORET",7,NA,2022-03-14 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917320-0314-2-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-14,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583916",NA,"as N","Nitrogen","Dissolved","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917320-0314-2-C/results/953583916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:05","STORET",7,NA,2022-03-14 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917320-0314-29-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-14,"10:50:00","MST",NA,NA,NA,"Bottom","1.644","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583929",NA,"as N","Nitrogen","Total","0.943","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917320-0314-29-C/results/953583929/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:06","STORET",7,NA,2022-03-14 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.943,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.644,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917320-0314-29-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-14,"10:50:00","MST",NA,NA,NA,"Bottom","1.644","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583934",NA,"as N","Nitrogen","Dissolved","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917320-0314-29-C/results/953583934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:06","STORET",7,NA,2022-03-14 17:50:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.644,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917335-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583968",NA,"as N","Nitrogen","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917335-1020-2-C/results/953583968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:08","STORET",7,NA,2021-10-20 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917335-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583973",NA,"as N","Nitrogen","Dissolved","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917335-1020-2-C/results/953583973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:08","STORET",7,NA,2021-10-20 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917335-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583989",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917335-1115-2-C/results/953583989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:09","STORET",7,NA,2021-11-15 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917335-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953583994",NA,"as N","Nitrogen","Dissolved","0.707","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917335-1115-2-C/results/953583994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:10","STORET",7,NA,2021-11-15 16:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.707,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917335-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584010",NA,"as N","Nitrogen","Total","0.938","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917335-1202-2-C/results/953584010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:10","STORET",7,NA,2021-12-02 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.938,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917335-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584015",NA,"as N","Nitrogen","Dissolved","0.813","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917335-1202-2-C/results/953584015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:11","STORET",7,NA,2021-12-02 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.813,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917335-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584031",NA,"as N","Nitrogen","Total","1.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917335-0314-2-C/results/953584031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:11","STORET",7,NA,2022-03-14 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917365-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584047",NA,"as N","Nitrogen","Total","0.773","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917365-1020-2-C/results/953584047/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:13","STORET",7,NA,2021-10-20 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.773,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917365-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584052",NA,"as N","Nitrogen","Dissolved","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917365-1020-2-C/results/953584052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:13","STORET",7,NA,2021-10-20 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917365-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"10:50:00","MST",NA,NA,NA,"Bottom","1.811","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584065",NA,"as N","Nitrogen","Total","0.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917365-1020-29-C/results/953584065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:14","STORET",7,NA,2021-10-20 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.811,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917365-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"10:50:00","MST",NA,NA,NA,"Bottom","1.811","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584070",NA,"as N","Nitrogen","Dissolved","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917365-1020-29-C/results/953584070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:14","STORET",7,NA,2021-10-20 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.811,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917365-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584104",NA,"as N","Nitrogen","Total","0.902","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917365-1115-2-C/results/953584104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:16","STORET",7,NA,2021-11-15 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.902,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917365-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584109",NA,"as N","Nitrogen","Dissolved","0.881","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917365-1115-2-C/results/953584109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:17","STORET",7,NA,2021-11-15 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.881,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917365-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"10:45:00","MST",NA,NA,NA,"Bottom","1.886","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584122",NA,"as N","Nitrogen","Total","0.815","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917365-1115-29-C/results/953584122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:18","STORET",7,NA,2021-11-15 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.815,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.886,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917365-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"10:45:00","MST",NA,NA,NA,"Bottom","1.886","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584127",NA,"as N","Nitrogen","Dissolved","0.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917365-1115-29-C/results/953584127/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:18","STORET",7,NA,2021-11-15 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.75,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.886,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917365-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584161",NA,"as N","Nitrogen","Total","0.713","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917365-1202-2-C/results/953584161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:20","STORET",7,NA,2021-12-02 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.713,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917365-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584166",NA,"as N","Nitrogen","Dissolved","0.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917365-1202-2-C/results/953584166/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:20","STORET",7,NA,2021-12-02 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917365-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"11:30:00","MST",NA,NA,NA,"Bottom","2.186","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584179",NA,"as N","Nitrogen","Total","0.732","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917365-1202-29-C/results/953584179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:21","STORET",7,NA,2021-12-02 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.732,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.186,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917365-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"11:30:00","MST",NA,NA,NA,"Bottom","2.186","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584184",NA,"as N","Nitrogen","Dissolved","0.849","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917365-1202-29-C/results/953584184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:21","STORET",7,NA,2021-12-02 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.849,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.186,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917365-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584217",NA,"as N","Nitrogen","Total","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917365-0314-2-C/results/953584217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:24","STORET",7,NA,2022-03-14 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917365-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584222",NA,"as N","Nitrogen","Dissolved","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917365-0314-2-C/results/953584222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:25","STORET",7,NA,2022-03-14 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917365-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"11:35:00","MST",NA,NA,NA,"Bottom","2.237","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584235",NA,"as N","Nitrogen","Total","0.659","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917365-0314-29-C/results/953584235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:25","STORET",7,NA,2022-03-14 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.659,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.237,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917365-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"11:35:00","MST",NA,NA,NA,"Bottom","2.237","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584240",NA,"as N","Nitrogen","Dissolved","0.606","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917365-0314-29-C/results/953584240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:25","STORET",7,NA,2022-03-14 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.606,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.237,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917370-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584274",NA,"as N","Nitrogen","Total","0.759","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917370-1020-2-C/results/953584274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:27","STORET",7,NA,2021-10-20 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.759,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917370-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584279",NA,"as N","Nitrogen","Dissolved","0.774","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917370-1020-2-C/results/953584279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:27","STORET",7,NA,2021-10-20 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.774,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917370-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"13:25:00","MST",NA,NA,NA,"Bottom","1.904","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584292",NA,"as N","Nitrogen","Total","0.773","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917370-1020-29-C/results/953584292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:28","STORET",7,NA,2021-10-20 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.773,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.904,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917370-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"13:25:00","MST",NA,NA,NA,"Bottom","1.904","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584297",NA,"as N","Nitrogen","Dissolved","0.799","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917370-1020-29-C/results/953584297/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:28","STORET",7,NA,2021-10-20 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.799,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.904,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917370-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584331",NA,"as N","Nitrogen","Total","0.955","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917370-1115-2-C/results/953584331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:30","STORET",7,NA,2021-11-15 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.955,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917370-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584336",NA,"as N","Nitrogen","Dissolved","0.979","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917370-1115-2-C/results/953584336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:31","STORET",7,NA,2021-11-15 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.979,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917370-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"13:20:00","MST",NA,NA,NA,"Bottom","1.837","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584349",NA,"as N","Nitrogen","Total","0.766","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917370-1115-29-C/results/953584349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:32","STORET",7,NA,2021-11-15 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.766,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.837,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917370-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"13:20:00","MST",NA,NA,NA,"Bottom","1.837","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584354",NA,"as N","Nitrogen","Dissolved","0.971","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917370-1115-29-C/results/953584354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:32","STORET",7,NA,2021-11-15 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.971,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.837,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917370-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584388",NA,"as N","Nitrogen","Total","0.698","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917370-1202-2-C/results/953584388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:35","STORET",7,NA,2021-12-02 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.698,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917370-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584393",NA,"as N","Nitrogen","Dissolved","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917370-1202-2-C/results/953584393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:35","STORET",7,NA,2021-12-02 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917370-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"13:40:00","MST",NA,NA,NA,"Bottom","1.899","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584406",NA,"as N","Nitrogen","Total","0.741","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917370-1202-29-C/results/953584406/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:36","STORET",7,NA,2021-12-02 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.741,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.899,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917370-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"13:40:00","MST",NA,NA,NA,"Bottom","1.899","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584411",NA,"as N","Nitrogen","Dissolved","0.855","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917370-1202-29-C/results/953584411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:37","STORET",7,NA,2021-12-02 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.855,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.899,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917370-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584445",NA,"as N","Nitrogen","Total","0.654","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917370-0314-2-C/results/953584445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:39","STORET",7,NA,2022-03-14 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.654,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917370-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584450",NA,"as N","Nitrogen","Dissolved","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917370-0314-2-C/results/953584450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:39","STORET",7,NA,2022-03-14 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917370-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"14:20:00","MST",NA,NA,NA,"Bottom","2.177","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584463",NA,"as N","Nitrogen","Total","0.667","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917370-0314-29-C/results/953584463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:40","STORET",7,NA,2022-03-14 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.667,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.177,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917370-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"14:20:00","MST",NA,NA,NA,"Bottom","2.177","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584468",NA,"as N","Nitrogen","Dissolved","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917370-0314-29-C/results/953584468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:40","STORET",7,NA,2022-03-14 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.617,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.177,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917390-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584502",NA,"as N","Nitrogen","Total","0.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917390-1020-2-C/results/953584502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:42","STORET",7,NA,2021-10-20 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917390-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584507",NA,"as N","Nitrogen","Dissolved","0.769","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917390-1020-2-C/results/953584507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:43","STORET",7,NA,2021-10-20 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.769,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917390-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"11:10:00","MST",NA,NA,NA,"Bottom","2.172","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584520",NA,"as N","Nitrogen","Total","0.893","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917390-1020-29-C/results/953584520/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:44","STORET",7,NA,2021-10-20 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.893,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.172,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917390-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"11:10:00","MST",NA,NA,NA,"Bottom","2.172","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584525",NA,"as N","Nitrogen","Dissolved","0.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917390-1020-29-C/results/953584525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:44","STORET",7,NA,2021-10-20 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.172,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917390-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584559",NA,"as N","Nitrogen","Total","0.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917390-1115-2-C/results/953584559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:46","STORET",7,NA,2021-11-15 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917390-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584564",NA,"as N","Nitrogen","Dissolved","0.996","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917390-1115-2-C/results/953584564/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:47","STORET",7,NA,2021-11-15 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.996,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917390-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"11:30:00","MST",NA,NA,NA,"Bottom","2.264","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584577",NA,"as N","Nitrogen","Total","0.772","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917390-1115-29-C/results/953584577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:48","STORET",7,NA,2021-11-15 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.772,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.264,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917390-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"11:30:00","MST",NA,NA,NA,"Bottom","2.264","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584582",NA,"as N","Nitrogen","Dissolved","0.721","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917390-1115-29-C/results/953584582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:48","STORET",7,NA,2021-11-15 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.721,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.264,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917390-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584616",NA,"as N","Nitrogen","Total","0.795","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917390-1202-2-C/results/953584616/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:51","STORET",7,NA,2021-12-02 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.795,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917390-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584621",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917390-1202-2-C/results/953584621/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:51","STORET",7,NA,2021-12-02 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917390-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"12:10:00","MST",NA,NA,NA,"Bottom","2.244","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584634",NA,"as N","Nitrogen","Total","0.821","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917390-1202-29-C/results/953584634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:52","STORET",7,NA,2021-12-02 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.821,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.244,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917390-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"12:10:00","MST",NA,NA,NA,"Bottom","2.244","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584639",NA,"as N","Nitrogen","Dissolved","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917390-1202-29-C/results/953584639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:52","STORET",7,NA,2021-12-02 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.244,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917390-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584673",NA,"as N","Nitrogen","Total","0.689","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917390-0314-2-C/results/953584673/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:55","STORET",7,NA,2022-03-14 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.689,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917390-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584678",NA,"as N","Nitrogen","Dissolved","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917390-0314-2-C/results/953584678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:56","STORET",7,NA,2022-03-14 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.617,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917390-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"12:25:00","MST",NA,NA,NA,"Bottom","2.703","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584691",NA,"as N","Nitrogen","Total","0.698","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917390-0314-29-C/results/953584691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:56","STORET",7,NA,2022-03-14 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.698,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.703,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917390-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"12:25:00","MST",NA,NA,NA,"Bottom","2.703","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584696",NA,"as N","Nitrogen","Dissolved","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917390-0314-29-C/results/953584696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:57","STORET",7,NA,2022-03-14 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.703,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917414-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584730",NA,"as N","Nitrogen","Total","1.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917414-1020-2-C/results/953584730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:44:59","STORET",7,NA,2021-10-20 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.97,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917414-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584735",NA,"as N","Nitrogen","Dissolved","2.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917414-1020-2-C/results/953584735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:00","STORET",7,NA,2021-10-20 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917414-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584751",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917414-1115-2-C/results/953584751/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:00","STORET",7,NA,2021-11-15 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917414-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584756",NA,"as N","Nitrogen","Dissolved","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917414-1115-2-C/results/953584756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:00","STORET",7,NA,2021-11-15 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917414-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584772",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917414-1202-2-C/results/953584772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:01","STORET",7,NA,2021-12-02 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917414-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584777",NA,"as N","Nitrogen","Dissolved","2.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917414-1202-2-C/results/953584777/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:02","STORET",7,NA,2021-12-02 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917414-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584793",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917414-0314-2-C/results/953584793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:03","STORET",7,NA,2022-03-14 21:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917414-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584798",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917414-0314-2-C/results/953584798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:03","STORET",7,NA,2022-03-14 21:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917433-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584814",NA,"as N","Nitrogen","Total","0.919","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917433-1020-2-C/results/953584814/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:04","STORET",7,NA,2021-10-20 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.919,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917433-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584819",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917433-1020-2-C/results/953584819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:05","STORET",7,NA,2021-10-20 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917433-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584835",NA,"as N","Nitrogen","Dissolved","0.826","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917433-1115-2-C/results/953584835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:05","STORET",7,NA,2021-11-15 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.826,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917433-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584850",NA,"as N","Nitrogen","Total","0.862","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917433-1202-2-C/results/953584850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:06","STORET",7,NA,2021-12-02 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.862,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917433-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584855",NA,"as N","Nitrogen","Dissolved","0.771","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917433-1202-2-C/results/953584855/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:07","STORET",7,NA,2021-12-02 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.771,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917433-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584871",NA,"as N","Nitrogen","Total","0.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917433-0314-2-C/results/953584871/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:08","STORET",7,NA,2022-03-14 19:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917433-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584876",NA,"as N","Nitrogen","Dissolved","0.575","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917433-0314-2-C/results/953584876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:08","STORET",7,NA,2022-03-14 19:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.575,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917450-1021-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-21,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584892",NA,"as N","Nitrogen","Total","8.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917450-1021-2-C/results/953584892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:09","STORET",7,NA,2021-10-21 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917450-1021-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-21,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584897",NA,"as N","Nitrogen","Dissolved","9.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917450-1021-2-C/results/953584897/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:09","STORET",7,NA,2021-10-21 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917450-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584911",NA,"as N","Nitrogen","Total","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917450-1117-2-C/results/953584911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:10","STORET",7,NA,2021-11-17 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917450-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584916",NA,"as N","Nitrogen","Dissolved","2.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917450-1117-2-C/results/953584916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:10","STORET",7,NA,2021-11-17 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917500-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584930",NA,"as N","Nitrogen","Total","0.791","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917500-1020-2-C/results/953584930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:10","STORET",7,NA,2021-10-20 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.791,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917500-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584935",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917500-1020-2-C/results/953584935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:11","STORET",7,NA,2021-10-20 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917500-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"12:55:00","MST",NA,NA,NA,"Bottom","1.986","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584948",NA,"as N","Nitrogen","Total","0.759","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917500-1020-29-C/results/953584948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:12","STORET",7,NA,2021-10-20 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.759,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.986,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917500-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"12:55:00","MST",NA,NA,NA,"Bottom","1.986","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584953",NA,"as N","Nitrogen","Dissolved","0.806","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917500-1020-29-C/results/953584953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:12","STORET",7,NA,2021-10-20 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.806,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.986,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917500-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584987",NA,"as N","Nitrogen","Total","0.785","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917500-1115-2-C/results/953584987/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:14","STORET",7,NA,2021-11-15 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.785,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917500-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953584992",NA,"as N","Nitrogen","Dissolved","0.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917500-1115-2-C/results/953584992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:14","STORET",7,NA,2021-11-15 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.85,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917500-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"12:55:00","MST",NA,NA,NA,"Bottom","1.961","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585005",NA,"as N","Nitrogen","Total","0.781","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917500-1115-29-C/results/953585005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:15","STORET",7,NA,2021-11-15 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.781,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.961,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917500-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"12:55:00","MST",NA,NA,NA,"Bottom","1.961","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585010",NA,"as N","Nitrogen","Dissolved","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917500-1115-29-C/results/953585010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:15","STORET",7,NA,2021-11-15 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.961,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917500-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585044",NA,"as N","Nitrogen","Total","0.796","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917500-1202-2-C/results/953585044/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:17","STORET",7,NA,2021-12-02 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.796,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917500-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585049",NA,"as N","Nitrogen","Dissolved","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917500-1202-2-C/results/953585049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:17","STORET",7,NA,2021-12-02 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917500-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"13:10:00","MST",NA,NA,NA,"Bottom","2.044","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585062",NA,"as N","Nitrogen","Total","0.799","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917500-1202-29-C/results/953585062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:18","STORET",7,NA,2021-12-02 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.799,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.044,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917500-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"13:10:00","MST",NA,NA,NA,"Bottom","2.044","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585067",NA,"as N","Nitrogen","Dissolved","0.717","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917500-1202-29-C/results/953585067/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:18","STORET",7,NA,2021-12-02 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.717,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.044,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917500-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585101",NA,"as N","Nitrogen","Total","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917500-0314-2-C/results/953585101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:20","STORET",7,NA,2022-03-14 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917500-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585106",NA,"as N","Nitrogen","Dissolved","0.843","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917500-0314-2-C/results/953585106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:20","STORET",7,NA,2022-03-14 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.843,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917500-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"13:50:00","MST",NA,NA,NA,"Bottom","2.527","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585119",NA,"as N","Nitrogen","Total","0.688","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917500-0314-29-C/results/953585119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:21","STORET",7,NA,2022-03-14 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.688,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.527,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917520-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585153",NA,"as N","Nitrogen","Total","0.728","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917520-1020-2-C/results/953585153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:23","STORET",7,NA,2021-10-20 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.728,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917520-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585158",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917520-1020-2-C/results/953585158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:23","STORET",7,NA,2021-10-20 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917520-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"13:45:00","MST",NA,NA,NA,"Bottom","1.376","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585171",NA,"as N","Nitrogen","Total","0.753","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917520-1020-29-C/results/953585171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:24","STORET",7,NA,2021-10-20 20:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.753,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.376,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917520-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"13:45:00","MST",NA,NA,NA,"Bottom","1.376","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585176",NA,"as N","Nitrogen","Dissolved","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917520-1020-29-C/results/953585176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:24","STORET",7,NA,2021-10-20 20:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.376,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917520-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585210",NA,"as N","Nitrogen","Total","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917520-1115-2-C/results/953585210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:26","STORET",7,NA,2021-11-15 20:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917520-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585215",NA,"as N","Nitrogen","Dissolved","0.831","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917520-1115-2-C/results/953585215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:26","STORET",7,NA,2021-11-15 20:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.831,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917520-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"13:50:00","MST",NA,NA,NA,"Bottom","1.434","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585228",NA,"as N","Nitrogen","Total","0.782","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917520-1115-29-C/results/953585228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:27","STORET",7,NA,2021-11-15 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.782,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.434,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917520-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"13:50:00","MST",NA,NA,NA,"Bottom","1.434","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585233",NA,"as N","Nitrogen","Dissolved","0.733","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917520-1115-29-C/results/953585233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:28","STORET",7,NA,2021-11-15 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.733,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.434,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917520-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585267",NA,"as N","Nitrogen","Total","0.786","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917520-1202-2-C/results/953585267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:30","STORET",7,NA,2021-12-02 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.786,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917520-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585272",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917520-1202-2-C/results/953585272/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:30","STORET",7,NA,2021-12-02 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917520-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"14:20:00","MST",NA,NA,NA,"Bottom","1.539","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585285",NA,"as N","Nitrogen","Total","0.818","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917520-1202-29-C/results/953585285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:31","STORET",7,NA,2021-12-02 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.818,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.539,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917520-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"14:20:00","MST",NA,NA,NA,"Bottom","1.539","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585290",NA,"as N","Nitrogen","Dissolved","0.745","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917520-1202-29-C/results/953585290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:31","STORET",7,NA,2021-12-02 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.745,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.539,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917520-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585324",NA,"as N","Nitrogen","Total","0.633","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917520-0314-2-C/results/953585324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:33","STORET",7,NA,2022-03-14 22:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.633,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917520-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585329",NA,"as N","Nitrogen","Dissolved","0.564","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917520-0314-2-C/results/953585329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:33","STORET",7,NA,2022-03-14 22:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.564,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917520-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"15:05:00","MST",NA,NA,NA,"Bottom","1.806","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585342",NA,"as N","Nitrogen","Total","0.641","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917520-0314-29-C/results/953585342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:34","STORET",7,NA,2022-03-14 22:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.641,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.806,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917520-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"15:05:00","MST",NA,NA,NA,"Bottom","1.806","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585347",NA,"as N","Nitrogen","Dissolved","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917520-0314-29-C/results/953585347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:34","STORET",7,NA,2022-03-14 22:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.806,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917600-1021-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-21,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585381",NA,"as N","Nitrogen","Total","0.883","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917600-1021-2-C/results/953585381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:35","STORET",7,NA,2021-10-21 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.883,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917600-1021-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-21,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585386",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917600-1021-2-C/results/953585386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:35","STORET",7,NA,2021-10-21 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917600-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585400",NA,"as N","Nitrogen","Total","0.708","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917600-1117-2-C/results/953585400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:36","STORET",7,NA,2021-11-17 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.708,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917600-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585405",NA,"as N","Nitrogen","Dissolved","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917600-1117-2-C/results/953585405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:36","STORET",7,NA,2021-11-17 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917708-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585419",NA,"as N","Nitrogen","Total","0.641","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917708-1020-2-C/results/953585419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:36","STORET",7,NA,2021-10-20 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.641,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917708-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585424",NA,"as N","Nitrogen","Dissolved","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917708-1020-2-C/results/953585424/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:36","STORET",7,NA,2021-10-20 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917708-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585440",NA,"as N","Nitrogen","Total","0.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917708-1115-2-C/results/953585440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:37","STORET",7,NA,2021-11-15 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917708-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585445",NA,"as N","Nitrogen","Dissolved","0.738","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917708-1115-2-C/results/953585445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:37","STORET",7,NA,2021-11-15 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.738,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917708-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585461",NA,"as N","Nitrogen","Total","0.799","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917708-1202-2-C/results/953585461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:38","STORET",7,NA,2021-12-02 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.799,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917708-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585466",NA,"as N","Nitrogen","Dissolved","0.793","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917708-1202-2-C/results/953585466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:38","STORET",7,NA,2021-12-02 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.793,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917708-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585482",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917708-0314-2-C/results/953585482/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:39","STORET",7,NA,2022-03-14 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917708-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585487",NA,"as N","Nitrogen","Dissolved","0.795","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917708-0314-2-C/results/953585487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:39","STORET",7,NA,2022-03-14 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.795,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917710-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585503",NA,"as N","Nitrogen","Total","0.756","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917710-1020-2-C/results/953585503/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:41","STORET",7,NA,2021-10-20 19:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.756,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917710-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585508",NA,"as N","Nitrogen","Dissolved","0.783","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917710-1020-2-C/results/953585508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:41","STORET",7,NA,2021-10-20 19:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.783,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917710-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"12:10:00","MST",NA,NA,NA,"Bottom","2.164","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585521",NA,"as N","Nitrogen","Total","0.773","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917710-1020-29-C/results/953585521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:42","STORET",7,NA,2021-10-20 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.773,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.164,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917710-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"12:10:00","MST",NA,NA,NA,"Bottom","2.164","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585526",NA,"as N","Nitrogen","Dissolved","0.863","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917710-1020-29-C/results/953585526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:43","STORET",7,NA,2021-10-20 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.863,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.164,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917710-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585560",NA,"as N","Nitrogen","Total","0.725","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917710-1115-2-C/results/953585560/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:44","STORET",7,NA,2021-11-15 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.725,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917710-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585565",NA,"as N","Nitrogen","Dissolved","0.849","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917710-1115-2-C/results/953585565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:44","STORET",7,NA,2021-11-15 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.849,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917710-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"12:05:00","MST",NA,NA,NA,"Bottom","2.085","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585578",NA,"as N","Nitrogen","Total","0.773","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917710-1115-29-C/results/953585578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:45","STORET",7,NA,2021-11-15 19:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.773,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.085,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917710-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"12:05:00","MST",NA,NA,NA,"Bottom","2.085","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585583",NA,"as N","Nitrogen","Dissolved","0.757","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917710-1115-29-C/results/953585583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:45","STORET",7,NA,2021-11-15 19:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.757,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.085,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917710-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585616",NA,"as N","Nitrogen","Total","0.751","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917710-1202-2-C/results/953585616/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:47","STORET",7,NA,2021-12-02 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.751,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917710-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585621",NA,"as N","Nitrogen","Dissolved","0.907","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917710-1202-2-C/results/953585621/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:47","STORET",7,NA,2021-12-02 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.907,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917710-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"12:40:00","MST",NA,NA,NA,"Bottom","2.132","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585634",NA,"as N","Nitrogen","Total","0.791","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917710-1202-29-C/results/953585634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:48","STORET",7,NA,2021-12-02 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.791,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.132,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917710-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"12:40:00","MST",NA,NA,NA,"Bottom","2.132","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585639",NA,"as N","Nitrogen","Dissolved","0.785","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917710-1202-29-C/results/953585639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:48","STORET",7,NA,2021-12-02 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.785,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.132,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917710-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585673",NA,"as N","Nitrogen","Total","0.666","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917710-0314-2-C/results/953585673/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:50","STORET",7,NA,2022-03-14 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.666,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917710-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585678",NA,"as N","Nitrogen","Dissolved","0.603","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917710-0314-2-C/results/953585678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:50","STORET",7,NA,2022-03-14 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.603,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917710-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"13:05:00","MST",NA,NA,NA,"Bottom","2.595","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585691",NA,"as N","Nitrogen","Total","0.691","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917710-0314-29-C/results/953585691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:51","STORET",7,NA,2022-03-14 20:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.691,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.595,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917710-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"13:05:00","MST",NA,NA,NA,"Bottom","2.595","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585696",NA,"as N","Nitrogen","Dissolved","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917710-0314-29-C/results/953585696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:51","STORET",7,NA,2022-03-14 20:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.595,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917715-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585730",NA,"as N","Nitrogen","Total","0.743","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917715-1020-2-C/results/953585730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:54","STORET",7,NA,2021-10-20 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.743,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917715-1020-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585735",NA,"as N","Nitrogen","Dissolved","0.896","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917715-1020-2-C/results/953585735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:54","STORET",7,NA,2021-10-20 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.896,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917715-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"11:55:00","MST",NA,NA,NA,"Bottom","2.231","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585748",NA,"as N","Nitrogen","Total","0.739","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917715-1020-29-C/results/953585748/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:55","STORET",7,NA,2021-10-20 18:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.739,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.231,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917715-1020-29-C","Sample-Routine","Water",NA,2021-10-20,"11:55:00","MST",NA,NA,NA,"Bottom","2.231","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585753",NA,"as N","Nitrogen","Dissolved","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917715-1020-29-C/results/953585753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:55","STORET",7,NA,2021-10-20 18:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.231,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917715-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585787",NA,"as N","Nitrogen","Total","0.745","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917715-1115-2-C/results/953585787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:57","STORET",7,NA,2021-11-15 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.745,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917715-1115-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585792",NA,"as N","Nitrogen","Dissolved","0.857","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917715-1115-2-C/results/953585792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:57","STORET",7,NA,2021-11-15 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.857,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917715-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"11:55:00","MST",NA,NA,NA,"Bottom","2.213","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585805",NA,"as N","Nitrogen","Total","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917715-1115-29-C/results/953585805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:58","STORET",7,NA,2021-11-15 18:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.213,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917715-1115-29-C","Sample-Routine","Water",NA,2021-11-15,"11:55:00","MST",NA,NA,NA,"Bottom","2.213","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585810",NA,"as N","Nitrogen","Dissolved","0.826","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917715-1115-29-C/results/953585810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:45:58","STORET",7,NA,2021-11-15 18:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.826,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.213,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917715-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585844",NA,"as N","Nitrogen","Total","0.761","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917715-1202-2-C/results/953585844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:00","STORET",7,NA,2021-12-02 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.761,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917715-1202-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-02,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585849",NA,"as N","Nitrogen","Dissolved","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917715-1202-2-C/results/953585849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:00","STORET",7,NA,2021-12-02 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917715-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"12:20:00","MST",NA,NA,NA,"Bottom","2.253","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585862",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917715-1202-29-C/results/953585862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:01","STORET",7,NA,2021-12-02 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.253,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4917715-1202-29-C","Sample-Routine","Water",NA,2021-12-02,"12:20:00","MST",NA,NA,NA,"Bottom","2.253","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585867",NA,"as N","Nitrogen","Dissolved","0.972","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4917715-1202-29-C/results/953585867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:01","STORET",7,NA,2021-12-02 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.972,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.253,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917715-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585901",NA,"as N","Nitrogen","Total","0.674","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917715-0314-2-C/results/953585901/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:03","STORET",7,NA,2022-03-14 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.674,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917715-0314-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-14,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585906",NA,"as N","Nitrogen","Dissolved","0.831","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917715-0314-2-C/results/953585906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:03","STORET",7,NA,2022-03-14 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.831,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917715-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"12:45:00","MST",NA,NA,NA,"Bottom","2.586","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585919",NA,"as N","Nitrogen","Total","0.716","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917715-0314-29-C/results/953585919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:05","STORET",7,NA,2022-03-14 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.716,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.586,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4917715-0314-29-C","Sample-Routine","Water",NA,2022-03-14,"12:45:00","MST",NA,NA,NA,"Bottom","2.586","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585924",NA,"as N","Nitrogen","Dissolved","0.602","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4917715-0314-29-C/results/953585924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:05","STORET",7,NA,2022-03-14 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.602,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.586,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917770-1021-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-21,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585958",NA,"as N","Nitrogen","Total","2.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917770-1021-2-C/results/953585958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:06","STORET",7,NA,2021-10-21 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4917770-1021-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-21,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585963",NA,"as N","Nitrogen","Dissolved","2.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4917770-1021-2-C/results/953585963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:06","STORET",7,NA,2021-10-21 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917770-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-17,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585977",NA,"as N","Nitrogen","Total","0.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917770-1117-2-C/results/953585977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:07","STORET",7,NA,2021-11-17 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4917770-1117-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-11-17,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585982",NA,"as N","Nitrogen","Dissolved","0.662","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4917770-1117-2-C/results/953585982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:07","STORET",7,NA,2021-11-17 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.662,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920010-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585990",NA,"as N","Nitrogen","Total","6.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920010-1115-4-C/results/953585990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:08","STORET",7,NA,2021-11-15 18:00:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.82,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920010-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953585993",NA,"as N","Nitrogen","Dissolved","6.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920010-1115-4-C/results/953585993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:08","STORET",7,NA,2021-11-15 18:00:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"8999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920010-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586033",NA,"as N","Nitrogen","Total","6.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920010-1213-4-C/results/953586033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:10","STORET",7,NA,2021-12-13 17:55:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920010-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586036",NA,"as N","Nitrogen","Dissolved","7.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920010-1213-4-C/results/953586036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:11","STORET",7,NA,2021-12-13 17:55:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920010-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586076",NA,"as N","Nitrogen","Total","8.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920010-0110-4-C/results/953586076/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:15","STORET",7,NA,2022-01-10 18:20:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.82,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920010-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586079",NA,"as N","Nitrogen","Dissolved","8.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920010-0110-4-C/results/953586079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:15","STORET",7,NA,2022-01-10 18:20:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920010-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586119",NA,"as N","Nitrogen","Total","9.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920010-0207-4-C/results/953586119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:18","STORET",7,NA,2022-02-07 18:15:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920010-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586122",NA,"as N","Nitrogen","Dissolved","9.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920010-0207-4-C/results/953586122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:18","STORET",7,NA,2022-02-07 18:15:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920030-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586162",NA,"as N","Nitrogen","Total","8.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920030-1018-4-C/results/953586162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:21","STORET",7,NA,2021-10-18 19:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920030-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586165",NA,"as N","Nitrogen","Dissolved","8.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920030-1018-4-C/results/953586165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:21","STORET",7,NA,2021-10-18 19:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920030-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586189",NA,"as N","Nitrogen","Total","7.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920030-1115-4-C/results/953586189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:22","STORET",7,NA,2021-11-15 18:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920030-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586192",NA,"as N","Nitrogen","Dissolved","6.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920030-1115-4-C/results/953586192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:22","STORET",7,NA,2021-11-15 18:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920030-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586200",NA,"as N","Nitrogen","Total","7.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920030-1213-4-C/results/953586200/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:23","STORET",7,NA,2021-12-13 18:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920030-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586203",NA,"as N","Nitrogen","Dissolved","7.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920030-1213-4-C/results/953586203/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:23","STORET",7,NA,2021-12-13 18:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920030-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586227",NA,"as N","Nitrogen","Total","9.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920030-0110-4-C/results/953586227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:24","STORET",7,NA,2022-01-10 18:50:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920030-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586230",NA,"as N","Nitrogen","Dissolved","8.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920030-0110-4-C/results/953586230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:24","STORET",7,NA,2022-01-10 18:50:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920030-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586238",NA,"as N","Nitrogen","Total","9.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920030-0307-4-C/results/953586238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:25","STORET",7,NA,2022-03-07 17:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.98,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920030-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586241",NA,"as N","Nitrogen","Dissolved","8.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920030-0307-4-C/results/953586241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:25","STORET",7,NA,2022-03-07 17:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920048-1018-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586248",NA,"as N","Nitrogen","Total","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920048-1018-4-C/results/953586248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:25","STORET",7,NA,2021-10-18 18:30:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920048-1018-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586251",NA,"as N","Nitrogen","Dissolved","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920048-1018-4-C/results/953586251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:25","STORET",7,NA,2021-10-18 18:30:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920048-1115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586290",NA,"as N","Nitrogen","Total","3.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920048-1115-4-C/results/953586290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:28","STORET",7,NA,2021-11-15 17:40:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920048-1115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586293",NA,"as N","Nitrogen","Dissolved","2.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920048-1115-4-C/results/953586293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:28","STORET",7,NA,2021-11-15 17:40:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.95,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920048-1213-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-13,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586332",NA,"as N","Nitrogen","Total","2.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920048-1213-4-C/results/953586332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:29","STORET",7,NA,2021-12-13 17:40:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.87,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920048-1213-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-13,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586335",NA,"as N","Nitrogen","Dissolved","2.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920048-1213-4-C/results/953586335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:29","STORET",7,NA,2021-12-13 17:40:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920048-0110-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586374",NA,"as N","Nitrogen","Total","6.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920048-0110-4-C/results/953586374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:31","STORET",7,NA,2022-01-10 18:00:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",6.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920048-0110-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586377",NA,"as N","Nitrogen","Dissolved","6.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920048-0110-4-C/results/953586377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:31","STORET",7,NA,2022-01-10 18:00:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",6.97,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920048-0207-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-07,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586416",NA,"as N","Nitrogen","Total","7.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920048-0207-4-C/results/953586416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:33","STORET",7,NA,2022-02-07 18:00:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",7.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920048-0207-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-07,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586419",NA,"as N","Nitrogen","Dissolved","8.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920048-0207-4-C/results/953586419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:33","STORET",7,NA,2022-02-07 18:00:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",8.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920048-0307-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586458",NA,"as N","Nitrogen","Total","7.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920048-0307-4-C/results/953586458/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:35","STORET",7,NA,2022-03-07 17:30:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",7.98,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920048-0307-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586461",NA,"as N","Nitrogen","Dissolved","7.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920048-0307-4-C/results/953586461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:36","STORET",7,NA,2022-03-07 17:30:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",7.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920050-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586501",NA,"as N","Nitrogen","Total","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920050-1018-4-C/results/953586501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:39","STORET",7,NA,2021-10-18 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920050-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586504",NA,"as N","Nitrogen","Dissolved","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920050-1018-4-C/results/953586504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:39","STORET",7,NA,2021-10-18 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920050-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586544",NA,"as N","Nitrogen","Total","3.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920050-1115-4-C/results/953586544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:42","STORET",7,NA,2021-11-15 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920050-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586547",NA,"as N","Nitrogen","Dissolved","2.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920050-1115-4-C/results/953586547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:42","STORET",7,NA,2021-11-15 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920050-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586587",NA,"as N","Nitrogen","Total","2.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920050-1213-4-C/results/953586587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:45","STORET",7,NA,2021-12-13 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920050-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586590",NA,"as N","Nitrogen","Dissolved","3.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920050-1213-4-C/results/953586590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:45","STORET",7,NA,2021-12-13 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920050-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586630",NA,"as N","Nitrogen","Total","7.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920050-0110-4-C/results/953586630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:48","STORET",7,NA,2022-01-10 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920050-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586633",NA,"as N","Nitrogen","Dissolved","7.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920050-0110-4-C/results/953586633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:48","STORET",7,NA,2022-01-10 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920050-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586673",NA,"as N","Nitrogen","Total","7.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920050-0207-4-C/results/953586673/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:50","STORET",7,NA,2022-02-07 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920050-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586713",NA,"as N","Nitrogen","Total","7.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920050-0307-4-C/results/953586713/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:54","STORET",7,NA,2022-03-07 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920050-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586716",NA,"as N","Nitrogen","Dissolved","7.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920050-0307-4-C/results/953586716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:54","STORET",7,NA,2022-03-07 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920062-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586755",NA,"as N","Nitrogen","Total","0.818","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920062-1018-4-C/results/953586755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:57","STORET",7,NA,2021-10-18 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.818,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920062-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586758",NA,"as N","Nitrogen","Dissolved","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920062-1018-4-C/results/953586758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:46:57","STORET",7,NA,2021-10-18 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920062-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586781",NA,"as N","Nitrogen","Total","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920062-1115-4-C/results/953586781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:00","STORET",7,NA,2021-11-15 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920062-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586784",NA,"as N","Nitrogen","Dissolved","0.881","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920062-1115-4-C/results/953586784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:01","STORET",7,NA,2021-11-15 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.881,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920062-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586791",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920062-1213-4-C/results/953586791/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:01","STORET",7,NA,2021-12-13 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920062-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586794",NA,"as N","Nitrogen","Dissolved","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920062-1213-4-C/results/953586794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:02","STORET",7,NA,2021-12-13 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920062-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586817",NA,"as N","Nitrogen","Total","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920062-0110-4-C/results/953586817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:04","STORET",7,NA,2022-01-10 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920062-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586820",NA,"as N","Nitrogen","Dissolved","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920062-0110-4-C/results/953586820/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:04","STORET",7,NA,2022-01-10 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920062-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586827",NA,"as N","Nitrogen","Total","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920062-0207-4-C/results/953586827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:05","STORET",7,NA,2022-02-07 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920062-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586830",NA,"as N","Nitrogen","Dissolved","2.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920062-0207-4-C/results/953586830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:05","STORET",7,NA,2022-02-07 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920062-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586853",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920062-0307-4-C/results/953586853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:06","STORET",7,NA,2022-03-07 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920062-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586856",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920062-0307-4-C/results/953586856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:07","STORET",7,NA,2022-03-07 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920097-1018-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-18,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586863",NA,"as N","Nitrogen","Total","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1018-4-C/results/953586863/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:07","STORET",7,NA,2021-10-18 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920097-1018-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-18,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586866","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1018-4-C/results/953586866/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:07","STORET",7,NA,2021-10-18 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920097-1019-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-19,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586905","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1019-4-C/results/953586905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:09","STORET",7,NA,2021-10-19 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920097-1019-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-19,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586908",NA,"as N","Nitrogen","Dissolved","0.103","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1019-4-C/results/953586908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:09","STORET",7,NA,2021-10-19 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.103,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920097-1020-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-20,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586931","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1020-4-C/results/953586931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:10","STORET",7,NA,2021-10-20 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920097-1020-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-20,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586934","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920097-1020-4-C/results/953586934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:10","STORET",7,NA,2021-10-20 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920097-1115-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-15,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586957","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1115-4-C/results/953586957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:11","STORET",7,NA,2021-11-15 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920097-1115-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-15,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586960","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1115-4-C/results/953586960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:11","STORET",7,NA,2021-11-15 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920097-1116-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-16,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953586999","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1116-4-C/results/953586999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:12","STORET",7,NA,2021-11-16 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920097-1116-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-16,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587002",NA,"as N","Nitrogen","Dissolved","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1116-4-C/results/953587002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:12","STORET",7,NA,2021-11-16 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920097-1117-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-17,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587009","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1117-4-C/results/953587009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:13","STORET",7,NA,2021-11-17 23:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920097-1117-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-17,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587012",NA,"as N","Nitrogen","Dissolved","0.083","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920097-1117-4-C/results/953587012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:13","STORET",7,NA,2021-11-17 23:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.083,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920097-1213-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-13,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587019","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1213-4-C/results/953587019/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:13","STORET",7,NA,2021-12-13 20:35:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920097-1213-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-13,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587022",NA,"as N","Nitrogen","Dissolved","0.156","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1213-4-C/results/953587022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:14","STORET",7,NA,2021-12-13 20:35:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.156,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920097-1214-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587061","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1214-4-C/results/953587061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:17","STORET",7,NA,2021-12-14 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920097-1214-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587064",NA,"as N","Nitrogen","Dissolved","0.627","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1214-4-C/results/953587064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:17","STORET",7,NA,2021-12-14 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.627,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920097-1221-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-21,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587087","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1221-4-C/results/953587087/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:18","STORET",7,NA,2021-12-21 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920097-1221-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-21,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587090","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920097-1221-4-C/results/953587090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:18","STORET",7,NA,2021-12-21 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920097-0110-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-10,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587113","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920097-0110-4-C/results/953587113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:20","STORET",7,NA,2022-01-10 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920097-0110-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-10,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587116","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920097-0110-4-C/results/953587116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:20","STORET",7,NA,2022-01-10 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920097-0111-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-11,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587155","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920097-0111-4-C/results/953587155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:22","STORET",7,NA,2022-01-11 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920097-0111-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-11,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587158","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920097-0111-4-C/results/953587158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:22","STORET",7,NA,2022-01-11 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920097-0207-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-07,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587165","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0207-4-C/results/953587165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:23","STORET",7,NA,2022-02-07 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920097-0207-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-07,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587168","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0207-4-C/results/953587168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:23","STORET",7,NA,2022-02-07 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920097-0208-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587207","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0208-4-C/results/953587207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:25","STORET",7,NA,2022-02-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920097-0208-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587210",NA,"as N","Nitrogen","Dissolved","0.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0208-4-C/results/953587210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:25","STORET",7,NA,2022-02-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920097-0209-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-09,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587233","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0209-4-C/results/953587233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:26","STORET",7,NA,2022-02-09 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920097-0209-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-09,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587236",NA,"as N","Nitrogen","Dissolved","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920097-0209-4-C/results/953587236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:26","STORET",7,NA,2022-02-09 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920097-0307-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-07,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587259","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0307-4-C/results/953587259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:28","STORET",7,NA,2022-03-07 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920097-0307-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-07,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587262","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0307-4-C/results/953587262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:28","STORET",7,NA,2022-03-07 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920097-0308-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587301","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0308-4-C/results/953587301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:31","STORET",7,NA,2022-03-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920097-0308-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587304","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0308-4-C/results/953587304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:32","STORET",7,NA,2022-03-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920097-0309-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587311","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0309-4-C/results/953587311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:33","STORET",7,NA,2022-03-09 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920097-0309-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-09,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587314","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920097-0309-4-C/results/953587314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:33","STORET",7,NA,2022-03-09 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920098-1026-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-26,"07:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587321","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1026-4-C/results/953587321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:34","STORET",7,NA,2021-10-26 14:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920098-1026-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-26,"07:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587324",NA,"as N","Nitrogen","Dissolved","0.122","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1026-4-C/results/953587324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:35","STORET",7,NA,2021-10-26 14:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.122,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920098-1026-4/1-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-26,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587347","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1026-4%2F1-C/results/953587347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:37","STORET",7,NA,2021-10-26 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920098-1026-4/1-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-26,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587350","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1026-4%2F1-C/results/953587350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:37","STORET",7,NA,2021-10-26 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920098-1027-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-27,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587389","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1027-4-C/results/953587389/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:39","STORET",7,NA,2021-10-27 22:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920098-1027-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-27,"15:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587392",NA,"as N","Nitrogen","Dissolved","0.122","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920098-1027-4-C/results/953587392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:39","STORET",7,NA,2021-10-27 22:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.122,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920098-1115-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587431","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1115-4-C/results/953587431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:42","STORET",7,NA,2021-11-15 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920098-1115-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587434",NA,"as N","Nitrogen","Dissolved","0.095","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1115-4-C/results/953587434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:43","STORET",7,NA,2021-11-15 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.095,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920098-1116-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-16,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587473","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1116-4-C/results/953587473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:45","STORET",7,NA,2021-11-16 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920098-1116-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-16,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587476","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1116-4-C/results/953587476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:45","STORET",7,NA,2021-11-16 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920098-1117-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587484","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1117-4-C/results/953587484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:46","STORET",7,NA,2021-11-17 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920098-1117-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587487","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920098-1117-4-C/results/953587487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:46","STORET",7,NA,2021-11-17 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920098-1213-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587526","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920098-1213-4-C/results/953587526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:48","STORET",7,NA,2021-12-13 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920098-1213-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587529","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920098-1213-4-C/results/953587529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:48","STORET",7,NA,2021-12-13 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920098-1214-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-14,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587568","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920098-1214-4-C/results/953587568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:49","STORET",7,NA,2021-12-14 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920098-1214-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-14,"16:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587571","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920098-1214-4-C/results/953587571/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:50","STORET",7,NA,2021-12-14 23:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920098-0110-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587610","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0110-4-C/results/953587610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:52","STORET",7,NA,2022-01-10 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920098-0110-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-10,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587613","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0110-4-C/results/953587613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:53","STORET",7,NA,2022-01-10 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920098-0111-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-11,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587652","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0111-4-C/results/953587652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:55","STORET",7,NA,2022-01-11 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920098-0111-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-11,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587655","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0111-4-C/results/953587655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:55","STORET",7,NA,2022-01-11 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920098-0112-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-12,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587663","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0112-4-C/results/953587663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:56","STORET",7,NA,2022-01-12 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920098-0112-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-12,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587666","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920098-0112-4-C/results/953587666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:56","STORET",7,NA,2022-01-12 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920098-0207-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587705","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0207-4-C/results/953587705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:57","STORET",7,NA,2022-02-07 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920098-0207-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587708","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0207-4-C/results/953587708/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:47:57","STORET",7,NA,2022-02-07 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920098-0208-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587747","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0208-4-C/results/953587747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:00","STORET",7,NA,2022-02-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920098-0208-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587750",NA,"as N","Nitrogen","Dissolved","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0208-4-C/results/953587750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:00","STORET",7,NA,2022-02-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920098-0209-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587789","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0209-4-C/results/953587789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:02","STORET",7,NA,2022-02-09 19:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920098-0209-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587792","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920098-0209-4-C/results/953587792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:02","STORET",7,NA,2022-02-09 19:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920098-0307-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587816","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0307-4-C/results/953587816/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:04","STORET",7,NA,2022-03-07 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920098-0307-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587819","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0307-4-C/results/953587819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:04","STORET",7,NA,2022-03-07 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920098-0308-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587858","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0308-4-C/results/953587858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:06","STORET",7,NA,2022-03-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920098-0308-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-08,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587861","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0308-4-C/results/953587861/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:06","STORET",7,NA,2022-03-08 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920098-0309-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-09,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587900","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0309-4-C/results/953587900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:08","STORET",7,NA,2022-03-09 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920098-0309-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-09,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587903","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920098-0309-4-C/results/953587903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:08","STORET",7,NA,2022-03-09 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920110-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587911",NA,"as N","Nitrogen","Total","10.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920110-1018-4-C/results/953587911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:09","STORET",7,NA,2021-10-18 19:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920110-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587914",NA,"as N","Nitrogen","Dissolved","10.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920110-1018-4-C/results/953587914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:09","STORET",7,NA,2021-10-18 19:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920110-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587954",NA,"as N","Nitrogen","Total","9.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920110-1115-4-C/results/953587954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:12","STORET",7,NA,2021-11-15 18:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920110-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587957",NA,"as N","Nitrogen","Dissolved","8.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920110-1115-4-C/results/953587957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:12","STORET",7,NA,2021-11-15 18:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920110-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953587997",NA,"as N","Nitrogen","Total","7.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920110-1213-4-C/results/953587997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:16","STORET",7,NA,2021-12-13 18:35:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920110-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588000",NA,"as N","Nitrogen","Dissolved","7.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920110-1213-4-C/results/953588000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:16","STORET",7,NA,2021-12-13 18:35:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920110-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588040",NA,"as N","Nitrogen","Total","10.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920110-0110-4-C/results/953588040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:18","STORET",7,NA,2022-01-10 19:20:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920110-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588043",NA,"as N","Nitrogen","Dissolved","10.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920110-0110-4-C/results/953588043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:19","STORET",7,NA,2022-01-10 19:20:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920110-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588051",NA,"as N","Nitrogen","Total","11.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920110-0207-4-C/results/953588051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:19","STORET",7,NA,2022-02-07 18:40:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920110-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588054",NA,"as N","Nitrogen","Dissolved","11.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920110-0207-4-C/results/953588054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:20","STORET",7,NA,2022-02-07 18:40:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920110-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588094",NA,"as N","Nitrogen","Total","13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920110-0307-4-C/results/953588094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:22","STORET",7,NA,2022-03-07 18:05:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920110-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588097",NA,"as N","Nitrogen","Dissolved","12.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920110-0307-4-C/results/953588097/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:22","STORET",7,NA,2022-03-07 18:05:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920120-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588137",NA,"as N","Nitrogen","Total","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920120-1018-4-C/results/953588137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:23","STORET",7,NA,2021-10-18 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920120-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588140",NA,"as N","Nitrogen","Dissolved","0.786","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920120-1018-4-C/results/953588140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:23","STORET",7,NA,2021-10-18 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.786,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920120-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588180",NA,"as N","Nitrogen","Total","0.647","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920120-1115-4-C/results/953588180/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:25","STORET",7,NA,2021-11-15 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.647,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920120-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588183",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920120-1115-4-C/results/953588183/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:25","STORET",7,NA,2021-11-15 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920120-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588223",NA,"as N","Nitrogen","Total","0.809","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920120-1213-4-C/results/953588223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:26","STORET",7,NA,2021-12-13 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.809,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920120-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588226",NA,"as N","Nitrogen","Dissolved","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920120-1213-4-C/results/953588226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:26","STORET",7,NA,2021-12-13 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920120-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588266",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920120-0110-4-C/results/953588266/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:28","STORET",7,NA,2022-01-10 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920120-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588269",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920120-0110-4-C/results/953588269/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:28","STORET",7,NA,2022-01-10 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920120-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588309",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920120-0207-4-C/results/953588309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:30","STORET",7,NA,2022-02-07 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920120-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588312",NA,"as N","Nitrogen","Dissolved","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920120-0207-4-C/results/953588312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:30","STORET",7,NA,2022-02-07 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920120-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588352",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920120-0307-4-C/results/953588352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:32","STORET",7,NA,2022-03-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920120-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588355",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920120-0307-4-C/results/953588355/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:32","STORET",7,NA,2022-03-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4920440-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-05,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588397",NA,"as N","Nitrogen","Total","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920440-1005-2-C/results/953588397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:33","STORET",7,NA,2021-10-05 17:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4920440-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-05,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588401",NA,"as N","Nitrogen","Dissolved","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920440-1005-2-C/results/953588401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:33","STORET",7,NA,2021-10-05 17:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4920450-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-05,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588428",NA,"as N","Nitrogen","Total","0.521","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920450-1005-2-C/results/953588428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:34","STORET",7,NA,2021-10-05 17:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.521,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4920450-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-05,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588432",NA,"as N","Nitrogen","Dissolved","0.433","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920450-1005-2-C/results/953588432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:34","STORET",7,NA,2021-10-05 17:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.433,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4920460-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-05,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588442",NA,"as N","Nitrogen","Total","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920460-1005-2-C/results/953588442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:35","STORET",7,NA,2021-10-05 18:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4920460-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-05,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588446",NA,"as N","Nitrogen","Dissolved","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920460-1005-2-C/results/953588446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:35","STORET",7,NA,2021-10-05 18:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4920470-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-05,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588456",NA,"as N","Nitrogen","Total","0.521","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920470-1005-2-C/results/953588456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:35","STORET",7,NA,2021-10-05 18:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.521,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4920470-1005-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-05,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588460",NA,"as N","Nitrogen","Dissolved","0.388","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4920470-1005-2-C/results/953588460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:35","STORET",7,NA,2021-10-05 18:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.388,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920973-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588467",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920973-1018-4-C/results/953588467/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:35","STORET",7,NA,2021-10-18 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920973-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588470",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920973-1018-4-C/results/953588470/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:35","STORET",7,NA,2021-10-18 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920973-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588493",NA,"as N","Nitrogen","Total","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920973-1115-4-C/results/953588493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:36","STORET",7,NA,2021-11-15 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920973-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588496",NA,"as N","Nitrogen","Dissolved","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920973-1115-4-C/results/953588496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:36","STORET",7,NA,2021-11-15 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920973-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588503",NA,"as N","Nitrogen","Total","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920973-1213-4-C/results/953588503/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:36","STORET",7,NA,2021-12-13 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920973-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588506",NA,"as N","Nitrogen","Dissolved","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920973-1213-4-C/results/953588506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:36","STORET",7,NA,2021-12-13 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920990-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588529",NA,"as N","Nitrogen","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920990-1019-4-C/results/953588529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:38","STORET",7,NA,2021-10-19 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4920990-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588532",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4920990-1019-4-C/results/953588532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:38","STORET",7,NA,2021-10-19 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920990-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588555",NA,"as N","Nitrogen","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920990-1116-4-C/results/953588555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:40","STORET",7,NA,2021-11-16 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4920990-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588558",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4920990-1116-4-C/results/953588558/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:40","STORET",7,NA,2021-11-16 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920990-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588565",NA,"as N","Nitrogen","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920990-1214-4-C/results/953588565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:40","STORET",7,NA,2021-12-14 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4920990-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588568",NA,"as N","Nitrogen","Dissolved","1.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4920990-1214-4-C/results/953588568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:41","STORET",7,NA,2021-12-14 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.99,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920990-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588591",NA,"as N","Nitrogen","Total","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920990-0111-4-C/results/953588591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:41","STORET",7,NA,2022-01-11 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4920990-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588594",NA,"as N","Nitrogen","Dissolved","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4920990-0111-4-C/results/953588594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:42","STORET",7,NA,2022-01-11 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920990-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588601",NA,"as N","Nitrogen","Total","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920990-0208-4-C/results/953588601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:42","STORET",7,NA,2022-02-08 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4920990-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588604",NA,"as N","Nitrogen","Dissolved","1.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4920990-0208-4-C/results/953588604/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:42","STORET",7,NA,2022-02-08 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920990-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588627",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920990-0308-4-C/results/953588627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:43","STORET",7,NA,2022-03-08 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4920990-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588630",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4920990-0308-4-C/results/953588630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:43","STORET",7,NA,2022-03-08 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921000-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588638",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921000-1019-4-C/results/953588638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:43","STORET",7,NA,2021-10-19 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921000-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588641",NA,"as N","Nitrogen","Dissolved","1.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921000-1019-4-C/results/953588641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:43","STORET",7,NA,2021-10-19 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921000-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588649",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921000-1116-4-C/results/953588649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:43","STORET",7,NA,2021-11-16 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921000-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588652",NA,"as N","Nitrogen","Dissolved","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921000-1116-4-C/results/953588652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:44","STORET",7,NA,2021-11-16 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921000-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588660",NA,"as N","Nitrogen","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921000-1214-4-C/results/953588660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:44","STORET",7,NA,2021-12-14 18:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921000-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588663",NA,"as N","Nitrogen","Dissolved","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921000-1214-4-C/results/953588663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:44","STORET",7,NA,2021-12-14 18:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4921000-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588687",NA,"as N","Nitrogen","Total","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921000-0111-4-C/results/953588687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:46","STORET",7,NA,2022-01-11 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4921000-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588690",NA,"as N","Nitrogen","Dissolved","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921000-0111-4-C/results/953588690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:46","STORET",7,NA,2022-01-11 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4921000-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588698",NA,"as N","Nitrogen","Total","1.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921000-0208-4-C/results/953588698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:47","STORET",7,NA,2022-02-08 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4921000-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588701",NA,"as N","Nitrogen","Dissolved","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921000-0208-4-C/results/953588701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:47","STORET",7,NA,2022-02-08 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921000-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588725",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921000-0308-4-C/results/953588725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:48","STORET",7,NA,2022-03-08 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921000-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588728",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921000-0308-4-C/results/953588728/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:48","STORET",7,NA,2022-03-08 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921010-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588736",NA,"as N","Nitrogen","Total","13.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921010-1019-4-C/results/953588736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:49","STORET",7,NA,2021-10-19 19:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921010-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588739",NA,"as N","Nitrogen","Dissolved","13.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921010-1019-4-C/results/953588739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:49","STORET",7,NA,2021-10-19 19:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921010-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588763",NA,"as N","Nitrogen","Total","31.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921010-1116-4-C/results/953588763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:50","STORET",7,NA,2021-11-16 19:15:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",31.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921010-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588766",NA,"as N","Nitrogen","Dissolved","31.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921010-1116-4-C/results/953588766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:50","STORET",7,NA,2021-11-16 19:15:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",31.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921010-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588774",NA,"as N","Nitrogen","Total","32.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921010-1214-4-C/results/953588774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:51","STORET",7,NA,2021-12-14 18:40:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",32.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921010-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588777",NA,"as N","Nitrogen","Dissolved","30.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921010-1214-4-C/results/953588777/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:51","STORET",7,NA,2021-12-14 18:40:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",30.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4921010-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588801",NA,"as N","Nitrogen","Total","36.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921010-0111-4-C/results/953588801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:52","STORET",7,NA,2022-01-11 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",36.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4921010-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588804",NA,"as N","Nitrogen","Dissolved","35.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921010-0111-4-C/results/953588804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:52","STORET",7,NA,2022-01-11 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",35.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4921010-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588812",NA,"as N","Nitrogen","Total","41.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921010-0208-4-C/results/953588812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:52","STORET",7,NA,2022-02-08 18:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",41.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4921010-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588815",NA,"as N","Nitrogen","Dissolved","39.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921010-0208-4-C/results/953588815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:52","STORET",7,NA,2022-02-08 18:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",39.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921010-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588839",NA,"as N","Nitrogen","Total","45.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921010-0308-4-C/results/953588839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:53","STORET",7,NA,2022-03-08 18:35:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",45.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921010-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588842",NA,"as N","Nitrogen","Dissolved","42.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921010-0308-4-C/results/953588842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:53","STORET",7,NA,2022-03-08 18:35:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",42.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921113-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588849",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921113-1025-4-C/results/953588849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:53","STORET",7,NA,2021-10-25 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921113-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588852",NA,"as N","Nitrogen","Dissolved","0.181","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921113-1025-4-C/results/953588852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:53","STORET",7,NA,2021-10-25 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.181,"MG/L","Numeric","Pass","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921113-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588875",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921113-1116-4-C/results/953588875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:54","STORET",7,NA,2021-11-16 19:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921113-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588878",NA,"as N","Nitrogen","Dissolved","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921113-1116-4-C/results/953588878/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:54","STORET",7,NA,2021-11-16 19:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921113-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588885",NA,"as N","Nitrogen","Total","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921113-1214-4-C/results/953588885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:54","STORET",7,NA,2021-12-14 17:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921113-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588888",NA,"as N","Nitrogen","Dissolved","0.575","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921113-1214-4-C/results/953588888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:54","STORET",7,NA,2021-12-14 17:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.575,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921124-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588911",NA,"as N","Nitrogen","Total","0.163","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921124-1025-4-C/results/953588911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:55","STORET",7,NA,2021-10-25 21:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.163,"MG/L","Numeric","Pass","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921124-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588914",NA,"as N","Nitrogen","Dissolved","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921124-1025-4-C/results/953588914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:55","STORET",7,NA,2021-10-25 21:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921124-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588937",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921124-1116-4-C/results/953588937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:56","STORET",7,NA,2021-11-16 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921124-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588940",NA,"as N","Nitrogen","Dissolved","0.16","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921124-1116-4-C/results/953588940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:57","STORET",7,NA,2021-11-16 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.16,"MG/L","Numeric","Pass","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921124-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588948",NA,"as N","Nitrogen","Total","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921124-1214-4-C/results/953588948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:57","STORET",7,NA,2021-12-14 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921124-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588951",NA,"as N","Nitrogen","Dissolved","0.398","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921124-1214-4-C/results/953588951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:57","STORET",7,NA,2021-12-14 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.398,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921133-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588975",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921133-1019-4-C/results/953588975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:58","STORET",7,NA,2021-10-19 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921133-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953588978",NA,"as N","Nitrogen","Dissolved","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921133-1019-4-C/results/953588978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:48:58","STORET",7,NA,2021-10-19 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921133-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589002",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921133-1116-4-C/results/953589002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:00","STORET",7,NA,2021-11-16 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921133-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589005",NA,"as N","Nitrogen","Dissolved","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921133-1116-4-C/results/953589005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:00","STORET",7,NA,2021-11-16 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921133-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589013",NA,"as N","Nitrogen","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921133-1214-4-C/results/953589013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:01","STORET",7,NA,2021-12-14 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921133-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589016",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921133-1214-4-C/results/953589016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:01","STORET",7,NA,2021-12-14 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4921133-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589040",NA,"as N","Nitrogen","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921133-0111-4-C/results/953589040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:02","STORET",7,NA,2022-01-11 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4921133-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589043",NA,"as N","Nitrogen","Dissolved","2.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921133-0111-4-C/results/953589043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:02","STORET",7,NA,2022-01-11 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4921133-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589051",NA,"as N","Nitrogen","Total","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921133-0208-4-C/results/953589051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:02","STORET",7,NA,2022-02-08 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4921133-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589054",NA,"as N","Nitrogen","Dissolved","1.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4921133-0208-4-C/results/953589054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:02","STORET",7,NA,2022-02-08 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921133-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589078",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921133-0308-4-C/results/953589078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:03","STORET",7,NA,2022-03-08 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921133-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589081",NA,"as N","Nitrogen","Dissolved","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921133-0308-4-C/results/953589081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:03","STORET",7,NA,2022-03-08 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921143-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589088",NA,"as N","Nitrogen","Total","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921143-1020-4-C/results/953589088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:03","STORET",7,NA,2021-10-20 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921143-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589091",NA,"as N","Nitrogen","Dissolved","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921143-1020-4-C/results/953589091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:04","STORET",7,NA,2021-10-20 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921143-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589114",NA,"as N","Nitrogen","Total","0.135","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921143-1117-4-C/results/953589114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:04","STORET",7,NA,2021-11-17 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.135,"MG/L","Numeric","Pass","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4921143-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589117",NA,"as N","Nitrogen","Dissolved","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4921143-1117-4-C/results/953589117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:04","STORET",7,NA,2021-11-17 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921143-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589124",NA,"as N","Nitrogen","Total","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921143-1221-4-C/results/953589124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:04","STORET",7,NA,2021-12-21 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4921143-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589127",NA,"as N","Nitrogen","Dissolved","0.088","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4921143-1221-4-C/results/953589127/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:05","STORET",7,NA,2021-12-21 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.088,"MG/L","Numeric","Pass","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4921143-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589150",NA,"as N","Nitrogen","Total","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921143-0111-4-C/results/953589150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:05","STORET",7,NA,2022-01-11 20:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4921143-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589153",NA,"as N","Nitrogen","Dissolved","0.371","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4921143-0111-4-C/results/953589153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:05","STORET",7,NA,2022-01-11 20:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.371,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921143-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589160","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921143-0309-4-C/results/953589160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:06","STORET",7,NA,2022-03-09 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921143-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589163","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921143-0309-4-C/results/953589163/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:06","STORET",7,NA,2022-03-09 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921149-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589170",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921149-1027-4-C/results/953589170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:06","STORET",7,NA,2021-10-27 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4921149-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589173",NA,"as N","Nitrogen","Dissolved","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4921149-1027-4-C/results/953589173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:06","STORET",7,NA,2021-10-27 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921149-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589196",NA,"as N","Nitrogen","Total","0.633","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921149-0308-4-C/results/953589196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:08","STORET",7,NA,2022-03-08 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.633,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4921149-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589199",NA,"as N","Nitrogen","Dissolved","0.626","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4921149-0308-4-C/results/953589199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:08","STORET",7,NA,2022-03-08 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.626,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4922700-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589206",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922700-1018-4-C/results/953589206/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:08","STORET",7,NA,2021-10-18 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4922700-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589209",NA,"as N","Nitrogen","Dissolved","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922700-1018-4-C/results/953589209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:08","STORET",7,NA,2021-10-18 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4922700-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589232",NA,"as N","Nitrogen","Total","0.464","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922700-1115-4-C/results/953589232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:09","STORET",7,NA,2021-11-15 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.464,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4922700-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589235",NA,"as N","Nitrogen","Dissolved","0.742","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922700-1115-4-C/results/953589235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:09","STORET",7,NA,2021-11-15 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.742,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4922700-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589242",NA,"as N","Nitrogen","Total","0.318","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922700-1213-4-C/results/953589242/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:09","STORET",7,NA,2021-12-13 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.318,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4922700-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589245",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922700-1213-4-C/results/953589245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:09","STORET",7,NA,2021-12-13 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4922700-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589268",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922700-0110-4-C/results/953589268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:10","STORET",7,NA,2022-01-10 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4922700-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589271",NA,"as N","Nitrogen","Dissolved","0.818","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922700-0110-4-C/results/953589271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:10","STORET",7,NA,2022-01-10 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.818,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4922700-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589278",NA,"as N","Nitrogen","Total","0.463","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922700-0207-4-C/results/953589278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:10","STORET",7,NA,2022-02-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.463,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4922700-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922700","BUES POND OUTFLOW",NA,NA,NA,NA,"41.1836500000","-111.9393100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589281",NA,"as N","Nitrogen","Dissolved","0.583","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922700-0207-4-C/results/953589281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:10","STORET",7,NA,2022-02-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1836500000","-111.9393100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.583,"MG/L","Numeric","Not Reviewed","Uncensored",41.18365,-111.93931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4922736-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589304",NA,"as N","Nitrogen","Total","0.981","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922736-0307-4-C/results/953589304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:11","STORET",7,NA,2022-03-07 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.981,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4922736-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589307",NA,"as N","Nitrogen","Dissolved","0.969","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922736-0307-4-C/results/953589307/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:11","STORET",7,NA,2022-03-07 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.969,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4922744-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589314",NA,"as N","Nitrogen","Total","0.264","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922744-1018-4-C/results/953589314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:11","STORET",7,NA,2021-10-18 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.264,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4922744-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589317",NA,"as N","Nitrogen","Dissolved","0.379","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922744-1018-4-C/results/953589317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:11","STORET",7,NA,2021-10-18 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.379,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4922744-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589340",NA,"as N","Nitrogen","Total","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922744-1117-4-C/results/953589340/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:12","STORET",7,NA,2021-11-17 22:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4922744-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589343",NA,"as N","Nitrogen","Dissolved","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922744-1117-4-C/results/953589343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:12","STORET",7,NA,2021-11-17 22:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4922756-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589350",NA,"as N","Nitrogen","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922756-1018-4-C/results/953589350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:12","STORET",7,NA,2021-10-18 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4922756-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589353",NA,"as N","Nitrogen","Dissolved","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922756-1018-4-C/results/953589353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:12","STORET",7,NA,2021-10-18 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4922756-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589376",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922756-1115-4-C/results/953589376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:14","STORET",7,NA,2021-11-15 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4922756-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589379",NA,"as N","Nitrogen","Dissolved","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922756-1115-4-C/results/953589379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:14","STORET",7,NA,2021-11-15 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4922756-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589386",NA,"as N","Nitrogen","Total","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922756-1213-4-C/results/953589386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:15","STORET",7,NA,2021-12-13 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4922756-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589389",NA,"as N","Nitrogen","Dissolved","2.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922756-1213-4-C/results/953589389/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:15","STORET",7,NA,2021-12-13 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.08,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4922756-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589412",NA,"as N","Nitrogen","Total","1.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922756-0110-4-C/results/953589412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:16","STORET",7,NA,2022-01-10 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4922756-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589415",NA,"as N","Nitrogen","Dissolved","2.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922756-0110-4-C/results/953589415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:17","STORET",7,NA,2022-01-10 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4922756-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589422",NA,"as N","Nitrogen","Total","1.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922756-0207-4-C/results/953589422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:17","STORET",7,NA,2022-02-07 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4922756-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589425",NA,"as N","Nitrogen","Dissolved","2.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922756-0207-4-C/results/953589425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:17","STORET",7,NA,2022-02-07 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4922756-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589448",NA,"as N","Nitrogen","Total","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922756-0307-4-C/results/953589448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:19","STORET",7,NA,2022-03-07 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4922756-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589451",NA,"as N","Nitrogen","Dissolved","1.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922756-0307-4-C/results/953589451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:19","STORET",7,NA,2022-03-07 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4922760-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589458",NA,"as N","Nitrogen","Total","1.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922760-0110-4-C/results/953589458/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:20","STORET",7,NA,2022-01-10 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4922760-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589461",NA,"as N","Nitrogen","Dissolved","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922760-0110-4-C/results/953589461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:20","STORET",7,NA,2022-01-10 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4922760-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589468",NA,"as N","Nitrogen","Total","0.836","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922760-0307-4-C/results/953589468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:20","STORET",7,NA,2022-03-07 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.836,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4922760-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589471",NA,"as N","Nitrogen","Dissolved","0.918","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922760-0307-4-C/results/953589471/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:21","STORET",7,NA,2022-03-07 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.918,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4922990-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589478",NA,"as N","Nitrogen","Total","0.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922990-1018-4-C/results/953589478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:21","STORET",7,NA,2021-10-18 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.81,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4922990-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589481",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4922990-1018-4-C/results/953589481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:21","STORET",7,NA,2021-10-18 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4922990-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589504",NA,"as N","Nitrogen","Total","0.857","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922990-1115-4-C/results/953589504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:22","STORET",7,NA,2021-11-15 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.857,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4922990-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589507",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4922990-1115-4-C/results/953589507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:22","STORET",7,NA,2021-11-15 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4922990-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589514",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922990-1213-4-C/results/953589514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:23","STORET",7,NA,2021-12-13 19:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4922990-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589517",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4922990-1213-4-C/results/953589517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:23","STORET",7,NA,2021-12-13 19:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4922990-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589540",NA,"as N","Nitrogen","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922990-0110-4-C/results/953589540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:24","STORET",7,NA,2022-01-10 20:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4922990-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589543",NA,"as N","Nitrogen","Dissolved","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4922990-0110-4-C/results/953589543/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:24","STORET",7,NA,2022-01-10 20:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4922990-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589550",NA,"as N","Nitrogen","Total","1.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922990-0207-4-C/results/953589550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:24","STORET",7,NA,2022-02-07 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4922990-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589553",NA,"as N","Nitrogen","Dissolved","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4922990-0207-4-C/results/953589553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:24","STORET",7,NA,2022-02-07 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4922990-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589576",NA,"as N","Nitrogen","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922990-0307-4-C/results/953589576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:26","STORET",7,NA,2022-03-07 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4922990-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589579",NA,"as N","Nitrogen","Dissolved","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4922990-0307-4-C/results/953589579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:26","STORET",7,NA,2022-03-07 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4923010-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589586",NA,"as N","Nitrogen","Total","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923010-1018-4-C/results/953589586/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:26","STORET",7,NA,2021-10-18 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4923010-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589589",NA,"as N","Nitrogen","Dissolved","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923010-1018-4-C/results/953589589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:26","STORET",7,NA,2021-10-18 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4923010-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589612",NA,"as N","Nitrogen","Total","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923010-1115-4-C/results/953589612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:28","STORET",7,NA,2021-11-15 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4923010-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589615",NA,"as N","Nitrogen","Dissolved","0.281","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923010-1115-4-C/results/953589615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:28","STORET",7,NA,2021-11-15 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.281,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4923010-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589622",NA,"as N","Nitrogen","Total","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923010-1213-4-C/results/953589622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:28","STORET",7,NA,2021-12-13 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4923010-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589625",NA,"as N","Nitrogen","Dissolved","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923010-1213-4-C/results/953589625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:28","STORET",7,NA,2021-12-13 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4923010-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589648",NA,"as N","Nitrogen","Total","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923010-0110-4-C/results/953589648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:29","STORET",7,NA,2022-01-10 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4923010-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589651",NA,"as N","Nitrogen","Dissolved","0.818","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923010-0110-4-C/results/953589651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:29","STORET",7,NA,2022-01-10 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.818,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4923010-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589658",NA,"as N","Nitrogen","Total","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923010-0207-4-C/results/953589658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:30","STORET",7,NA,2022-02-07 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4923010-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589661",NA,"as N","Nitrogen","Dissolved","0.536","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923010-0207-4-C/results/953589661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:30","STORET",7,NA,2022-02-07 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.536,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4923010-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589684",NA,"as N","Nitrogen","Total","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923010-0307-4-C/results/953589684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:31","STORET",7,NA,2022-03-07 18:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4923010-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589687",NA,"as N","Nitrogen","Dissolved","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923010-0307-4-C/results/953589687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:31","STORET",7,NA,2022-03-07 18:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4923177-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589694",NA,"as N","Nitrogen","Total","0.276","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923177-1018-4-C/results/953589694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:31","STORET",7,NA,2021-10-18 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.276,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4923177-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589697",NA,"as N","Nitrogen","Dissolved","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923177-1018-4-C/results/953589697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:31","STORET",7,NA,2021-10-18 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4923177-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589720",NA,"as N","Nitrogen","Total","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923177-1115-4-C/results/953589720/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:32","STORET",7,NA,2021-11-15 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4923177-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589723",NA,"as N","Nitrogen","Dissolved","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923177-1115-4-C/results/953589723/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:32","STORET",7,NA,2021-11-15 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4923177-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589730",NA,"as N","Nitrogen","Total","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923177-1213-4-C/results/953589730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:32","STORET",7,NA,2021-12-13 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4923177-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589733",NA,"as N","Nitrogen","Dissolved","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923177-1213-4-C/results/953589733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:33","STORET",7,NA,2021-12-13 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4923177-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589756",NA,"as N","Nitrogen","Total","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923177-0110-4-C/results/953589756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:33","STORET",7,NA,2022-01-10 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4923177-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589759",NA,"as N","Nitrogen","Dissolved","0.748","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923177-0110-4-C/results/953589759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:33","STORET",7,NA,2022-01-10 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.748,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4923177-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589766",NA,"as N","Nitrogen","Total","0.507","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923177-0207-4-C/results/953589766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:34","STORET",7,NA,2022-02-07 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.507,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4923177-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589769",NA,"as N","Nitrogen","Dissolved","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923177-0207-4-C/results/953589769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:34","STORET",7,NA,2022-02-07 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4923177-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589792",NA,"as N","Nitrogen","Total","0.388","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923177-0307-4-C/results/953589792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:34","STORET",7,NA,2022-03-07 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.388,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4923177-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589795",NA,"as N","Nitrogen","Dissolved","0.583","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923177-0307-4-C/results/953589795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:34","STORET",7,NA,2022-03-07 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.583,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4923200-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589802",NA,"as N","Nitrogen","Total","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923200-1018-4-C/results/953589802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:35","STORET",7,NA,2021-10-18 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4923200-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589805",NA,"as N","Nitrogen","Dissolved","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923200-1018-4-C/results/953589805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:35","STORET",7,NA,2021-10-18 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4923200-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589828",NA,"as N","Nitrogen","Total","0.289","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923200-1115-4-C/results/953589828/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:35","STORET",7,NA,2021-11-15 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.289,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4923200-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589831",NA,"as N","Nitrogen","Dissolved","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923200-1115-4-C/results/953589831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:35","STORET",7,NA,2021-11-15 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4923200-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"08:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589838",NA,"as N","Nitrogen","Total","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923200-1214-4-C/results/953589838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:36","STORET",7,NA,2021-12-14 15:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4923200-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"08:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589841",NA,"as N","Nitrogen","Dissolved","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923200-1214-4-C/results/953589841/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:36","STORET",7,NA,2021-12-14 15:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4923200-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589864",NA,"as N","Nitrogen","Total","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923200-0110-4-C/results/953589864/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:37","STORET",7,NA,2022-01-10 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4923200-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589867",NA,"as N","Nitrogen","Dissolved","0.438","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923200-0110-4-C/results/953589867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:38","STORET",7,NA,2022-01-10 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.438,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4923200-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589874",NA,"as N","Nitrogen","Total","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923200-0208-4-C/results/953589874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:38","STORET",7,NA,2022-02-08 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.617,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4923200-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589877",NA,"as N","Nitrogen","Dissolved","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923200-0208-4-C/results/953589877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:38","STORET",7,NA,2022-02-08 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4923200-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589900",NA,"as N","Nitrogen","Total","0.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923200-0307-4-C/results/953589900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:40","STORET",7,NA,2022-03-07 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4923200-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589903",NA,"as N","Nitrogen","Dissolved","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923200-0307-4-C/results/953589903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:40","STORET",7,NA,2022-03-07 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4923205-1018-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-18,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589910",NA,"as N","Nitrogen","Total","0.318","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923205-1018-4-C/results/953589910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:40","STORET",7,NA,2021-10-18 21:20:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.318,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4923205-1018-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-18,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589913",NA,"as N","Nitrogen","Dissolved","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4923205-1018-4-C/results/953589913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:40","STORET",7,NA,2021-10-18 21:20:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4923205-1115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589936",NA,"as N","Nitrogen","Total","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923205-1115-4-C/results/953589936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:42","STORET",7,NA,2021-11-15 20:10:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4923205-1115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589939",NA,"as N","Nitrogen","Dissolved","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4923205-1115-4-C/results/953589939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:42","STORET",7,NA,2021-11-15 20:10:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4923205-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589946",NA,"as N","Nitrogen","Total","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923205-1214-4-C/results/953589946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:43","STORET",7,NA,2021-12-14 16:00:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4923205-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589949",NA,"as N","Nitrogen","Dissolved","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4923205-1214-4-C/results/953589949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:43","STORET",7,NA,2021-12-14 16:00:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4923205-0110-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-10,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589972",NA,"as N","Nitrogen","Total","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923205-0110-4-C/results/953589972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:45","STORET",7,NA,2022-01-10 21:20:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4923205-0110-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-10,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589975",NA,"as N","Nitrogen","Dissolved","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4923205-0110-4-C/results/953589975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:45","STORET",7,NA,2022-01-10 21:20:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4923205-0208-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589982",NA,"as N","Nitrogen","Total","0.883","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923205-0208-4-C/results/953589982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:45","STORET",7,NA,2022-02-08 16:30:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.883,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4923205-0208-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953589985",NA,"as N","Nitrogen","Dissolved","0.783","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4923205-0208-4-C/results/953589985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:45","STORET",7,NA,2022-02-08 16:30:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.783,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4923205-0307-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-07,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590008",NA,"as N","Nitrogen","Total","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923205-0307-4-C/results/953590008/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:47","STORET",7,NA,2022-03-07 19:45:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4923205-0307-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-07,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590011",NA,"as N","Nitrogen","Dissolved","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4923205-0307-4-C/results/953590011/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:47","STORET",7,NA,2022-03-07 19:45:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924590-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590018",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924590-1019-4-C/results/953590018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:48","STORET",7,NA,2021-10-19 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924590-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590021",NA,"as N","Nitrogen","Dissolved","0.427","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924590-1019-4-C/results/953590021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:48","STORET",7,NA,2021-10-19 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.427,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924590-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590044",NA,"as N","Nitrogen","Total","0.264","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924590-1116-4-C/results/953590044/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:49","STORET",7,NA,2021-11-16 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.264,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924590-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590047",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924590-1116-4-C/results/953590047/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:49","STORET",7,NA,2021-11-16 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924590-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590054",NA,"as N","Nitrogen","Total","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924590-1214-4-C/results/953590054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:49","STORET",7,NA,2021-12-14 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924590-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590057",NA,"as N","Nitrogen","Dissolved","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924590-1214-4-C/results/953590057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:49","STORET",7,NA,2021-12-14 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4924590-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590080",NA,"as N","Nitrogen","Total","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4924590-0111-4-C/results/953590080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:50","STORET",7,NA,2022-01-11 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4924590-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590083",NA,"as N","Nitrogen","Dissolved","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4924590-0111-4-C/results/953590083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:50","STORET",7,NA,2022-01-11 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4924590-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590090",NA,"as N","Nitrogen","Total","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924590-0308-4-C/results/953590090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:51","STORET",7,NA,2022-03-08 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4924590-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590093",NA,"as N","Nitrogen","Dissolved","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924590-0308-4-C/results/953590093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:51","STORET",7,NA,2022-03-08 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924650-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590100",NA,"as N","Nitrogen","Total","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924650-0208-4-C/results/953590100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:52","STORET",7,NA,2022-02-08 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924650-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590103",NA,"as N","Nitrogen","Dissolved","1.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924650-0208-4-C/results/953590103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:52","STORET",7,NA,2022-02-08 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924660-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590126",NA,"as N","Nitrogen","Total","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924660-1116-4-C/results/953590126/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:54","STORET",7,NA,2021-11-16 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924660-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590129",NA,"as N","Nitrogen","Dissolved","0.098","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924660-1116-4-C/results/953590129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:54","STORET",7,NA,2021-11-16 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.098,"MG/L","Numeric","Pass","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924660-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590136",NA,"as N","Nitrogen","Total","0.105","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924660-1214-4-C/results/953590136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:54","STORET",7,NA,2021-12-14 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.105,"MG/L","Numeric","Pass","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924660-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590139",NA,"as N","Nitrogen","Dissolved","0.922","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924660-1214-4-C/results/953590139/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:54","STORET",7,NA,2021-12-14 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.922,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4924660-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590162",NA,"as N","Nitrogen","Total","0.216","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924660-0308-4-C/results/953590162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:56","STORET",7,NA,2022-03-08 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.216,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4924660-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590165",NA,"as N","Nitrogen","Dissolved","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924660-0308-4-C/results/953590165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:56","STORET",7,NA,2022-03-08 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924670-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590172",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924670-1019-4-C/results/953590172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:56","STORET",7,NA,2021-10-19 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924670-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590175",NA,"as N","Nitrogen","Dissolved","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924670-1019-4-C/results/953590175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:56","STORET",7,NA,2021-10-19 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924670-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590198",NA,"as N","Nitrogen","Total","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924670-1116-4-C/results/953590198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:58","STORET",7,NA,2021-11-16 18:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924670-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590201",NA,"as N","Nitrogen","Dissolved","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924670-1116-4-C/results/953590201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:58","STORET",7,NA,2021-11-16 18:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924670-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590208",NA,"as N","Nitrogen","Total","0.741","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924670-1214-4-C/results/953590208/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:58","STORET",7,NA,2021-12-14 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.741,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924670-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590211",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924670-1214-4-C/results/953590211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:49:59","STORET",7,NA,2021-12-14 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924670-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590234",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924670-0208-4-C/results/953590234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:00","STORET",7,NA,2022-02-08 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924670-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590237",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924670-0208-4-C/results/953590237/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:00","STORET",7,NA,2022-02-08 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4924670-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590260",NA,"as N","Nitrogen","Total","0.766","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924670-0308-4-C/results/953590260/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:01","STORET",7,NA,2022-03-08 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.766,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4924670-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590263",NA,"as N","Nitrogen","Dissolved","0.738","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924670-0308-4-C/results/953590263/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:01","STORET",7,NA,2022-03-08 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.738,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924680-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590270",NA,"as N","Nitrogen","Total","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924680-1019-4-C/results/953590270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:02","STORET",7,NA,2021-10-19 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924680-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590273",NA,"as N","Nitrogen","Dissolved","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924680-1019-4-C/results/953590273/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:02","STORET",7,NA,2021-10-19 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924680-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590296",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924680-1116-4-C/results/953590296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:03","STORET",7,NA,2021-11-16 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924680-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590299",NA,"as N","Nitrogen","Dissolved","0.393","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924680-1116-4-C/results/953590299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:03","STORET",7,NA,2021-11-16 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.393,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924680-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590306",NA,"as N","Nitrogen","Total","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924680-1214-4-C/results/953590306/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:04","STORET",7,NA,2021-12-14 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924680-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590309",NA,"as N","Nitrogen","Dissolved","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924680-1214-4-C/results/953590309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:04","STORET",7,NA,2021-12-14 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924680-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590332",NA,"as N","Nitrogen","Total","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924680-0208-4-C/results/953590332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:05","STORET",7,NA,2022-02-08 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924680-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590335",NA,"as N","Nitrogen","Dissolved","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924680-0208-4-C/results/953590335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:05","STORET",7,NA,2022-02-08 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4924680-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590358",NA,"as N","Nitrogen","Total","0.469","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924680-0308-4-C/results/953590358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:06","STORET",7,NA,2022-03-08 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.469,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4924680-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590361",NA,"as N","Nitrogen","Dissolved","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4924680-0308-4-C/results/953590361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:07","STORET",7,NA,2022-03-08 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924690-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590368",NA,"as N","Nitrogen","Total","0.218","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924690-1019-4-C/results/953590368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:08","STORET",7,NA,2021-10-19 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.218,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924690-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590371",NA,"as N","Nitrogen","Dissolved","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924690-1019-4-C/results/953590371/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:08","STORET",7,NA,2021-10-19 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924690-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590394",NA,"as N","Nitrogen","Total","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924690-1116-4-C/results/953590394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:10","STORET",7,NA,2021-11-16 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924690-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590397",NA,"as N","Nitrogen","Dissolved","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924690-1116-4-C/results/953590397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:10","STORET",7,NA,2021-11-16 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924690-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590404",NA,"as N","Nitrogen","Total","0.172","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924690-1214-4-C/results/953590404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:10","STORET",7,NA,2021-12-14 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.172,"MG/L","Numeric","Pass","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924690-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590407",NA,"as N","Nitrogen","Dissolved","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924690-1214-4-C/results/953590407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:10","STORET",7,NA,2021-12-14 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924690-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590430",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924690-0208-4-C/results/953590430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:12","STORET",7,NA,2022-02-08 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924690-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590433",NA,"as N","Nitrogen","Dissolved","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924690-0208-4-C/results/953590433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:12","STORET",7,NA,2022-02-08 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924700-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590456",NA,"as N","Nitrogen","Total","0.173","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924700-1019-4-C/results/953590456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:14","STORET",7,NA,2021-10-19 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.173,"MG/L","Numeric","Pass","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924700-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590459",NA,"as N","Nitrogen","Dissolved","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924700-1019-4-C/results/953590459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:14","STORET",7,NA,2021-10-19 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924700-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590482",NA,"as N","Nitrogen","Total","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924700-1214-4-C/results/953590482/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:15","STORET",7,NA,2021-12-14 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924700-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590485",NA,"as N","Nitrogen","Dissolved","0.983","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924700-1214-4-C/results/953590485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:15","STORET",7,NA,2021-12-14 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.983,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924710-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590508",NA,"as N","Nitrogen","Total","0.189","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924710-1019-4-C/results/953590508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:17","STORET",7,NA,2021-10-19 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.189,"MG/L","Numeric","Pass","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924710-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590511",NA,"as N","Nitrogen","Dissolved","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924710-1019-4-C/results/953590511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:17","STORET",7,NA,2021-10-19 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924710-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590534",NA,"as N","Nitrogen","Total","0.117","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924710-1116-4-C/results/953590534/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:18","STORET",7,NA,2021-11-16 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.117,"MG/L","Numeric","Pass","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924710-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590537",NA,"as N","Nitrogen","Dissolved","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924710-1116-4-C/results/953590537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:18","STORET",7,NA,2021-11-16 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924710-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590544",NA,"as N","Nitrogen","Total","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924710-1214-4-C/results/953590544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:19","STORET",7,NA,2021-12-14 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924710-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590547",NA,"as N","Nitrogen","Dissolved","0.112","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924710-1214-4-C/results/953590547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:19","STORET",7,NA,2021-12-14 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.112,"MG/L","Numeric","Pass","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924710-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590570",NA,"as N","Nitrogen","Total","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924710-0208-4-C/results/953590570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:21","STORET",7,NA,2022-02-08 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4924710-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590573",NA,"as N","Nitrogen","Dissolved","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4924710-0208-4-C/results/953590573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:21","STORET",7,NA,2022-02-08 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924960-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590596",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924960-1019-4-C/results/953590596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:23","STORET",7,NA,2021-10-19 21:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924960-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590599",NA,"as N","Nitrogen","Dissolved","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924960-1019-4-C/results/953590599/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:23","STORET",7,NA,2021-10-19 21:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924960-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590622",NA,"as N","Nitrogen","Total","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924960-1116-4-C/results/953590622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:25","STORET",7,NA,2021-11-16 21:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924960-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590625",NA,"as N","Nitrogen","Dissolved","0.155","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924960-1116-4-C/results/953590625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:25","STORET",7,NA,2021-11-16 21:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.155,"MG/L","Numeric","Pass","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924960-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590632",NA,"as N","Nitrogen","Total","0.151","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924960-1214-4-C/results/953590632/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:25","STORET",7,NA,2021-12-14 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.151,"MG/L","Numeric","Pass","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924960-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590635",NA,"as N","Nitrogen","Dissolved","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924960-1214-4-C/results/953590635/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:25","STORET",7,NA,2021-12-14 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924961-1019-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-19,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590658",NA,"as N","Nitrogen","Total","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924961-1019-4-C/results/953590658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:26","STORET",7,NA,2021-10-19 21:50:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4924961-1019-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-19,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590661",NA,"as N","Nitrogen","Dissolved","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4924961-1019-4-C/results/953590661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:26","STORET",7,NA,2021-10-19 21:50:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924961-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590684",NA,"as N","Nitrogen","Total","0.125","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924961-1116-4-C/results/953590684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:28","STORET",7,NA,2021-11-16 21:20:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.125,"MG/L","Numeric","Pass","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4924961-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590687",NA,"as N","Nitrogen","Dissolved","0.149","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4924961-1116-4-C/results/953590687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:28","STORET",7,NA,2021-11-16 21:20:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.149,"MG/L","Numeric","Pass","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924961-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590694",NA,"as N","Nitrogen","Total","0.141","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924961-1214-4-C/results/953590694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:29","STORET",7,NA,2021-12-14 20:50:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.141,"MG/L","Numeric","Pass","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4924961-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590697",NA,"as N","Nitrogen","Dissolved","0.115","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4924961-1214-4-C/results/953590697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:29","STORET",7,NA,2021-12-14 20:50:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.115,"MG/L","Numeric","Pass","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925039-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590720",NA,"as N","Nitrogen","Total","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925039-1020-4-C/results/953590720/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:30","STORET",7,NA,2021-10-20 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925039-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590723",NA,"as N","Nitrogen","Dissolved","0.195","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925039-1020-4-C/results/953590723/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:30","STORET",7,NA,2021-10-20 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Pass","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925039-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590746",NA,"as N","Nitrogen","Total","0.091","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925039-1117-4-C/results/953590746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:31","STORET",7,NA,2021-11-17 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.091,"MG/L","Numeric","Pass","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925039-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590749",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925039-1117-4-C/results/953590749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:31","STORET",7,NA,2021-11-17 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925039-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590756",NA,"as N","Nitrogen","Total","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925039-0111-4-C/results/953590756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:32","STORET",7,NA,2022-01-11 20:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925039-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590759",NA,"as N","Nitrogen","Dissolved","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925039-0111-4-C/results/953590759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:32","STORET",7,NA,2022-01-11 20:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925039-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590766","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925039-0309-4-C/results/953590766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:32","STORET",7,NA,2022-03-09 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925039-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590769","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925039-0309-4-C/results/953590769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:32","STORET",7,NA,2022-03-09 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925150-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590776",NA,"as N","Nitrogen","Total","0.572","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925150-1020-4-C/results/953590776/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:33","STORET",7,NA,2021-10-20 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.572,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925150-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590779",NA,"as N","Nitrogen","Dissolved","0.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925150-1020-4-C/results/953590779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:33","STORET",7,NA,2021-10-20 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925150-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590802",NA,"as N","Nitrogen","Total","0.604","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925150-1117-4-C/results/953590802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:34","STORET",7,NA,2021-11-17 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.604,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925150-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590805",NA,"as N","Nitrogen","Dissolved","0.664","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925150-1117-4-C/results/953590805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:34","STORET",7,NA,2021-11-17 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.664,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925195-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590812",NA,"as N","Nitrogen","Total","0.999","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925195-1020-4-C/results/953590812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:35","STORET",7,NA,2021-10-20 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.999,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925195-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590815",NA,"as N","Nitrogen","Dissolved","0.962","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925195-1020-4-C/results/953590815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:35","STORET",7,NA,2021-10-20 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.962,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925195-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590838",NA,"as N","Nitrogen","Total","0.796","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925195-1117-4-C/results/953590838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:36","STORET",7,NA,2021-11-17 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.796,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925195-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590841",NA,"as N","Nitrogen","Dissolved","0.792","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925195-1117-4-C/results/953590841/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:37","STORET",7,NA,2021-11-17 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.792,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925195-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590848",NA,"as N","Nitrogen","Total","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925195-1221-4-C/results/953590848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:37","STORET",7,NA,2021-12-21 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925195-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590851",NA,"as N","Nitrogen","Dissolved","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925195-1221-4-C/results/953590851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:37","STORET",7,NA,2021-12-21 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925195-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590874",NA,"as N","Nitrogen","Total","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925195-0111-4-C/results/953590874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:39","STORET",7,NA,2022-01-11 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925195-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590877",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925195-0111-4-C/results/953590877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:39","STORET",7,NA,2022-01-11 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925195-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590884",NA,"as N","Nitrogen","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925195-0209-4-C/results/953590884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:40","STORET",7,NA,2022-02-09 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925195-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590887",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925195-0209-4-C/results/953590887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:40","STORET",7,NA,2022-02-09 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925195-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590910",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925195-0309-4-C/results/953590910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:41","STORET",7,NA,2022-03-09 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925195-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590913",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925195-0309-4-C/results/953590913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:41","STORET",7,NA,2022-03-09 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925218-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590920",NA,"as N","Nitrogen","Total","0.842","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925218-1026-4-C/results/953590920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:42","STORET",7,NA,2021-10-26 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.842,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925218-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590923",NA,"as N","Nitrogen","Dissolved","0.898","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925218-1026-4-C/results/953590923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:42","STORET",7,NA,2021-10-26 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.898,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925218-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590946",NA,"as N","Nitrogen","Total","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925218-1115-4-C/results/953590946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:43","STORET",7,NA,2021-11-15 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925218-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590949",NA,"as N","Nitrogen","Dissolved","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925218-1115-4-C/results/953590949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:43","STORET",7,NA,2021-11-15 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925218-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590956",NA,"as N","Nitrogen","Total","2.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925218-1213-4-C/results/953590956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:44","STORET",7,NA,2021-12-13 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925218-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590959",NA,"as N","Nitrogen","Dissolved","2.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925218-1213-4-C/results/953590959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:44","STORET",7,NA,2021-12-13 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.85,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925218-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590982",NA,"as N","Nitrogen","Total","2.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925218-0207-4-C/results/953590982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:45","STORET",7,NA,2022-02-07 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925218-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953590985",NA,"as N","Nitrogen","Dissolved","2.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925218-0207-4-C/results/953590985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:45","STORET",7,NA,2022-02-07 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925230-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591008",NA,"as N","Nitrogen","Total","0.989","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925230-1026-4-C/results/953591008/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:46","STORET",7,NA,2021-10-26 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.989,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925230-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591011",NA,"as N","Nitrogen","Dissolved","0.977","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925230-1026-4-C/results/953591011/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:46","STORET",7,NA,2021-10-26 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.977,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925230-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591034",NA,"as N","Nitrogen","Total","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925230-1115-4-C/results/953591034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:47","STORET",7,NA,2021-11-15 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925230-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591037",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925230-1115-4-C/results/953591037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:47","STORET",7,NA,2021-11-15 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925230-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591044",NA,"as N","Nitrogen","Total","2.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925230-1213-4-C/results/953591044/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:47","STORET",7,NA,2021-12-13 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925230-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591047",NA,"as N","Nitrogen","Dissolved","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925230-1213-4-C/results/953591047/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:47","STORET",7,NA,2021-12-13 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925230-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591070",NA,"as N","Nitrogen","Total","1.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925230-0110-4-C/results/953591070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:48","STORET",7,NA,2022-01-10 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925230-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591073",NA,"as N","Nitrogen","Dissolved","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925230-0110-4-C/results/953591073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:48","STORET",7,NA,2022-01-10 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925230-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591080",NA,"as N","Nitrogen","Total","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925230-0207-4-C/results/953591080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:48","STORET",7,NA,2022-02-07 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925230-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591083",NA,"as N","Nitrogen","Dissolved","2.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925230-0207-4-C/results/953591083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:48","STORET",7,NA,2022-02-07 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925230-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591106",NA,"as N","Nitrogen","Total","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925230-0307-4-C/results/953591106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:48","STORET",7,NA,2022-03-07 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925230-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591109",NA,"as N","Nitrogen","Dissolved","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925230-0307-4-C/results/953591109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:48","STORET",7,NA,2022-03-07 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925231-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-26,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591116",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925231-1026-4-C/results/953591116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:48","STORET",7,NA,2021-10-26 16:30:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925231-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-26,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591119",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925231-1026-4-C/results/953591119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:48","STORET",7,NA,2021-10-26 16:30:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925231-1115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591142",NA,"as N","Nitrogen","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925231-1115-4-C/results/953591142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:49","STORET",7,NA,2021-11-15 16:35:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925231-1115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591145",NA,"as N","Nitrogen","Dissolved","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925231-1115-4-C/results/953591145/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:49","STORET",7,NA,2021-11-15 16:35:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925231-1213-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-13,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591152",NA,"as N","Nitrogen","Total","2.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925231-1213-4-C/results/953591152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:49","STORET",7,NA,2021-12-13 16:50:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.76,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925231-1213-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-13,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591155",NA,"as N","Nitrogen","Dissolved","2.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925231-1213-4-C/results/953591155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:49","STORET",7,NA,2021-12-13 16:50:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925231-0110-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-10,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591178",NA,"as N","Nitrogen","Total","1.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925231-0110-4-C/results/953591178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:50","STORET",7,NA,2022-01-10 16:45:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.94,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925231-0110-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-10,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591181",NA,"as N","Nitrogen","Dissolved","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925231-0110-4-C/results/953591181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:50","STORET",7,NA,2022-01-10 16:45:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925231-0207-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-07,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591188",NA,"as N","Nitrogen","Total","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925231-0207-4-C/results/953591188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:50","STORET",7,NA,2022-02-07 16:45:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925231-0207-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-07,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591191",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925231-0207-4-C/results/953591191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:50","STORET",7,NA,2022-02-07 16:45:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925231-0307-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-07,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591214",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925231-0307-4-C/results/953591214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:51","STORET",7,NA,2022-03-07 16:10:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925231-0307-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-07,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591217",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925231-0307-4-C/results/953591217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:51","STORET",7,NA,2022-03-07 16:10:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925240-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591225",NA,"as N","Nitrogen","Total","0.824","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925240-1026-4-C/results/953591225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:52","STORET",7,NA,2021-10-26 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.824,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925240-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591228",NA,"as N","Nitrogen","Dissolved","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925240-1026-4-C/results/953591228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:52","STORET",7,NA,2021-10-26 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925240-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591268",NA,"as N","Nitrogen","Total","0.837","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925240-1115-4-C/results/953591268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:53","STORET",7,NA,2021-11-15 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.837,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925240-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591271",NA,"as N","Nitrogen","Dissolved","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925240-1115-4-C/results/953591271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:53","STORET",7,NA,2021-11-15 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925240-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591311",NA,"as N","Nitrogen","Total","2.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925240-1213-4-C/results/953591311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:54","STORET",7,NA,2021-12-13 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925240-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591314",NA,"as N","Nitrogen","Dissolved","2.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925240-1213-4-C/results/953591314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:54","STORET",7,NA,2021-12-13 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925240-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591354",NA,"as N","Nitrogen","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925240-0110-4-C/results/953591354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:55","STORET",7,NA,2022-01-10 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925240-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591357",NA,"as N","Nitrogen","Dissolved","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925240-0110-4-C/results/953591357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:55","STORET",7,NA,2022-01-10 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925240-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591397",NA,"as N","Nitrogen","Total","2.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925240-0207-4-C/results/953591397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:56","STORET",7,NA,2022-02-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925240-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591400",NA,"as N","Nitrogen","Dissolved","2.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925240-0207-4-C/results/953591400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:56","STORET",7,NA,2022-02-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925240-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591439",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925240-0307-4-C/results/953591439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:57","STORET",7,NA,2022-03-07 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925240-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591442",NA,"as N","Nitrogen","Dissolved","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925240-0307-4-C/results/953591442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:57","STORET",7,NA,2022-03-07 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925250-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591482",NA,"as N","Nitrogen","Total","6.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925250-1026-4-C/results/953591482/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:58","STORET",7,NA,2021-10-26 17:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925250-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591485",NA,"as N","Nitrogen","Dissolved","6.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925250-1026-4-C/results/953591485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:50:58","STORET",7,NA,2021-10-26 17:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925250-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591526",NA,"as N","Nitrogen","Total","6.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925250-1115-4-C/results/953591526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:00","STORET",7,NA,2021-11-15 16:55:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925250-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591529",NA,"as N","Nitrogen","Dissolved","6.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925250-1115-4-C/results/953591529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:00","STORET",7,NA,2021-11-15 16:55:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925250-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591569",NA,"as N","Nitrogen","Total","7.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925250-1213-4-C/results/953591569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:01","STORET",7,NA,2021-12-13 17:20:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925250-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591572",NA,"as N","Nitrogen","Dissolved","7.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925250-1213-4-C/results/953591572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:01","STORET",7,NA,2021-12-13 17:20:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925250-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591612",NA,"as N","Nitrogen","Total","4.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925250-0110-4-C/results/953591612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:02","STORET",7,NA,2022-01-10 17:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925250-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591615",NA,"as N","Nitrogen","Dissolved","4.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925250-0110-4-C/results/953591615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:03","STORET",7,NA,2022-01-10 17:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925250-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591655",NA,"as N","Nitrogen","Total","7.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925250-0207-4-C/results/953591655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:04","STORET",7,NA,2022-02-07 17:20:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925250-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591658",NA,"as N","Nitrogen","Dissolved","7.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925250-0207-4-C/results/953591658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:04","STORET",7,NA,2022-02-07 17:20:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925250-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591698",NA,"as N","Nitrogen","Total","4.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925250-0307-4-C/results/953591698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:05","STORET",7,NA,2022-03-07 16:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925250-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591701",NA,"as N","Nitrogen","Dissolved","4.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925250-0307-4-C/results/953591701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:05","STORET",7,NA,2022-03-07 16:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925260-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591741",NA,"as N","Nitrogen","Total","0.626","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925260-1026-4-C/results/953591741/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:07","STORET",7,NA,2021-10-26 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.626,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925260-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591744",NA,"as N","Nitrogen","Dissolved","0.628","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925260-1026-4-C/results/953591744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:07","STORET",7,NA,2021-10-26 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.628,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925260-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591784",NA,"as N","Nitrogen","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925260-1115-4-C/results/953591784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:08","STORET",7,NA,2021-11-15 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925260-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591787",NA,"as N","Nitrogen","Dissolved","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925260-1115-4-C/results/953591787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:08","STORET",7,NA,2021-11-15 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925260-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591827",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925260-1213-4-C/results/953591827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:10","STORET",7,NA,2021-12-13 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925260-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591830",NA,"as N","Nitrogen","Dissolved","0.733","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925260-1213-4-C/results/953591830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:11","STORET",7,NA,2021-12-13 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.733,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925260-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591870",NA,"as N","Nitrogen","Total","0.786","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925260-0110-4-C/results/953591870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:13","STORET",7,NA,2022-01-10 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.786,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925260-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591873",NA,"as N","Nitrogen","Dissolved","0.878","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925260-0110-4-C/results/953591873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:13","STORET",7,NA,2022-01-10 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.878,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925260-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591913",NA,"as N","Nitrogen","Total","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925260-0207-4-C/results/953591913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:15","STORET",7,NA,2022-02-07 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925260-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591916",NA,"as N","Nitrogen","Dissolved","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925260-0207-4-C/results/953591916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:15","STORET",7,NA,2022-02-07 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925260-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591956",NA,"as N","Nitrogen","Total","0.911","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925260-0307-4-C/results/953591956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:16","STORET",7,NA,2022-03-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.911,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925260-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591959",NA,"as N","Nitrogen","Dissolved","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925260-0307-4-C/results/953591959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:16","STORET",7,NA,2022-03-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925320-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953591998",NA,"as N","Nitrogen","Total","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925320-1026-4-C/results/953591998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:18","STORET",7,NA,2021-10-26 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925320-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592001",NA,"as N","Nitrogen","Dissolved","0.613","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925320-1026-4-C/results/953592001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:18","STORET",7,NA,2021-10-26 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.613,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925320-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592024",NA,"as N","Nitrogen","Total","0.658","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925320-1115-4-C/results/953592024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:19","STORET",7,NA,2021-11-15 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.658,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925320-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592027",NA,"as N","Nitrogen","Dissolved","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925320-1115-4-C/results/953592027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:19","STORET",7,NA,2021-11-15 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925320-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592034",NA,"as N","Nitrogen","Total","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925320-1213-4-C/results/953592034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:19","STORET",7,NA,2021-12-13 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925320-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592037",NA,"as N","Nitrogen","Dissolved","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925320-1213-4-C/results/953592037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:20","STORET",7,NA,2021-12-13 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925320-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592060",NA,"as N","Nitrogen","Total","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925320-0110-4-C/results/953592060/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:20","STORET",7,NA,2022-01-10 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925320-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592063",NA,"as N","Nitrogen","Dissolved","0.711","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925320-0110-4-C/results/953592063/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:20","STORET",7,NA,2022-01-10 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.711,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925320-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592070",NA,"as N","Nitrogen","Total","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925320-0207-4-C/results/953592070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:20","STORET",7,NA,2022-02-07 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925320-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592073",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925320-0207-4-C/results/953592073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:21","STORET",7,NA,2022-02-07 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925320-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592096",NA,"as N","Nitrogen","Total","0.628","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925320-0307-4-C/results/953592096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:21","STORET",7,NA,2022-03-07 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.628,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925320-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592099",NA,"as N","Nitrogen","Dissolved","0.645","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925320-0307-4-C/results/953592099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:21","STORET",7,NA,2022-03-07 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.645,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925330-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592106",NA,"as N","Nitrogen","Total","0.135","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925330-1026-4-C/results/953592106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:22","STORET",7,NA,2021-10-26 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.135,"MG/L","Numeric","Pass","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925330-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592109",NA,"as N","Nitrogen","Dissolved","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925330-1026-4-C/results/953592109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:22","STORET",7,NA,2021-10-26 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925330-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592132",NA,"as N","Nitrogen","Total","0.087","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925330-1115-4-C/results/953592132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:23","STORET",7,NA,2021-11-15 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.087,"MG/L","Numeric","Pass","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925330-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592135",NA,"as N","Nitrogen","Dissolved","0.125","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925330-1115-4-C/results/953592135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:23","STORET",7,NA,2021-11-15 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.125,"MG/L","Numeric","Pass","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925330-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592142",NA,"as N","Nitrogen","Total","0.141","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925330-1213-4-C/results/953592142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:24","STORET",7,NA,2021-12-13 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.141,"MG/L","Numeric","Pass","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925330-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592145",NA,"as N","Nitrogen","Dissolved","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925330-1213-4-C/results/953592145/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:24","STORET",7,NA,2021-12-13 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925330-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592168",NA,"as N","Nitrogen","Total","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925330-0307-4-C/results/953592168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:25","STORET",7,NA,2022-03-07 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925330-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592171",NA,"as N","Nitrogen","Dissolved","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925330-0307-4-C/results/953592171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:25","STORET",7,NA,2022-03-07 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925350-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592178",NA,"as N","Nitrogen","Total","0.657","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925350-1026-4-C/results/953592178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:25","STORET",7,NA,2021-10-26 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.657,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925350-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592181",NA,"as N","Nitrogen","Dissolved","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925350-1026-4-C/results/953592181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:25","STORET",7,NA,2021-10-26 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925350-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592204",NA,"as N","Nitrogen","Total","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925350-1115-4-C/results/953592204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:26","STORET",7,NA,2021-11-15 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925350-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592207",NA,"as N","Nitrogen","Dissolved","0.913","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925350-1115-4-C/results/953592207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:26","STORET",7,NA,2021-11-15 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.913,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925350-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592214",NA,"as N","Nitrogen","Total","0.627","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925350-1213-4-C/results/953592214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:26","STORET",7,NA,2021-12-13 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.627,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925350-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592217",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925350-1213-4-C/results/953592217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:27","STORET",7,NA,2021-12-13 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925350-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592240",NA,"as N","Nitrogen","Total","0.855","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925350-0110-4-C/results/953592240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:28","STORET",7,NA,2022-01-10 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.855,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925350-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592243",NA,"as N","Nitrogen","Dissolved","0.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925350-0110-4-C/results/953592243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:28","STORET",7,NA,2022-01-10 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925350-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592250",NA,"as N","Nitrogen","Total","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925350-0207-4-C/results/953592250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:28","STORET",7,NA,2022-02-07 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925350-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592253",NA,"as N","Nitrogen","Dissolved","0.565","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925350-0207-4-C/results/953592253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:28","STORET",7,NA,2022-02-07 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.565,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925350-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592276",NA,"as N","Nitrogen","Total","0.795","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925350-0307-4-C/results/953592276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:29","STORET",7,NA,2022-03-07 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.795,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925350-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592279",NA,"as N","Nitrogen","Dissolved","0.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925350-0307-4-C/results/953592279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:29","STORET",7,NA,2022-03-07 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925360-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592286",NA,"as N","Nitrogen","Total","0.453","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925360-1026-4-C/results/953592286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:30","STORET",7,NA,2021-10-26 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.453,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925360-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592289",NA,"as N","Nitrogen","Dissolved","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925360-1026-4-C/results/953592289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:30","STORET",7,NA,2021-10-26 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925360-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592312",NA,"as N","Nitrogen","Total","0.205","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925360-1115-4-C/results/953592312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:31","STORET",7,NA,2021-11-15 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.205,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925360-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592315",NA,"as N","Nitrogen","Dissolved","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925360-1115-4-C/results/953592315/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:31","STORET",7,NA,2021-11-15 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925360-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592322",NA,"as N","Nitrogen","Total","0.645","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925360-1213-4-C/results/953592322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:31","STORET",7,NA,2021-12-13 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.645,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925360-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592325",NA,"as N","Nitrogen","Dissolved","0.813","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925360-1213-4-C/results/953592325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:32","STORET",7,NA,2021-12-13 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.813,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925360-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592348",NA,"as N","Nitrogen","Total","0.613","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925360-0110-4-C/results/953592348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:33","STORET",7,NA,2022-01-10 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.613,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925360-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592351",NA,"as N","Nitrogen","Dissolved","0.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925360-0110-4-C/results/953592351/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:33","STORET",7,NA,2022-01-10 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925360-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592358",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925360-0207-4-C/results/953592358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:33","STORET",7,NA,2022-02-07 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925360-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592361",NA,"as N","Nitrogen","Dissolved","0.453","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925360-0207-4-C/results/953592361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:34","STORET",7,NA,2022-02-07 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.453,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925360-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592384",NA,"as N","Nitrogen","Total","0.432","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925360-0307-4-C/results/953592384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:35","STORET",7,NA,2022-03-07 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.432,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925360-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592387",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925360-0307-4-C/results/953592387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:35","STORET",7,NA,2022-03-07 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925440-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592394",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925440-1026-4-C/results/953592394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:35","STORET",7,NA,2021-10-26 20:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925440-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592397",NA,"as N","Nitrogen","Dissolved","0.391","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925440-1026-4-C/results/953592397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:35","STORET",7,NA,2021-10-26 20:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.391,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925440-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592420",NA,"as N","Nitrogen","Total","0.145","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925440-1115-4-C/results/953592420/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:36","STORET",7,NA,2021-11-15 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.145,"MG/L","Numeric","Pass","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925440-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592423",NA,"as N","Nitrogen","Dissolved","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925440-1115-4-C/results/953592423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:36","STORET",7,NA,2021-11-15 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925440-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592431",NA,"as N","Nitrogen","Total","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925440-1213-4-C/results/953592431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:37","STORET",7,NA,2021-12-13 19:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925440-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592434",NA,"as N","Nitrogen","Dissolved","0.405","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925440-1213-4-C/results/953592434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:37","STORET",7,NA,2021-12-13 19:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.405,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925440-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592457",NA,"as N","Nitrogen","Total","0.206","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925440-0207-4-C/results/953592457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:37","STORET",7,NA,2022-02-07 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.206,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925440-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592460",NA,"as N","Nitrogen","Dissolved","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925440-0207-4-C/results/953592460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:38","STORET",7,NA,2022-02-07 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925440-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592483",NA,"as N","Nitrogen","Total","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925440-0307-4-C/results/953592483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:38","STORET",7,NA,2022-03-07 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925440-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592486",NA,"as N","Nitrogen","Dissolved","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925440-0307-4-C/results/953592486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:39","STORET",7,NA,2022-03-07 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925517-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592494",NA,"as N","Nitrogen","Total","0.683","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925517-1019-4-C/results/953592494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:39","STORET",7,NA,2021-10-19 20:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.683,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925517-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592497",NA,"as N","Nitrogen","Dissolved","0.769","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925517-1019-4-C/results/953592497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:39","STORET",7,NA,2021-10-19 20:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.769,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925517-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592520",NA,"as N","Nitrogen","Total","0.151","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925517-1116-4-C/results/953592520/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:40","STORET",7,NA,2021-11-16 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.151,"MG/L","Numeric","Pass","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925517-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592523",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925517-1116-4-C/results/953592523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:40","STORET",7,NA,2021-11-16 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925517-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592530",NA,"as N","Nitrogen","Total","0.133","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925517-1214-4-C/results/953592530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:41","STORET",7,NA,2021-12-14 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.133,"MG/L","Numeric","Pass","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925517-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592533",NA,"as N","Nitrogen","Dissolved","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925517-1214-4-C/results/953592533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:41","STORET",7,NA,2021-12-14 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925517-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592556",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925517-0111-4-C/results/953592556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:42","STORET",7,NA,2022-01-11 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925517-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592559",NA,"as N","Nitrogen","Dissolved","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925517-0111-4-C/results/953592559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:42","STORET",7,NA,2022-01-11 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925517-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592566",NA,"as N","Nitrogen","Total","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925517-0308-4-C/results/953592566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:42","STORET",7,NA,2022-03-08 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925517-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592569",NA,"as N","Nitrogen","Dissolved","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925517-0308-4-C/results/953592569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:42","STORET",7,NA,2022-03-08 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925520-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592577",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925520-1019-4-C/results/953592577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:43","STORET",7,NA,2021-10-19 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925520-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592580",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925520-1019-4-C/results/953592580/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:43","STORET",7,NA,2021-10-19 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925520-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592603",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925520-1116-4-C/results/953592603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:44","STORET",7,NA,2021-11-16 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925520-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592606",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925520-1116-4-C/results/953592606/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:44","STORET",7,NA,2021-11-16 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925520-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592614",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925520-1214-4-C/results/953592614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:44","STORET",7,NA,2021-12-14 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925520-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592617",NA,"as N","Nitrogen","Dissolved","1.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925520-1214-4-C/results/953592617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:45","STORET",7,NA,2021-12-14 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925520-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592640",NA,"as N","Nitrogen","Total","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925520-0111-4-C/results/953592640/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:45","STORET",7,NA,2022-01-11 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925520-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592643",NA,"as N","Nitrogen","Dissolved","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925520-0111-4-C/results/953592643/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:46","STORET",7,NA,2022-01-11 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925520-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592651",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925520-0208-4-C/results/953592651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:46","STORET",7,NA,2022-02-08 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925520-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592654",NA,"as N","Nitrogen","Dissolved","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925520-0208-4-C/results/953592654/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:46","STORET",7,NA,2022-02-08 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925520-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592677",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925520-0308-4-C/results/953592677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:47","STORET",7,NA,2022-03-08 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925520-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592680",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925520-0308-4-C/results/953592680/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:47","STORET",7,NA,2022-03-08 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925530-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592688",NA,"as N","Nitrogen","Total","17.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925530-1019-4-C/results/953592688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:48","STORET",7,NA,2021-10-19 21:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925530-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592691",NA,"as N","Nitrogen","Dissolved","16.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925530-1019-4-C/results/953592691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:48","STORET",7,NA,2021-10-19 21:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925530-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592715",NA,"as N","Nitrogen","Total","22.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925530-1116-4-C/results/953592715/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:49","STORET",7,NA,2021-11-16 20:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925530-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592718",NA,"as N","Nitrogen","Dissolved","21.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925530-1116-4-C/results/953592718/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:49","STORET",7,NA,2021-11-16 20:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925530-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592726",NA,"as N","Nitrogen","Total","26.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925530-1214-4-C/results/953592726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:49","STORET",7,NA,2021-12-14 20:05:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",26.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925530-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592729",NA,"as N","Nitrogen","Dissolved","24.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925530-1214-4-C/results/953592729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:49","STORET",7,NA,2021-12-14 20:05:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",24.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925530-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592753",NA,"as N","Nitrogen","Total","30.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925530-0111-4-C/results/953592753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:50","STORET",7,NA,2022-01-11 19:15:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",30.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925530-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592756",NA,"as N","Nitrogen","Dissolved","29.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925530-0111-4-C/results/953592756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:50","STORET",7,NA,2022-01-11 19:15:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",29.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925530-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592764",NA,"as N","Nitrogen","Total","37.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925530-0208-4-C/results/953592764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:51","STORET",7,NA,2022-02-08 20:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",37.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925530-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592767",NA,"as N","Nitrogen","Dissolved","33.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925530-0208-4-C/results/953592767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:51","STORET",7,NA,2022-02-08 20:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",33.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925532-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592790",NA,"as N","Nitrogen","Total","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925532-1020-4-C/results/953592790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:52","STORET",7,NA,2021-10-20 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925532-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592793",NA,"as N","Nitrogen","Dissolved","0.675","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925532-1020-4-C/results/953592793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:52","STORET",7,NA,2021-10-20 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.675,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925532-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592816",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925532-1117-4-C/results/953592816/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:53","STORET",7,NA,2021-11-17 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925532-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592819",NA,"as N","Nitrogen","Dissolved","0.711","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925532-1117-4-C/results/953592819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:53","STORET",7,NA,2021-11-17 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.711,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925532-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592826",NA,"as N","Nitrogen","Total","0.12","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925532-1214-4-C/results/953592826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:53","STORET",7,NA,2021-12-14 21:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.12,"MG/L","Numeric","Pass","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925532-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592829",NA,"as N","Nitrogen","Dissolved","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925532-1214-4-C/results/953592829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:53","STORET",7,NA,2021-12-14 21:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925532-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592852",NA,"as N","Nitrogen","Total","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925532-0111-4-C/results/953592852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:54","STORET",7,NA,2022-01-11 19:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925532-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592855",NA,"as N","Nitrogen","Dissolved","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925532-0111-4-C/results/953592855/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:54","STORET",7,NA,2022-01-11 19:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925532-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592862",NA,"as N","Nitrogen","Total","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925532-0209-4-C/results/953592862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:55","STORET",7,NA,2022-02-09 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925532-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592865",NA,"as N","Nitrogen","Dissolved","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925532-0209-4-C/results/953592865/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:55","STORET",7,NA,2022-02-09 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925532-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592888",NA,"as N","Nitrogen","Total","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925532-0309-4-C/results/953592888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:56","STORET",7,NA,2022-03-09 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925532-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592891",NA,"as N","Nitrogen","Dissolved","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925532-0309-4-C/results/953592891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:56","STORET",7,NA,2022-03-09 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925540-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592899",NA,"as N","Nitrogen","Total","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925540-1019-4-C/results/953592899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:56","STORET",7,NA,2021-10-19 21:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925540-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592902",NA,"as N","Nitrogen","Dissolved","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925540-1019-4-C/results/953592902/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:56","STORET",7,NA,2021-10-19 21:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925540-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592926",NA,"as N","Nitrogen","Total","0.433","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925540-1116-4-C/results/953592926/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:57","STORET",7,NA,2021-11-16 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.433,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925540-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592929",NA,"as N","Nitrogen","Dissolved","0.604","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925540-1116-4-C/results/953592929/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:57","STORET",7,NA,2021-11-16 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.604,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925540-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592937",NA,"as N","Nitrogen","Total","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925540-1214-4-C/results/953592937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:57","STORET",7,NA,2021-12-14 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925540-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592940",NA,"as N","Nitrogen","Dissolved","0.487","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925540-1214-4-C/results/953592940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:57","STORET",7,NA,2021-12-14 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.487,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925540-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592964",NA,"as N","Nitrogen","Total","0.808","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925540-0111-4-C/results/953592964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:58","STORET",7,NA,2022-01-11 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.808,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925540-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592967",NA,"as N","Nitrogen","Dissolved","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925540-0111-4-C/results/953592967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:58","STORET",7,NA,2022-01-11 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925540-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592975",NA,"as N","Nitrogen","Total","0.754","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925540-0208-4-C/results/953592975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:58","STORET",7,NA,2022-02-08 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.754,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925540-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953592978",NA,"as N","Nitrogen","Dissolved","0.819","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925540-0208-4-C/results/953592978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:51:59","STORET",7,NA,2022-02-08 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.819,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925540-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593002",NA,"as N","Nitrogen","Total","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925540-0309-4-C/results/953593002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:00","STORET",7,NA,2022-03-09 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925540-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593005",NA,"as N","Nitrogen","Dissolved","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925540-0309-4-C/results/953593005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:00","STORET",7,NA,2022-03-09 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925610-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593012",NA,"as N","Nitrogen","Total","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925610-1026-4-C/results/953593012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:00","STORET",7,NA,2021-10-26 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925610-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593015",NA,"as N","Nitrogen","Dissolved","0.905","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925610-1026-4-C/results/953593015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:00","STORET",7,NA,2021-10-26 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.905,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925610-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593038",NA,"as N","Nitrogen","Total","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925610-1115-4-C/results/953593038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:01","STORET",7,NA,2021-11-15 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925610-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593041",NA,"as N","Nitrogen","Dissolved","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925610-1115-4-C/results/953593041/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:01","STORET",7,NA,2021-11-15 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925610-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593048",NA,"as N","Nitrogen","Total","0.874","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925610-1213-4-C/results/953593048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:02","STORET",7,NA,2021-12-13 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.874,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925610-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593051",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925610-1213-4-C/results/953593051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:02","STORET",7,NA,2021-12-13 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925610-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593074",NA,"as N","Nitrogen","Total","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925610-0207-4-C/results/953593074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:03","STORET",7,NA,2022-02-07 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925610-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593077",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925610-0207-4-C/results/953593077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:03","STORET",7,NA,2022-02-07 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925610-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593100",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925610-0307-4-C/results/953593100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:04","STORET",7,NA,2022-03-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925610-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593103",NA,"as N","Nitrogen","Dissolved","0.879","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925610-0307-4-C/results/953593103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:04","STORET",7,NA,2022-03-07 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.879,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925630-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593110",NA,"as N","Nitrogen","Total","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925630-1026-4-C/results/953593110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:05","STORET",7,NA,2021-10-26 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925630-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593113",NA,"as N","Nitrogen","Dissolved","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925630-1026-4-C/results/953593113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:05","STORET",7,NA,2021-10-26 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925630-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593136",NA,"as N","Nitrogen","Total","0.165","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925630-1115-4-C/results/953593136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:06","STORET",7,NA,2021-11-15 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.165,"MG/L","Numeric","Pass","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925630-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593139",NA,"as N","Nitrogen","Dissolved","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925630-1115-4-C/results/953593139/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:06","STORET",7,NA,2021-11-15 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925630-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593146",NA,"as N","Nitrogen","Total","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925630-0307-4-C/results/953593146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:06","STORET",7,NA,2022-03-07 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925630-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593149",NA,"as N","Nitrogen","Dissolved","0.841","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925630-0307-4-C/results/953593149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:06","STORET",7,NA,2022-03-07 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.841,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925650-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593156",NA,"as N","Nitrogen","Total","0.585","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925650-1026-4-C/results/953593156/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:07","STORET",7,NA,2021-10-26 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.585,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925650-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593159",NA,"as N","Nitrogen","Dissolved","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925650-1026-4-C/results/953593159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:07","STORET",7,NA,2021-10-26 19:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925650-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593182",NA,"as N","Nitrogen","Total","0.722","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925650-1115-4-C/results/953593182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:08","STORET",7,NA,2021-11-15 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.722,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925650-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593185",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925650-1115-4-C/results/953593185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:08","STORET",7,NA,2021-11-15 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925650-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593192",NA,"as N","Nitrogen","Total","0.658","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925650-1213-4-C/results/953593192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:09","STORET",7,NA,2021-12-13 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.658,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925650-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593195",NA,"as N","Nitrogen","Dissolved","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925650-1213-4-C/results/953593195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:09","STORET",7,NA,2021-12-13 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925650-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593218",NA,"as N","Nitrogen","Total","0.791","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925650-0110-4-C/results/953593218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:10","STORET",7,NA,2022-01-10 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.791,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925650-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593221",NA,"as N","Nitrogen","Dissolved","0.911","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925650-0110-4-C/results/953593221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:10","STORET",7,NA,2022-01-10 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.911,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925650-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593228",NA,"as N","Nitrogen","Total","0.742","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925650-0207-4-C/results/953593228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:10","STORET",7,NA,2022-02-07 19:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.742,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925650-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593231",NA,"as N","Nitrogen","Dissolved","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925650-0207-4-C/results/953593231/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:10","STORET",7,NA,2022-02-07 19:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925650-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593254",NA,"as N","Nitrogen","Total","0.765","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925650-0307-4-C/results/953593254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:11","STORET",7,NA,2022-03-07 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.765,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925650-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593257",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925650-0307-4-C/results/953593257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:11","STORET",7,NA,2022-03-07 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925660-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593264",NA,"as N","Nitrogen","Total","0.633","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925660-1026-4-C/results/953593264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:11","STORET",7,NA,2021-10-26 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.633,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925660-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593267",NA,"as N","Nitrogen","Dissolved","0.625","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925660-1026-4-C/results/953593267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:11","STORET",7,NA,2021-10-26 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.625,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925660-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593290",NA,"as N","Nitrogen","Total","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925660-1115-4-C/results/953593290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:13","STORET",7,NA,2021-11-15 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925660-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593293",NA,"as N","Nitrogen","Dissolved","0.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925660-1115-4-C/results/953593293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:13","STORET",7,NA,2021-11-15 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.86,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925760-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593300",NA,"as N","Nitrogen","Total","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925760-1020-4-C/results/953593300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:13","STORET",7,NA,2021-10-20 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925760-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593303",NA,"as N","Nitrogen","Dissolved","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925760-1020-4-C/results/953593303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:13","STORET",7,NA,2021-10-20 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925760-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593326",NA,"as N","Nitrogen","Total","0.304","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925760-1117-4-C/results/953593326/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:14","STORET",7,NA,2021-11-17 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.304,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925760-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593329",NA,"as N","Nitrogen","Dissolved","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925760-1117-4-C/results/953593329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:14","STORET",7,NA,2021-11-17 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925760-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593336",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925760-1221-4-C/results/953593336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:15","STORET",7,NA,2021-12-21 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925760-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593339",NA,"as N","Nitrogen","Dissolved","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925760-1221-4-C/results/953593339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:15","STORET",7,NA,2021-12-21 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925760-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593362",NA,"as N","Nitrogen","Total","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925760-0112-4-C/results/953593362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:16","STORET",7,NA,2022-01-12 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4925760-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593365",NA,"as N","Nitrogen","Dissolved","0.493","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4925760-0112-4-C/results/953593365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:16","STORET",7,NA,2022-01-12 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.493,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925760-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593372",NA,"as N","Nitrogen","Total","0.498","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925760-0209-4-C/results/953593372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:16","STORET",7,NA,2022-02-09 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.498,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925760-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593375",NA,"as N","Nitrogen","Dissolved","0.433","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925760-0209-4-C/results/953593375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:16","STORET",7,NA,2022-02-09 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.433,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925760-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593398",NA,"as N","Nitrogen","Total","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925760-0309-4-C/results/953593398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:18","STORET",7,NA,2022-03-09 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925760-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593401",NA,"as N","Nitrogen","Dissolved","0.206","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925760-0309-4-C/results/953593401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:18","STORET",7,NA,2022-03-09 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.206,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925900-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593408",NA,"as N","Nitrogen","Total","0.534","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925900-1020-4-C/results/953593408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:19","STORET",7,NA,2021-10-20 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.534,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925900-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593411",NA,"as N","Nitrogen","Dissolved","0.482","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925900-1020-4-C/results/953593411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:19","STORET",7,NA,2021-10-20 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.482,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925900-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593434",NA,"as N","Nitrogen","Total","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925900-1117-4-C/results/953593434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:21","STORET",7,NA,2021-11-17 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925900-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593437",NA,"as N","Nitrogen","Dissolved","0.298","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925900-1117-4-C/results/953593437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:21","STORET",7,NA,2021-11-17 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.298,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925900-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593444",NA,"as N","Nitrogen","Total","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925900-1221-4-C/results/953593444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:22","STORET",7,NA,2021-12-21 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925900-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593447",NA,"as N","Nitrogen","Dissolved","0.432","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925900-1221-4-C/results/953593447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:22","STORET",7,NA,2021-12-21 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.432,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925900-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593470",NA,"as N","Nitrogen","Total","0.474","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925900-0209-4-C/results/953593470/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:23","STORET",7,NA,2022-02-09 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.474,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925900-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593473",NA,"as N","Nitrogen","Dissolved","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925900-0209-4-C/results/953593473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:23","STORET",7,NA,2022-02-09 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925930-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593496",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925930-1020-4-C/results/953593496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:24","STORET",7,NA,2021-10-20 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925930-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593499",NA,"as N","Nitrogen","Dissolved","0.434","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925930-1020-4-C/results/953593499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:25","STORET",7,NA,2021-10-20 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.434,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925930-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593522",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925930-1117-4-C/results/953593522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:26","STORET",7,NA,2021-11-17 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925930-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593525",NA,"as N","Nitrogen","Dissolved","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925930-1117-4-C/results/953593525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:26","STORET",7,NA,2021-11-17 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925960-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593532",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925960-1020-4-C/results/953593532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:26","STORET",7,NA,2021-10-20 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925960-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593535",NA,"as N","Nitrogen","Dissolved","0.438","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925960-1020-4-C/results/953593535/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:26","STORET",7,NA,2021-10-20 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.438,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925960-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593558",NA,"as N","Nitrogen","Total","0.353","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925960-1117-4-C/results/953593558/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:27","STORET",7,NA,2021-11-17 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.353,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925960-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593561",NA,"as N","Nitrogen","Dissolved","0.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925960-1117-4-C/results/953593561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:27","STORET",7,NA,2021-11-17 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925960-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593568",NA,"as N","Nitrogen","Total","0.751","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925960-1221-4-C/results/953593568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:27","STORET",7,NA,2021-12-21 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.751,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925960-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593571",NA,"as N","Nitrogen","Dissolved","0.977","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925960-1221-4-C/results/953593571/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:28","STORET",7,NA,2021-12-21 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.977,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925960-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593594",NA,"as N","Nitrogen","Total","0.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925960-0209-4-C/results/953593594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:29","STORET",7,NA,2022-02-09 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.93,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925960-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593597",NA,"as N","Nitrogen","Dissolved","0.878","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925960-0209-4-C/results/953593597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:29","STORET",7,NA,2022-02-09 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.878,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925960-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593620",NA,"as N","Nitrogen","Total","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925960-0309-4-C/results/953593620/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:31","STORET",7,NA,2022-03-09 18:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925960-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593623",NA,"as N","Nitrogen","Dissolved","0.549","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925960-0309-4-C/results/953593623/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:31","STORET",7,NA,2022-03-09 18:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.549,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925962-1020-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593630",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925962-1020-4-C/results/953593630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:31","STORET",7,NA,2021-10-20 18:50:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925962-1020-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-20,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593633",NA,"as N","Nitrogen","Dissolved","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925962-1020-4-C/results/953593633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:31","STORET",7,NA,2021-10-20 18:50:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925962-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593656",NA,"as N","Nitrogen","Total","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925962-1117-4-C/results/953593656/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:33","STORET",7,NA,2021-11-17 19:50:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925962-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593659",NA,"as N","Nitrogen","Dissolved","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925962-1117-4-C/results/953593659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:33","STORET",7,NA,2021-11-17 19:50:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925962-1221-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-21,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593666",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925962-1221-4-C/results/953593666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:34","STORET",7,NA,2021-12-21 18:10:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925962-1221-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-21,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593669",NA,"as N","Nitrogen","Dissolved","0.882","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925962-1221-4-C/results/953593669/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:34","STORET",7,NA,2021-12-21 18:10:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.882,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925962-0209-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-09,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593692",NA,"as N","Nitrogen","Total","0.967","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925962-0209-4-C/results/953593692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:35","STORET",7,NA,2022-02-09 18:15:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.967,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925962-0209-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-09,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593695",NA,"as N","Nitrogen","Dissolved","0.963","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925962-0209-4-C/results/953593695/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:35","STORET",7,NA,2022-02-09 18:15:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.963,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925962-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-09,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593718",NA,"as N","Nitrogen","Total","0.581","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925962-0309-4-C/results/953593718/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:37","STORET",7,NA,2022-03-09 18:45:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.581,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925962-0309-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-09,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593721",NA,"as N","Nitrogen","Dissolved","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925962-0309-4-C/results/953593721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:37","STORET",7,NA,2022-03-09 18:45:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925997-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593729",NA,"as N","Nitrogen","Total","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925997-1020-4-C/results/953593729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:38","STORET",7,NA,2021-10-20 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4925997-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593732",NA,"as N","Nitrogen","Dissolved","0.399","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4925997-1020-4-C/results/953593732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:38","STORET",7,NA,2021-10-20 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.399,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925997-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593756",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925997-1117-4-C/results/953593756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:39","STORET",7,NA,2021-11-17 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4925997-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593759",NA,"as N","Nitrogen","Dissolved","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4925997-1117-4-C/results/953593759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:39","STORET",7,NA,2021-11-17 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925997-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593767",NA,"as N","Nitrogen","Total","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925997-1221-4-C/results/953593767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:40","STORET",7,NA,2021-12-21 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4925997-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593770",NA,"as N","Nitrogen","Dissolved","0.852","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4925997-1221-4-C/results/953593770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:40","STORET",7,NA,2021-12-21 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.852,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925997-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593794",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925997-0209-4-C/results/953593794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:41","STORET",7,NA,2022-02-09 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4925997-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593797",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4925997-0209-4-C/results/953593797/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:41","STORET",7,NA,2022-02-09 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925997-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593821",NA,"as N","Nitrogen","Total","0.549","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925997-0309-4-C/results/953593821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:42","STORET",7,NA,2022-03-09 18:03:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.549,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4925997-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593824",NA,"as N","Nitrogen","Dissolved","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4925997-0309-4-C/results/953593824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:42","STORET",7,NA,2022-03-09 18:03:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926000-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593832",NA,"as N","Nitrogen","Total","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926000-1020-4-C/results/953593832/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:42","STORET",7,NA,2021-10-20 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926000-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593835",NA,"as N","Nitrogen","Dissolved","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926000-1020-4-C/results/953593835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:43","STORET",7,NA,2021-10-20 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926000-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593859",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926000-1117-4-C/results/953593859/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:44","STORET",7,NA,2021-11-17 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926000-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593862",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926000-1117-4-C/results/953593862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:44","STORET",7,NA,2021-11-17 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926000-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593870",NA,"as N","Nitrogen","Total","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926000-0309-4-C/results/953593870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:44","STORET",7,NA,2022-03-09 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926000-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593873",NA,"as N","Nitrogen","Dissolved","0.541","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926000-0309-4-C/results/953593873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:44","STORET",7,NA,2022-03-09 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.541,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926010-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926010","HENEFER LAGOONS OUTFALL",NA,NA,NA,NA,"41.0302600000","-111.5059200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593881",NA,"as N","Nitrogen","Total","2.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926010-1221-4-C/results/953593881/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:45","STORET",7,NA,2021-12-21 17:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"41.0302600000","-111.5059200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.11,"MG/L","Numeric","Not Reviewed","Uncensored",41.03026,-111.50592,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926010-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926010","HENEFER LAGOONS OUTFALL",NA,NA,NA,NA,"41.0302600000","-111.5059200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593884",NA,"as N","Nitrogen","Dissolved","2.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926010-1221-4-C/results/953593884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:45","STORET",7,NA,2021-12-21 17:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"41.0302600000","-111.5059200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.03026,-111.50592,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926040-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593907",NA,"as N","Nitrogen","Total","0.123","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926040-1027-4-C/results/953593907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:45","STORET",7,NA,2021-10-27 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.123,"MG/L","Numeric","Pass","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926040-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593910",NA,"as N","Nitrogen","Dissolved","0.124","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926040-1027-4-C/results/953593910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:45","STORET",7,NA,2021-10-27 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.124,"MG/L","Numeric","Pass","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926040-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593933","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926040-1117-4-C/results/953593933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:47","STORET",7,NA,2021-11-17 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926040-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593936",NA,"as N","Nitrogen","Dissolved","0.414","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926040-1117-4-C/results/953593936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:47","STORET",7,NA,2021-11-17 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.414,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926040-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593943",NA,"as N","Nitrogen","Total","0.141","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926040-1221-4-C/results/953593943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:48","STORET",7,NA,2021-12-21 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.141,"MG/L","Numeric","Pass","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926040-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593946",NA,"as N","Nitrogen","Dissolved","0.155","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926040-1221-4-C/results/953593946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:48","STORET",7,NA,2021-12-21 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.155,"MG/L","Numeric","Pass","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926040-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593969",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926040-0112-4-C/results/953593969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:49","STORET",7,NA,2022-01-12 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926040-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593972",NA,"as N","Nitrogen","Dissolved","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926040-0112-4-C/results/953593972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:49","STORET",7,NA,2022-01-12 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926040-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593979",NA,"as N","Nitrogen","Total","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926040-0209-4-C/results/953593979/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:49","STORET",7,NA,2022-02-09 16:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926040-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953593982",NA,"as N","Nitrogen","Dissolved","0.262","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926040-0209-4-C/results/953593982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:49","STORET",7,NA,2022-02-09 16:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.262,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926040-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594005","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926040-0309-4-C/results/953594005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:51","STORET",7,NA,2022-03-09 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926040-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594008",NA,"as N","Nitrogen","Dissolved","0.696","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926040-0309-4-C/results/953594008/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:51","STORET",7,NA,2022-03-09 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.696,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926070-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594015",NA,"as N","Nitrogen","Total","0.493","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926070-1027-4-C/results/953594015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:51","STORET",7,NA,2021-10-27 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.493,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926070-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594018",NA,"as N","Nitrogen","Dissolved","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926070-1027-4-C/results/953594018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:51","STORET",7,NA,2021-10-27 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926070-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594041",NA,"as N","Nitrogen","Total","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926070-1117-4-C/results/953594041/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:52","STORET",7,NA,2021-11-17 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926070-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594044",NA,"as N","Nitrogen","Dissolved","0.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926070-1117-4-C/results/953594044/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:53","STORET",7,NA,2021-11-17 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926070-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594051",NA,"as N","Nitrogen","Total","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926070-1214-4-C/results/953594051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:53","STORET",7,NA,2021-12-14 22:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926070-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594054",NA,"as N","Nitrogen","Dissolved","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926070-1214-4-C/results/953594054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:53","STORET",7,NA,2021-12-14 22:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926080-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594078",NA,"as N","Nitrogen","Total","0.469","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926080-1027-4-C/results/953594078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:55","STORET",7,NA,2021-10-27 20:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.469,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926080-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594081",NA,"as N","Nitrogen","Dissolved","0.457","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926080-1027-4-C/results/953594081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:55","STORET",7,NA,2021-10-27 20:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.457,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926080-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594104",NA,"as N","Nitrogen","Total","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926080-1117-4-C/results/953594104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:56","STORET",7,NA,2021-11-17 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926080-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594107",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926080-1117-4-C/results/953594107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:56","STORET",7,NA,2021-11-17 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926080-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594114",NA,"as N","Nitrogen","Total","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926080-1221-4-C/results/953594114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:56","STORET",7,NA,2021-12-21 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926080-1221-4-C","Sample-Routine","Water",NA,2021-12-21,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594117",NA,"as N","Nitrogen","Dissolved","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926080-1221-4-C/results/953594117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:57","STORET",7,NA,2021-12-21 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926080-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594140",NA,"as N","Nitrogen","Total","0.596","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926080-0112-4-C/results/953594140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:58","STORET",7,NA,2022-01-12 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.596,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926080-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594143",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926080-0112-4-C/results/953594143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:58","STORET",7,NA,2022-01-12 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926080-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594150",NA,"as N","Nitrogen","Total","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926080-0209-4-C/results/953594150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:59","STORET",7,NA,2022-02-09 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926080-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594153",NA,"as N","Nitrogen","Dissolved","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926080-0209-4-C/results/953594153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:52:59","STORET",7,NA,2022-02-09 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926080-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594176",NA,"as N","Nitrogen","Total","0.563","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926080-0309-4-C/results/953594176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:01","STORET",7,NA,2022-03-09 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.563,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926080-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594179",NA,"as N","Nitrogen","Dissolved","0.896","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926080-0309-4-C/results/953594179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:01","STORET",7,NA,2022-03-09 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.896,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926100-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594186",NA,"as N","Nitrogen","Total","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926100-1027-4-C/results/953594186/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:02","STORET",7,NA,2021-10-27 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926100-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594189",NA,"as N","Nitrogen","Dissolved","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926100-1027-4-C/results/953594189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:02","STORET",7,NA,2021-10-27 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926100-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594212",NA,"as N","Nitrogen","Total","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926100-1117-4-C/results/953594212/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:03","STORET",7,NA,2021-11-17 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926100-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594215",NA,"as N","Nitrogen","Dissolved","0.359","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926100-1117-4-C/results/953594215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:03","STORET",7,NA,2021-11-17 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.359,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926100-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594222",NA,"as N","Nitrogen","Total","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926100-1214-4-C/results/953594222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:04","STORET",7,NA,2021-12-14 21:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926100-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594225",NA,"as N","Nitrogen","Dissolved","0.565","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926100-1214-4-C/results/953594225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:04","STORET",7,NA,2021-12-14 21:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.565,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926101-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-27,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594248",NA,"as N","Nitrogen","Total","0.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926101-1027-4-C/results/953594248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:06","STORET",7,NA,2021-10-27 19:55:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926101-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-27,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594251",NA,"as N","Nitrogen","Dissolved","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926101-1027-4-C/results/953594251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:06","STORET",7,NA,2021-10-27 19:55:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926101-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594274",NA,"as N","Nitrogen","Total","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926101-1117-4-C/results/953594274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:07","STORET",7,NA,2021-11-17 18:40:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926101-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594277",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926101-1117-4-C/results/953594277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:07","STORET",7,NA,2021-11-17 18:40:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926101-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594284",NA,"as N","Nitrogen","Total","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926101-1214-4-C/results/953594284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:07","STORET",7,NA,2021-12-14 21:45:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926101-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594287",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926101-1214-4-C/results/953594287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:07","STORET",7,NA,2021-12-14 21:45:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926170-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594310",NA,"as N","Nitrogen","Total","0.511","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926170-1027-4-C/results/953594310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:09","STORET",7,NA,2021-10-27 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.511,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926170-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594313",NA,"as N","Nitrogen","Dissolved","0.516","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926170-1027-4-C/results/953594313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:09","STORET",7,NA,2021-10-27 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.516,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926170-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594336",NA,"as N","Nitrogen","Total","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926170-1117-4-C/results/953594336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:10","STORET",7,NA,2021-11-17 17:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926170-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594339",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926170-1117-4-C/results/953594339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:10","STORET",7,NA,2021-11-17 17:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926170-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594346",NA,"as N","Nitrogen","Total","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926170-1214-4-C/results/953594346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:10","STORET",7,NA,2021-12-14 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926170-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594349",NA,"as N","Nitrogen","Dissolved","0.603","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926170-1214-4-C/results/953594349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:10","STORET",7,NA,2021-12-14 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.603,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926170-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594372",NA,"as N","Nitrogen","Total","0.949","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926170-0309-4-C/results/953594372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:11","STORET",7,NA,2022-03-09 16:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.949,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926170-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594375",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926170-0309-4-C/results/953594375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:11","STORET",7,NA,2022-03-09 16:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926323-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594383",NA,"as N","Nitrogen","Total","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926323-1027-4-C/results/953594383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:11","STORET",7,NA,2021-10-27 19:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926323-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594386",NA,"as N","Nitrogen","Dissolved","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926323-1027-4-C/results/953594386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:11","STORET",7,NA,2021-10-27 19:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926323-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594410",NA,"as N","Nitrogen","Total","2.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926323-1117-4-C/results/953594410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:12","STORET",7,NA,2021-11-17 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926323-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594413",NA,"as N","Nitrogen","Dissolved","3.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926323-1117-4-C/results/953594413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:12","STORET",7,NA,2021-11-17 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926323-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594421",NA,"as N","Nitrogen","Total","2.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926323-1214-4-C/results/953594421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:12","STORET",7,NA,2021-12-14 20:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926323-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594424",NA,"as N","Nitrogen","Dissolved","3.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926323-1214-4-C/results/953594424/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:13","STORET",7,NA,2021-12-14 20:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926323-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594449",NA,"as N","Nitrogen","Total","2.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926323-0309-4-C/results/953594449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:13","STORET",7,NA,2022-03-09 16:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926323-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594452",NA,"as N","Nitrogen","Dissolved","3.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926323-0309-4-C/results/953594452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:13","STORET",7,NA,2022-03-09 16:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926325-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594460",NA,"as N","Nitrogen","Total","4.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926325-1027-4-C/results/953594460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:14","STORET",7,NA,2021-10-27 19:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926325-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594463",NA,"as N","Nitrogen","Dissolved","4.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926325-1027-4-C/results/953594463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:14","STORET",7,NA,2021-10-27 19:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926325-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594487",NA,"as N","Nitrogen","Total","4.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926325-1117-4-C/results/953594487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:14","STORET",7,NA,2021-11-17 18:05:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926325-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594490",NA,"as N","Nitrogen","Dissolved","4.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926325-1117-4-C/results/953594490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:14","STORET",7,NA,2021-11-17 18:05:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926325-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594498",NA,"as N","Nitrogen","Total","4.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926325-1214-4-C/results/953594498/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:15","STORET",7,NA,2021-12-14 21:20:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926325-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594501",NA,"as N","Nitrogen","Dissolved","4.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926325-1214-4-C/results/953594501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:15","STORET",7,NA,2021-12-14 21:20:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926325-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594525",NA,"as N","Nitrogen","Total","4.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926325-0112-4-C/results/953594525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:15","STORET",7,NA,2022-01-12 17:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926325-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594528",NA,"as N","Nitrogen","Dissolved","4.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926325-0112-4-C/results/953594528/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:15","STORET",7,NA,2022-01-12 17:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926325-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594536",NA,"as N","Nitrogen","Total","7.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926325-0209-4-C/results/953594536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:16","STORET",7,NA,2022-02-09 16:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926325-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594539",NA,"as N","Nitrogen","Dissolved","7.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926325-0209-4-C/results/953594539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:16","STORET",7,NA,2022-02-09 16:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926325-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594563",NA,"as N","Nitrogen","Total","5.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926325-0309-4-C/results/953594563/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:17","STORET",7,NA,2022-03-09 17:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926325-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594566",NA,"as N","Nitrogen","Dissolved","5.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926325-0309-4-C/results/953594566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:17","STORET",7,NA,2022-03-09 17:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.86,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926400-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594573",NA,"as N","Nitrogen","Total","0.549","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926400-1027-4-C/results/953594573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:17","STORET",7,NA,2021-10-27 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.549,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926400-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594576",NA,"as N","Nitrogen","Dissolved","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926400-1027-4-C/results/953594576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:17","STORET",7,NA,2021-10-27 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926400-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594599",NA,"as N","Nitrogen","Total","0.505","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926400-1117-4-C/results/953594599/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:18","STORET",7,NA,2021-11-17 17:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.505,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926400-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594602",NA,"as N","Nitrogen","Dissolved","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926400-1117-4-C/results/953594602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:18","STORET",7,NA,2021-11-17 17:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926400-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594609",NA,"as N","Nitrogen","Total","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926400-1214-4-C/results/953594609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:19","STORET",7,NA,2021-12-14 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926400-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594612",NA,"as N","Nitrogen","Dissolved","0.761","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926400-1214-4-C/results/953594612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:19","STORET",7,NA,2021-12-14 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.761,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926400-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594635",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926400-0209-4-C/results/953594635/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:19","STORET",7,NA,2022-02-09 16:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926400-0209-4-C","Sample-Routine","Water",NA,2022-02-09,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594638",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926400-0209-4-C/results/953594638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:19","STORET",7,NA,2022-02-09 16:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926400-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594661",NA,"as N","Nitrogen","Total","0.678","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926400-0309-4-C/results/953594661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:20","STORET",7,NA,2022-03-09 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.678,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926400-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594664",NA,"as N","Nitrogen","Dissolved","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926400-0309-4-C/results/953594664/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:20","STORET",7,NA,2022-03-09 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926700-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594671",NA,"as N","Nitrogen","Total","0.192","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926700-1027-4-C/results/953594671/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:20","STORET",7,NA,2021-10-27 18:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.192,"MG/L","Numeric","Pass","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926700-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594674",NA,"as N","Nitrogen","Dissolved","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926700-1027-4-C/results/953594674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:21","STORET",7,NA,2021-10-27 18:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926700-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594697",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926700-1117-4-C/results/953594697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:22","STORET",7,NA,2021-11-17 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926700-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594700",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926700-1117-4-C/results/953594700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:22","STORET",7,NA,2021-11-17 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926700-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594707",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926700-1214-4-C/results/953594707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:22","STORET",7,NA,2021-12-14 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926700-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594710",NA,"as N","Nitrogen","Dissolved","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926700-1214-4-C/results/953594710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:22","STORET",7,NA,2021-12-14 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926700-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594733",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926700-0208-4-C/results/953594733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:23","STORET",7,NA,2022-02-08 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926700-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594736",NA,"as N","Nitrogen","Dissolved","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926700-0208-4-C/results/953594736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:23","STORET",7,NA,2022-02-08 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926700-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594759",NA,"as N","Nitrogen","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926700-0308-4-C/results/953594759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:24","STORET",7,NA,2022-03-08 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926700-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594762",NA,"as N","Nitrogen","Dissolved","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926700-0308-4-C/results/953594762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:25","STORET",7,NA,2022-03-08 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926740-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594770",NA,"as N","Nitrogen","Total","0.749","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926740-1026-4-C/results/953594770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:25","STORET",7,NA,2021-10-26 21:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.749,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926740-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594773",NA,"as N","Nitrogen","Dissolved","0.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926740-1026-4-C/results/953594773/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:25","STORET",7,NA,2021-10-26 21:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926740-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594813",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926740-1115-4-C/results/953594813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:27","STORET",7,NA,2021-11-15 21:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926740-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594816",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926740-1115-4-C/results/953594816/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:27","STORET",7,NA,2021-11-15 21:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926740-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594856",NA,"as N","Nitrogen","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926740-1213-4-C/results/953594856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:30","STORET",7,NA,2021-12-13 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926740-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594859",NA,"as N","Nitrogen","Dissolved","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926740-1213-4-C/results/953594859/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:30","STORET",7,NA,2021-12-13 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926740-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594899",NA,"as N","Nitrogen","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926740-0110-4-C/results/953594899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:33","STORET",7,NA,2022-01-10 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926740-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594902",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926740-0110-4-C/results/953594902/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:33","STORET",7,NA,2022-01-10 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926740-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594942",NA,"as N","Nitrogen","Total","4.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926740-0207-4-C/results/953594942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:36","STORET",7,NA,2022-02-07 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926740-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594945",NA,"as N","Nitrogen","Dissolved","5.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926740-0207-4-C/results/953594945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:36","STORET",7,NA,2022-02-07 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926740-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594985",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926740-0307-4-C/results/953594985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:37","STORET",7,NA,2022-03-07 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926740-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953594988",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926740-0307-4-C/results/953594988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:38","STORET",7,NA,2022-03-07 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926750-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595027",NA,"as N","Nitrogen","Total","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926750-1027-4-C/results/953595027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:40","STORET",7,NA,2021-10-27 17:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926750-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595030",NA,"as N","Nitrogen","Dissolved","0.687","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926750-1027-4-C/results/953595030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:40","STORET",7,NA,2021-10-27 17:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.687,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926750-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595069",NA,"as N","Nitrogen","Total","0.947","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926750-1117-4-C/results/953595069/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:42","STORET",7,NA,2021-11-17 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.947,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926750-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595072",NA,"as N","Nitrogen","Dissolved","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926750-1117-4-C/results/953595072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:42","STORET",7,NA,2021-11-17 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926750-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595112",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926750-1214-4-C/results/953595112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:44","STORET",7,NA,2021-12-14 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926750-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595115",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926750-1214-4-C/results/953595115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:45","STORET",7,NA,2021-12-14 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926750-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595154",NA,"as N","Nitrogen","Total","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926750-0112-4-C/results/953595154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:47","STORET",7,NA,2022-01-12 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926750-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595157",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926750-0112-4-C/results/953595157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:47","STORET",7,NA,2022-01-12 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926750-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595196",NA,"as N","Nitrogen","Total","2.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926750-0208-4-C/results/953595196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:49","STORET",7,NA,2022-02-08 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926750-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595199",NA,"as N","Nitrogen","Dissolved","2.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926750-0208-4-C/results/953595199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:49","STORET",7,NA,2022-02-08 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.85,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926750-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595238",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926750-0308-4-C/results/953595238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:51","STORET",7,NA,2022-03-08 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926750-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595241",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926750-0308-4-C/results/953595241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:51","STORET",7,NA,2022-03-08 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926790-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595281",NA,"as N","Nitrogen","Total","2.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926790-1026-4-C/results/953595281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:54","STORET",7,NA,2021-10-26 22:05:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926790-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595284",NA,"as N","Nitrogen","Dissolved","3.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926790-1026-4-C/results/953595284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:54","STORET",7,NA,2021-10-26 22:05:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926790-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595324",NA,"as N","Nitrogen","Total","4.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926790-1115-4-C/results/953595324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:56","STORET",7,NA,2021-11-15 21:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.97,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926790-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595327",NA,"as N","Nitrogen","Dissolved","4.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926790-1115-4-C/results/953595327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:56","STORET",7,NA,2021-11-15 21:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.73,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926790-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595367",NA,"as N","Nitrogen","Total","3.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926790-1213-4-C/results/953595367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:58","STORET",7,NA,2021-12-13 20:15:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926790-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595370",NA,"as N","Nitrogen","Dissolved","3.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926790-1213-4-C/results/953595370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:53:59","STORET",7,NA,2021-12-13 20:15:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926790-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595410",NA,"as N","Nitrogen","Total","5.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926790-0110-4-C/results/953595410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:01","STORET",7,NA,2022-01-10 19:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926790-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595413",NA,"as N","Nitrogen","Dissolved","5.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926790-0110-4-C/results/953595413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:01","STORET",7,NA,2022-01-10 19:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926790-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595453",NA,"as N","Nitrogen","Total","9.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926790-0207-4-C/results/953595453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:03","STORET",7,NA,2022-02-07 20:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.72,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926790-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595456",NA,"as N","Nitrogen","Dissolved","9.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926790-0207-4-C/results/953595456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:03","STORET",7,NA,2022-02-07 20:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926790-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595496",NA,"as N","Nitrogen","Total","2.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926790-0307-4-C/results/953595496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:05","STORET",7,NA,2022-03-07 20:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926790-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595499",NA,"as N","Nitrogen","Dissolved","2.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926790-0307-4-C/results/953595499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:05","STORET",7,NA,2022-03-07 20:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926800-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595539",NA,"as N","Nitrogen","Total","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926800-1026-4-C/results/953595539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:07","STORET",7,NA,2021-10-26 21:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926800-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595542",NA,"as N","Nitrogen","Dissolved","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926800-1026-4-C/results/953595542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:08","STORET",7,NA,2021-10-26 21:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926800-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595582",NA,"as N","Nitrogen","Total","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926800-1115-4-C/results/953595582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:10","STORET",7,NA,2021-11-15 20:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926800-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595585",NA,"as N","Nitrogen","Dissolved","0.153","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926800-1115-4-C/results/953595585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:10","STORET",7,NA,2021-11-15 20:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.153,"MG/L","Numeric","Pass","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926800-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595625",NA,"as N","Nitrogen","Total","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926800-1213-4-C/results/953595625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:12","STORET",7,NA,2021-12-13 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926800-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595628",NA,"as N","Nitrogen","Dissolved","0.512","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926800-1213-4-C/results/953595628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:12","STORET",7,NA,2021-12-13 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.512,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926800-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595668",NA,"as N","Nitrogen","Total","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926800-0307-4-C/results/953595668/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:13","STORET",7,NA,2022-03-07 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926800-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595671",NA,"as N","Nitrogen","Dissolved","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926800-0307-4-C/results/953595671/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:13","STORET",7,NA,2022-03-07 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926850-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595710",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926850-1026-4-C/results/953595710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:16","STORET",7,NA,2021-10-26 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926850-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595713",NA,"as N","Nitrogen","Dissolved","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926850-1026-4-C/results/953595713/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:16","STORET",7,NA,2021-10-26 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926850-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595751",NA,"as N","Nitrogen","Total","0.494","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926850-1115-4-C/results/953595751/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:17","STORET",7,NA,2021-11-15 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.494,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926850-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595754",NA,"as N","Nitrogen","Dissolved","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926850-1115-4-C/results/953595754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:17","STORET",7,NA,2021-11-15 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926850-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595793",NA,"as N","Nitrogen","Total","0.534","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926850-1213-4-C/results/953595793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:19","STORET",7,NA,2021-12-13 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.534,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926850-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595796",NA,"as N","Nitrogen","Dissolved","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926850-1213-4-C/results/953595796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:19","STORET",7,NA,2021-12-13 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926850-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595835",NA,"as N","Nitrogen","Total","0.738","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926850-0207-4-C/results/953595835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:20","STORET",7,NA,2022-02-07 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.738,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926850-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595838",NA,"as N","Nitrogen","Dissolved","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926850-0207-4-C/results/953595838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:20","STORET",7,NA,2022-02-07 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926850-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595877",NA,"as N","Nitrogen","Total","0.938","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926850-0307-4-C/results/953595877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:21","STORET",7,NA,2022-03-07 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.938,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926850-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595880",NA,"as N","Nitrogen","Dissolved","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926850-0307-4-C/results/953595880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:21","STORET",7,NA,2022-03-07 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926948-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-26,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595919",NA,"as N","Nitrogen","Total","0.348","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926948-1026-4-C/results/953595919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:23","STORET",7,NA,2021-10-26 20:25:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.348,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926948-1026-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-26,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595922",NA,"as N","Nitrogen","Dissolved","0.414","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926948-1026-4-C/results/953595922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:24","STORET",7,NA,2021-10-26 20:25:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.414,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926948-1115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595961",NA,"as N","Nitrogen","Total","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926948-1115-4-C/results/953595961/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:26","STORET",7,NA,2021-11-15 20:10:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926948-1115-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-15,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953595964",NA,"as N","Nitrogen","Dissolved","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926948-1115-4-C/results/953595964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:26","STORET",7,NA,2021-11-15 20:10:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926948-1213-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-13,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596004",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926948-1213-4-C/results/953596004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:29","STORET",7,NA,2021-12-13 19:25:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926948-1213-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-13,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596007",NA,"as N","Nitrogen","Dissolved","0.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926948-1213-4-C/results/953596007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:29","STORET",7,NA,2021-12-13 19:25:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926948-0110-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-10,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596046",NA,"as N","Nitrogen","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926948-0110-4-C/results/953596046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:32","STORET",7,NA,2022-01-10 19:15:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926948-0110-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-10,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596049",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926948-0110-4-C/results/953596049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:32","STORET",7,NA,2022-01-10 19:15:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926948-0207-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-07,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596088",NA,"as N","Nitrogen","Total","2.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926948-0207-4-C/results/953596088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:33","STORET",7,NA,2022-02-07 19:45:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926948-0207-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-07,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596091",NA,"as N","Nitrogen","Dissolved","2.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926948-0207-4-C/results/953596091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:33","STORET",7,NA,2022-02-07 19:45:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926948-0307-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-07,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596114",NA,"as N","Nitrogen","Total","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926948-0307-4-C/results/953596114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:34","STORET",7,NA,2022-03-07 19:10:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926948-0307-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-07,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596117",NA,"as N","Nitrogen","Dissolved","0.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926948-0307-4-C/results/953596117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:34","STORET",7,NA,2022-03-07 19:10:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926950-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596156",NA,"as N","Nitrogen","Total","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926950-1026-4-C/results/953596156/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:37","STORET",7,NA,2021-10-26 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4926950-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596159",NA,"as N","Nitrogen","Dissolved","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4926950-1026-4-C/results/953596159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:37","STORET",7,NA,2021-10-26 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926950-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596198",NA,"as N","Nitrogen","Total","0.133","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926950-1115-4-C/results/953596198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:39","STORET",7,NA,2021-11-15 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.133,"MG/L","Numeric","Pass","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4926950-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596201",NA,"as N","Nitrogen","Dissolved","0.915","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4926950-1115-4-C/results/953596201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:39","STORET",7,NA,2021-11-15 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.915,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926950-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596240",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926950-1213-4-C/results/953596240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:41","STORET",7,NA,2021-12-13 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4926950-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596243",NA,"as N","Nitrogen","Dissolved","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4926950-1213-4-C/results/953596243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:41","STORET",7,NA,2021-12-13 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926950-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596282",NA,"as N","Nitrogen","Total","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926950-0110-4-C/results/953596282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:42","STORET",7,NA,2022-01-10 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4926950-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596285",NA,"as N","Nitrogen","Dissolved","0.295","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4926950-0110-4-C/results/953596285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:42","STORET",7,NA,2022-01-10 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.295,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926950-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596324",NA,"as N","Nitrogen","Total","2.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926950-0207-4-C/results/953596324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:43","STORET",7,NA,2022-02-07 19:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4926950-0207-4-C","Sample-Routine","Water",NA,2022-02-07,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596327",NA,"as N","Nitrogen","Dissolved","2.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4926950-0207-4-C/results/953596327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:44","STORET",7,NA,2022-02-07 19:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926950-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596350",NA,"as N","Nitrogen","Total","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926950-0307-4-C/results/953596350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:45","STORET",7,NA,2022-03-07 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4926950-0307-4-C","Sample-Routine","Water",NA,2022-03-07,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596353",NA,"as N","Nitrogen","Dissolved","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4926950-0307-4-C/results/953596353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:45","STORET",7,NA,2022-03-07 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927010-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596392",NA,"as N","Nitrogen","Total","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927010-1027-4-C/results/953596392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:47","STORET",7,NA,2021-10-27 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927010-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596395",NA,"as N","Nitrogen","Dissolved","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927010-1027-4-C/results/953596395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:47","STORET",7,NA,2021-10-27 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4927010-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596418",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927010-1117-4-C/results/953596418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:48","STORET",7,NA,2021-11-17 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4927010-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596421",NA,"as N","Nitrogen","Dissolved","0.795","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927010-1117-4-C/results/953596421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:48","STORET",7,NA,2021-11-17 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.795,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4927010-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596428",NA,"as N","Nitrogen","Total","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927010-1214-4-C/results/953596428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:48","STORET",7,NA,2021-12-14 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4927010-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596431",NA,"as N","Nitrogen","Dissolved","0.596","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927010-1214-4-C/results/953596431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:49","STORET",7,NA,2021-12-14 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.596,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4927010-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596454",NA,"as N","Nitrogen","Total","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927010-0112-4-C/results/953596454/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:50","STORET",7,NA,2022-01-12 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4927010-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596457",NA,"as N","Nitrogen","Dissolved","0.712","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927010-0112-4-C/results/953596457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:50","STORET",7,NA,2022-01-12 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.712,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4927010-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596464",NA,"as N","Nitrogen","Total","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927010-0208-4-C/results/953596464/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:50","STORET",7,NA,2022-02-08 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4927010-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596467",NA,"as N","Nitrogen","Dissolved","0.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927010-0208-4-C/results/953596467/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:50","STORET",7,NA,2022-02-08 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4927010-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596490",NA,"as N","Nitrogen","Total","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927010-0308-4-C/results/953596490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:51","STORET",7,NA,2022-03-08 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4927010-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596493",NA,"as N","Nitrogen","Dissolved","0.552","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927010-0308-4-C/results/953596493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:51","STORET",7,NA,2022-03-08 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.552,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927245-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927245","Crandall Canyon AB Rockport Reservoir at U-302 xing",NA,NA,NA,NA,"40.7660400000","-111.3811600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596500",NA,"as N","Nitrogen","Total","0.304","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927245-1027-4-C/results/953596500/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:51","STORET",7,NA,2021-10-27 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7660400000","-111.3811600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.304,"MG/L","Numeric","Not Reviewed","Uncensored",40.76604,-111.38116,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927245-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927245","Crandall Canyon AB Rockport Reservoir at U-302 xing",NA,NA,NA,NA,"40.7660400000","-111.3811600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596503",NA,"as N","Nitrogen","Dissolved","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927245-1027-4-C/results/953596503/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:51","STORET",7,NA,2021-10-27 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7660400000","-111.3811600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",40.76604,-111.38116,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927247-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-27,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596526",NA,"as N","Nitrogen","Total","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927247-1027-4-C/results/953596526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:53","STORET",7,NA,2021-10-27 16:30:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927247-1027-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-27,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596529",NA,"as N","Nitrogen","Dissolved","0.659","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927247-1027-4-C/results/953596529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:53","STORET",7,NA,2021-10-27 16:30:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.659,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4927247-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596552",NA,"as N","Nitrogen","Total","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927247-1117-4-C/results/953596552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:54","STORET",7,NA,2021-11-17 15:50:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4927247-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596555",NA,"as N","Nitrogen","Dissolved","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927247-1117-4-C/results/953596555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:54","STORET",7,NA,2021-11-17 15:50:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4927247-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596562",NA,"as N","Nitrogen","Total","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927247-1214-4-C/results/953596562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:55","STORET",7,NA,2021-12-14 20:00:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4927247-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596565",NA,"as N","Nitrogen","Dissolved","0.495","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927247-1214-4-C/results/953596565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:55","STORET",7,NA,2021-12-14 20:00:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.495,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4927247-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-12,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596588",NA,"as N","Nitrogen","Total","0.546","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927247-0112-4-C/results/953596588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:55","STORET",7,NA,2022-01-12 16:10:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.546,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4927247-0112-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-12,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596591",NA,"as N","Nitrogen","Dissolved","0.656","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927247-0112-4-C/results/953596591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:55","STORET",7,NA,2022-01-12 16:10:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.656,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4927247-0208-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596598",NA,"as N","Nitrogen","Total","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927247-0208-4-C/results/953596598/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:56","STORET",7,NA,2022-02-08 19:15:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4927247-0208-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596601",NA,"as N","Nitrogen","Dissolved","0.494","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927247-0208-4-C/results/953596601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:56","STORET",7,NA,2022-02-08 19:15:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.494,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4927247-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-08,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596624",NA,"as N","Nitrogen","Total","0.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927247-0308-4-C/results/953596624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:57","STORET",7,NA,2022-03-08 19:35:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4927247-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-08,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596627",NA,"as N","Nitrogen","Dissolved","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927247-0308-4-C/results/953596627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:57","STORET",7,NA,2022-03-08 19:35:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927250-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596634",NA,"as N","Nitrogen","Total","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927250-1027-4-C/results/953596634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:58","STORET",7,NA,2021-10-27 16:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927250-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596637",NA,"as N","Nitrogen","Dissolved","0.665","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927250-1027-4-C/results/953596637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:58","STORET",7,NA,2021-10-27 16:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.665,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4927250-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596660",NA,"as N","Nitrogen","Total","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927250-1117-4-C/results/953596660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:59","STORET",7,NA,2021-11-17 15:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4927250-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596663",NA,"as N","Nitrogen","Dissolved","0.933","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927250-1117-4-C/results/953596663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:59","STORET",7,NA,2021-11-17 15:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.933,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4927250-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596670",NA,"as N","Nitrogen","Total","0.661","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927250-1214-4-C/results/953596670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:59","STORET",7,NA,2021-12-14 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.661,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4927250-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596673",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927250-1214-4-C/results/953596673/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:54:59","STORET",7,NA,2021-12-14 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4927250-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596696",NA,"as N","Nitrogen","Total","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927250-0112-4-C/results/953596696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:00","STORET",7,NA,2022-01-12 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4927250-0112-4-C","Sample-Routine","Water",NA,2022-01-12,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596699",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927250-0112-4-C/results/953596699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:00","STORET",7,NA,2022-01-12 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4927250-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596706",NA,"as N","Nitrogen","Total","0.432","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927250-0208-4-C/results/953596706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:00","STORET",7,NA,2022-02-08 19:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.432,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4927250-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596709",NA,"as N","Nitrogen","Dissolved","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927250-0208-4-C/results/953596709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:00","STORET",7,NA,2022-02-08 19:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4927250-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596732",NA,"as N","Nitrogen","Total","0.662","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927250-0308-4-C/results/953596732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:01","STORET",7,NA,2022-03-08 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.662,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4927250-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596735",NA,"as N","Nitrogen","Dissolved","0.706","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927250-0308-4-C/results/953596735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:01","STORET",7,NA,2022-03-08 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.706,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927500-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596742",NA,"as N","Nitrogen","Total","0.834","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927500-1025-4-C/results/953596742/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:02","STORET",7,NA,2021-10-25 23:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.834,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4927500-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596745",NA,"as N","Nitrogen","Dissolved","0.887","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4927500-1025-4-C/results/953596745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:02","STORET",7,NA,2021-10-25 23:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.887,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4927500-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596768",NA,"as N","Nitrogen","Total","0.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927500-1116-4-C/results/953596768/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:03","STORET",7,NA,2021-11-16 22:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4927500-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596771",NA,"as N","Nitrogen","Dissolved","0.818","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4927500-1116-4-C/results/953596771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:03","STORET",7,NA,2021-11-16 22:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.818,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4927500-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596778",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927500-1214-4-C/results/953596778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:03","STORET",7,NA,2021-12-14 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4927500-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596781",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4927500-1214-4-C/results/953596781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:04","STORET",7,NA,2021-12-14 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4927500-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596804",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927500-0111-4-C/results/953596804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:04","STORET",7,NA,2022-01-11 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4927500-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596807",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4927500-0111-4-C/results/953596807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:04","STORET",7,NA,2022-01-11 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4927500-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596814",NA,"as N","Nitrogen","Total","0.892","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927500-0208-4-C/results/953596814/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:05","STORET",7,NA,2022-02-08 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.892,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4927500-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596817",NA,"as N","Nitrogen","Dissolved","0.917","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4927500-0208-4-C/results/953596817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:05","STORET",7,NA,2022-02-08 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.917,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4927500-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596840",NA,"as N","Nitrogen","Total","0.909","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927500-0308-4-C/results/953596840/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:06","STORET",7,NA,2022-03-08 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.909,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4927500-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596843",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4927500-0308-4-C/results/953596843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:06","STORET",7,NA,2022-03-08 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928005-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596851",NA,"as N","Nitrogen","Total","0.084","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928005-1025-4-C/results/953596851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:07","STORET",7,NA,2021-10-25 19:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.084,"MG/L","Numeric","Pass","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928005-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596854","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928005-1025-4-C/results/953596854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:07","STORET",7,NA,2021-10-25 19:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928005-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596878","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928005-1116-4-C/results/953596878/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:07","STORET",7,NA,2021-11-16 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928005-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596881",NA,"as N","Nitrogen","Dissolved","0.464","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928005-1116-4-C/results/953596881/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:07","STORET",7,NA,2021-11-16 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.464,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928005-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596889",NA,"as N","Nitrogen","Total","0.142","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928005-1214-4-C/results/953596889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:08","STORET",7,NA,2021-12-14 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.142,"MG/L","Numeric","Pass","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928005-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596892",NA,"as N","Nitrogen","Dissolved","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928005-1214-4-C/results/953596892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:08","STORET",7,NA,2021-12-14 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928005-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596916",NA,"as N","Nitrogen","Total","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928005-0308-4-C/results/953596916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:08","STORET",7,NA,2022-03-08 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928005-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596919",NA,"as N","Nitrogen","Dissolved","0.339","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928005-0308-4-C/results/953596919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:08","STORET",7,NA,2022-03-08 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.339,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928010-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596927",NA,"as N","Nitrogen","Total","17.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928010-1025-4-C/results/953596927/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:09","STORET",7,NA,2021-10-25 19:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928010-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596930",NA,"as N","Nitrogen","Dissolved","17.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928010-1025-4-C/results/953596930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:09","STORET",7,NA,2021-10-25 19:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4928010-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596954",NA,"as N","Nitrogen","Total","21.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928010-0111-4-C/results/953596954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:10","STORET",7,NA,2022-01-11 18:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4928010-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596957",NA,"as N","Nitrogen","Dissolved","21.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928010-0111-4-C/results/953596957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:10","STORET",7,NA,2022-01-11 18:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928010-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596965",NA,"as N","Nitrogen","Total","25.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928010-0208-4-C/results/953596965/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:10","STORET",7,NA,2022-02-08 17:15:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",25.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928010-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596968",NA,"as N","Nitrogen","Dissolved","25.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928010-0208-4-C/results/953596968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:10","STORET",7,NA,2022-02-08 17:15:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",25.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928010-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596992",NA,"as N","Nitrogen","Total","21.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928010-0308-4-C/results/953596992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:11","STORET",7,NA,2022-03-08 17:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928010-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953596995",NA,"as N","Nitrogen","Dissolved","22.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928010-0308-4-C/results/953596995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:11","STORET",7,NA,2022-03-08 17:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928300-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597002",NA,"as N","Nitrogen","Total","0.517","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928300-1025-4-C/results/953597002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:12","STORET",7,NA,2021-10-25 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.517,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928300-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597005",NA,"as N","Nitrogen","Dissolved","0.976","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928300-1025-4-C/results/953597005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:12","STORET",7,NA,2021-10-25 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.976,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928300-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597028",NA,"as N","Nitrogen","Total","0.572","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928300-1116-4-C/results/953597028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:13","STORET",7,NA,2021-11-16 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.572,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928300-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597031",NA,"as N","Nitrogen","Dissolved","0.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928300-1116-4-C/results/953597031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:13","STORET",7,NA,2021-11-16 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928300-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597039",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928300-1214-4-C/results/953597039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:13","STORET",7,NA,2021-12-14 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928300-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597042",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928300-1214-4-C/results/953597042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:14","STORET",7,NA,2021-12-14 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4928300-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597065",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928300-0111-4-C/results/953597065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:15","STORET",7,NA,2022-01-11 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4928300-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597068",NA,"as N","Nitrogen","Dissolved","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928300-0111-4-C/results/953597068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:15","STORET",7,NA,2022-01-11 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928300-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597076",NA,"as N","Nitrogen","Total","0.812","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928300-0208-4-C/results/953597076/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:15","STORET",7,NA,2022-02-08 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.812,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928300-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597079",NA,"as N","Nitrogen","Dissolved","0.756","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928300-0208-4-C/results/953597079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:15","STORET",7,NA,2022-02-08 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.756,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928300-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597102",NA,"as N","Nitrogen","Total","0.868","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928300-0308-4-C/results/953597102/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:16","STORET",7,NA,2022-03-08 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.868,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928300-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597105",NA,"as N","Nitrogen","Dissolved","0.833","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928300-0308-4-C/results/953597105/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:16","STORET",7,NA,2022-03-08 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.833,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928500-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597113",NA,"as N","Nitrogen","Total","2.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928500-1025-4-C/results/953597113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:16","STORET",7,NA,2021-10-25 18:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928500-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597116",NA,"as N","Nitrogen","Dissolved","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928500-1025-4-C/results/953597116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:17","STORET",7,NA,2021-10-25 18:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928500-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597140",NA,"as N","Nitrogen","Total","5.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928500-1214-4-C/results/953597140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:17","STORET",7,NA,2021-12-14 16:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928500-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597143",NA,"as N","Nitrogen","Dissolved","5.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928500-1214-4-C/results/953597143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:18","STORET",7,NA,2021-12-14 16:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928530-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597167",NA,"as N","Nitrogen","Total","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928530-1025-4-C/results/953597167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:18","STORET",7,NA,2021-10-25 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928530-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597170",NA,"as N","Nitrogen","Dissolved","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928530-1025-4-C/results/953597170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:19","STORET",7,NA,2021-10-25 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928530-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597193",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928530-1116-4-C/results/953597193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:19","STORET",7,NA,2021-11-16 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928530-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597196",NA,"as N","Nitrogen","Dissolved","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928530-1116-4-C/results/953597196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:19","STORET",7,NA,2021-11-16 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928530-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597204",NA,"as N","Nitrogen","Total","0.609","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928530-1214-4-C/results/953597204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:20","STORET",7,NA,2021-12-14 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.609,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928530-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597207",NA,"as N","Nitrogen","Dissolved","0.951","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928530-1214-4-C/results/953597207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:20","STORET",7,NA,2021-12-14 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.951,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928530-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597231",NA,"as N","Nitrogen","Total","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928530-0208-4-C/results/953597231/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:20","STORET",7,NA,2022-02-08 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928530-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597234",NA,"as N","Nitrogen","Dissolved","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928530-0208-4-C/results/953597234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:20","STORET",7,NA,2022-02-08 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928530-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597257",NA,"as N","Nitrogen","Total","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928530-0308-4-C/results/953597257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:22","STORET",7,NA,2022-03-08 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928530-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597260",NA,"as N","Nitrogen","Dissolved","0.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928530-0308-4-C/results/953597260/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:22","STORET",7,NA,2022-03-08 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.72,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928540-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597267",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928540-1025-4-C/results/953597267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:22","STORET",7,NA,2021-10-25 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928540-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597270",NA,"as N","Nitrogen","Dissolved","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928540-1025-4-C/results/953597270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:22","STORET",7,NA,2021-10-25 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928540-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597293",NA,"as N","Nitrogen","Total","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928540-1116-4-C/results/953597293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:23","STORET",7,NA,2021-11-16 16:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928540-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597296",NA,"as N","Nitrogen","Dissolved","0.728","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928540-1116-4-C/results/953597296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:23","STORET",7,NA,2021-11-16 16:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.728,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928540-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597303",NA,"as N","Nitrogen","Total","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928540-1214-4-C/results/953597303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:24","STORET",7,NA,2021-12-14 16:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928540-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597306",NA,"as N","Nitrogen","Dissolved","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928540-1214-4-C/results/953597306/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:24","STORET",7,NA,2021-12-14 16:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4928540-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597329",NA,"as N","Nitrogen","Total","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928540-0111-4-C/results/953597329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:25","STORET",7,NA,2022-01-11 16:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4928540-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597332",NA,"as N","Nitrogen","Dissolved","0.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928540-0111-4-C/results/953597332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:25","STORET",7,NA,2022-01-11 16:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928540-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597339",NA,"as N","Nitrogen","Total","0.608","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928540-0208-4-C/results/953597339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:25","STORET",7,NA,2022-02-08 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.608,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928540-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597342",NA,"as N","Nitrogen","Dissolved","0.655","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928540-0208-4-C/results/953597342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:25","STORET",7,NA,2022-02-08 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.655,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928540-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597365",NA,"as N","Nitrogen","Total","0.629","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928540-0308-4-C/results/953597365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:26","STORET",7,NA,2022-03-08 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.629,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928540-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597368",NA,"as N","Nitrogen","Dissolved","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928540-0308-4-C/results/953597368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:26","STORET",7,NA,2022-03-08 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928541-1025-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-25,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597375",NA,"as N","Nitrogen","Total","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928541-1025-4-C/results/953597375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:26","STORET",7,NA,2021-10-25 17:15:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4928541-1025-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-25,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597378",NA,"as N","Nitrogen","Dissolved","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4928541-1025-4-C/results/953597378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:26","STORET",7,NA,2021-10-25 17:15:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928541-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-16,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597401",NA,"as N","Nitrogen","Total","0.304","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928541-1116-4-C/results/953597401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:28","STORET",7,NA,2021-11-16 17:05:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.304,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4928541-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-16,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597404",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4928541-1116-4-C/results/953597404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:28","STORET",7,NA,2021-11-16 17:05:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928541-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597411",NA,"as N","Nitrogen","Total","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928541-1214-4-C/results/953597411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:28","STORET",7,NA,2021-12-14 16:20:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4928541-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597414",NA,"as N","Nitrogen","Dissolved","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4928541-1214-4-C/results/953597414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:28","STORET",7,NA,2021-12-14 16:20:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4928541-0111-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-11,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597437",NA,"as N","Nitrogen","Total","0.504","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928541-0111-4-C/results/953597437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:29","STORET",7,NA,2022-01-11 16:45:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.504,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4928541-0111-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-11,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597440",NA,"as N","Nitrogen","Dissolved","0.492","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4928541-0111-4-C/results/953597440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:29","STORET",7,NA,2022-01-11 16:45:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.492,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928541-0208-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-08,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597447",NA,"as N","Nitrogen","Total","0.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928541-0208-4-C/results/953597447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:29","STORET",7,NA,2022-02-08 16:20:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4928541-0208-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-08,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597450",NA,"as N","Nitrogen","Dissolved","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4928541-0208-4-C/results/953597450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:29","STORET",7,NA,2022-02-08 16:20:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928541-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-08,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597473",NA,"as N","Nitrogen","Total","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928541-0308-4-C/results/953597473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:31","STORET",7,NA,2022-03-08 16:20:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4928541-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-08,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597476",NA,"as N","Nitrogen","Dissolved","0.849","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4928541-0308-4-C/results/953597476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:31","STORET",7,NA,2022-03-08 16:20:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.849,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929010-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597483",NA,"as N","Nitrogen","Total","0.16","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929010-1025-4-C/results/953597483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:32","STORET",7,NA,2021-10-25 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.16,"MG/L","Numeric","Pass","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929010-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597486",NA,"as N","Nitrogen","Dissolved","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929010-1025-4-C/results/953597486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:32","STORET",7,NA,2021-10-25 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929010-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597509",NA,"as N","Nitrogen","Total","0.098","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929010-1116-4-C/results/953597509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:33","STORET",7,NA,2021-11-16 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.098,"MG/L","Numeric","Pass","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929010-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597512",NA,"as N","Nitrogen","Dissolved","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929010-1116-4-C/results/953597512/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:33","STORET",7,NA,2021-11-16 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929010-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597520",NA,"as N","Nitrogen","Total","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929010-1214-4-C/results/953597520/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:34","STORET",7,NA,2021-12-14 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929010-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597523",NA,"as N","Nitrogen","Dissolved","0.692","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929010-1214-4-C/results/953597523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:34","STORET",7,NA,2021-12-14 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.692,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929010-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597546",NA,"as N","Nitrogen","Total","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929010-0308-4-C/results/953597546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:35","STORET",7,NA,2022-03-08 16:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929010-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597549",NA,"as N","Nitrogen","Dissolved","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929010-0308-4-C/results/953597549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:35","STORET",7,NA,2022-03-08 16:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929100-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597556",NA,"as N","Nitrogen","Total","0.133","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929100-1025-4-C/results/953597556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:36","STORET",7,NA,2021-10-25 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.133,"MG/L","Numeric","Pass","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929100-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597559",NA,"as N","Nitrogen","Dissolved","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929100-1025-4-C/results/953597559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:36","STORET",7,NA,2021-10-25 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929100-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597582",NA,"as N","Nitrogen","Total","0.135","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929100-1116-4-C/results/953597582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:38","STORET",7,NA,2021-11-16 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.135,"MG/L","Numeric","Pass","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929100-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597585",NA,"as N","Nitrogen","Dissolved","0.651","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929100-1116-4-C/results/953597585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:38","STORET",7,NA,2021-11-16 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.651,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929100-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597592",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929100-1214-4-C/results/953597592/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:38","STORET",7,NA,2021-12-14 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929100-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597595",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929100-1214-4-C/results/953597595/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:38","STORET",7,NA,2021-12-14 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929100-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597618",NA,"as N","Nitrogen","Total","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929100-0308-4-C/results/953597618/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:40","STORET",7,NA,2022-03-08 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929100-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597621",NA,"as N","Nitrogen","Dissolved","0.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929100-0308-4-C/results/953597621/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:40","STORET",7,NA,2022-03-08 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929200-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597628",NA,"as N","Nitrogen","Total","0.09","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929200-1025-4-C/results/953597628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:40","STORET",7,NA,2021-10-25 20:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.09,"MG/L","Numeric","Pass","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929200-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597631",NA,"as N","Nitrogen","Dissolved","0.09","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929200-1025-4-C/results/953597631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:40","STORET",7,NA,2021-10-25 20:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.09,"MG/L","Numeric","Pass","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929200-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597654","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929200-1116-4-C/results/953597654/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:41","STORET",7,NA,2021-11-16 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929200-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597657",NA,"as N","Nitrogen","Dissolved","0.097","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929200-1116-4-C/results/953597657/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:41","STORET",7,NA,2021-11-16 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.097,"MG/L","Numeric","Pass","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929200-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597664",NA,"as N","Nitrogen","Total","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929200-1214-4-C/results/953597664/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:41","STORET",7,NA,2021-12-14 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929200-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597667",NA,"as N","Nitrogen","Dissolved","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929200-1214-4-C/results/953597667/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:41","STORET",7,NA,2021-12-14 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4929200-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597690",NA,"as N","Nitrogen","Total","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929200-0111-4-C/results/953597690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:42","STORET",7,NA,2022-01-11 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4929200-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597693",NA,"as N","Nitrogen","Dissolved","0.576","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929200-0111-4-C/results/953597693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:42","STORET",7,NA,2022-01-11 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.576,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4929200-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597700",NA,"as N","Nitrogen","Total","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929200-0208-4-C/results/953597700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:43","STORET",7,NA,2022-02-08 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4929200-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597703",NA,"as N","Nitrogen","Dissolved","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929200-0208-4-C/results/953597703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:43","STORET",7,NA,2022-02-08 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929200-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597726","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929200-0308-4-C/results/953597726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:44","STORET",7,NA,2022-03-08 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"9999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929200-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597729",NA,"as N","Nitrogen","Dissolved","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929200-0308-4-C/results/953597729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:44","STORET",7,NA,2022-03-08 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929201-1025-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-25,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597736",NA,"as N","Nitrogen","Total","0.144","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929201-1025-4-C/results/953597736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:45","STORET",7,NA,2021-10-25 20:30:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.144,"MG/L","Numeric","Pass","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929201-1025-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-25,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597739",NA,"as N","Nitrogen","Dissolved","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929201-1025-4-C/results/953597739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:45","STORET",7,NA,2021-10-25 20:30:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929201-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-16,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597762","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929201-1116-4-C/results/953597762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:46","STORET",7,NA,2021-11-16 19:25:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929201-1116-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-16,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597765","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929201-1116-4-C/results/953597765/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:46","STORET",7,NA,2021-11-16 19:25:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929201-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597772",NA,"as N","Nitrogen","Total","0.205","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929201-1214-4-C/results/953597772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:46","STORET",7,NA,2021-12-14 17:45:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.205,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929201-1214-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-14,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597775",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929201-1214-4-C/results/953597775/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:46","STORET",7,NA,2021-12-14 17:45:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4929201-0111-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-11,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597798",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929201-0111-4-C/results/953597798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:47","STORET",7,NA,2022-01-11 18:30:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4929201-0111-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-11,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597801",NA,"as N","Nitrogen","Dissolved","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929201-0111-4-C/results/953597801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:47","STORET",7,NA,2022-01-11 18:30:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4929201-0208-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-08,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597808","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929201-0208-4-C/results/953597808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:47","STORET",7,NA,2022-02-08 17:40:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4929201-0208-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-08,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597811","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929201-0208-4-C/results/953597811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:47","STORET",7,NA,2022-02-08 17:40:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929201-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-08,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597834","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929201-0308-4-C/results/953597834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:48","STORET",7,NA,2022-03-08 18:15:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929201-0308-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-08,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597837","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929201-0308-4-C/results/953597837/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:48","STORET",7,NA,2022-03-08 18:15:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929397-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597844",NA,"as N","Nitrogen","Total","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929397-1025-4-C/results/953597844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:49","STORET",7,NA,2021-10-25 22:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929397-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"15:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597847",NA,"as N","Nitrogen","Dissolved","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929397-1025-4-C/results/953597847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:49","STORET",7,NA,2021-10-25 22:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929397-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597870",NA,"as N","Nitrogen","Total","0.124","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929397-1116-4-C/results/953597870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:50","STORET",7,NA,2021-11-16 21:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.124,"MG/L","Numeric","Pass","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929397-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597873",NA,"as N","Nitrogen","Dissolved","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929397-1116-4-C/results/953597873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:50","STORET",7,NA,2021-11-16 21:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929403-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597881",NA,"as N","Nitrogen","Total","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929403-1025-4-C/results/953597881/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:50","STORET",7,NA,2021-10-25 22:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929403-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597884",NA,"as N","Nitrogen","Dissolved","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929403-1025-4-C/results/953597884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:51","STORET",7,NA,2021-10-25 22:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929403-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597907",NA,"as N","Nitrogen","Total","0.132","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929403-1116-4-C/results/953597907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:51","STORET",7,NA,2021-11-16 21:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.132,"MG/L","Numeric","Pass","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929403-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597910",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929403-1116-4-C/results/953597910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:51","STORET",7,NA,2021-11-16 21:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929490-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597918",NA,"as N","Nitrogen","Total","0.108","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929490-1025-4-C/results/953597918/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:52","STORET",7,NA,2021-10-25 23:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.108,"MG/L","Numeric","Pass","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929490-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597921",NA,"as N","Nitrogen","Dissolved","0.141","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929490-1025-4-C/results/953597921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:52","STORET",7,NA,2021-10-25 23:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.141,"MG/L","Numeric","Pass","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929490-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597944",NA,"as N","Nitrogen","Total","0.089","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929490-1116-4-C/results/953597944/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:53","STORET",7,NA,2021-11-16 19:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.089,"MG/L","Numeric","Pass","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929490-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597947",NA,"as N","Nitrogen","Dissolved","0.133","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929490-1116-4-C/results/953597947/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:53","STORET",7,NA,2021-11-16 19:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.133,"MG/L","Numeric","Pass","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929490-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597955",NA,"as N","Nitrogen","Total","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929490-1214-4-C/results/953597955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:54","STORET",7,NA,2021-12-14 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929490-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597958",NA,"as N","Nitrogen","Dissolved","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929490-1214-4-C/results/953597958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:54","STORET",7,NA,2021-12-14 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4929490-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597981",NA,"as N","Nitrogen","Total","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929490-0111-4-C/results/953597981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:55","STORET",7,NA,2022-01-11 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4929490-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597984",NA,"as N","Nitrogen","Dissolved","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929490-0111-4-C/results/953597984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:55","STORET",7,NA,2022-01-11 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929590-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597992",NA,"as N","Nitrogen","Total","0.123","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929590-1025-4-C/results/953597992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:56","STORET",7,NA,2021-10-25 21:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.123,"MG/L","Numeric","Pass","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211018-4929590-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953597995",NA,"as N","Nitrogen","Dissolved","0.137","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211018-4929590-1025-4-C/results/953597995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:56","STORET",7,NA,2021-10-25 21:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.137,"MG/L","Numeric","Pass","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929590-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598018","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929590-1116-4-C/results/953598018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:57","STORET",7,NA,2021-11-16 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211115-4929590-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598021",NA,"as N","Nitrogen","Dissolved","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211115-4929590-1116-4-C/results/953598021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:57","STORET",7,NA,2021-11-16 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI211213-4929590-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598027",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI211213-4929590-1214-4-C/results/953598027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:57","STORET",7,NA,2021-12-14 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4929590-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598050",NA,"as N","Nitrogen","Total","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929590-0111-4-C/results/953598050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:58","STORET",7,NA,2022-01-11 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220110-4929590-0111-4-C","Sample-Routine","Water",NA,2022-01-11,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598053",NA,"as N","Nitrogen","Dissolved","0.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220110-4929590-0111-4-C/results/953598053/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:58","STORET",7,NA,2022-01-11 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4929590-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598060",NA,"as N","Nitrogen","Total","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929590-0208-4-C/results/953598060/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:59","STORET",7,NA,2022-02-08 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220207-4929590-0208-4-C","Sample-Routine","Water",NA,2022-02-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598063",NA,"as N","Nitrogen","Dissolved","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220207-4929590-0208-4-C/results/953598063/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:55:59","STORET",7,NA,2022-02-08 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929590-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598086",NA,"as N","Nitrogen","Total","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929590-0308-4-C/results/953598086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:00","STORET",7,NA,2022-03-08 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220307-4929590-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598089",NA,"as N","Nitrogen","Dissolved","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220307-4929590-0308-4-C/results/953598089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:01","STORET",7,NA,2022-03-08 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4930007-1007-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-07,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598099","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4930007-1007-4-C/results/953598099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:02","STORET",7,NA,2021-10-07 15:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4930007-1007-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-07,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598103","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4930007-1007-4-C/results/953598103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:02","STORET",7,NA,2021-10-07 15:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4930009-1007-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-07,"08:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598130","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4930009-1007-4-C/results/953598130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:03","STORET",7,NA,2021-10-07 15:35:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211004-4930009-1007-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-07,"08:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598134","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211004-4930009-1007-4-C/results/953598134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:03","STORET",7,NA,2021-10-07 15:35:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4930010-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598144",NA,"as N","Nitrogen","Total","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4930010-1020-4-C/results/953598144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:03","STORET",7,NA,2021-10-20 21:30:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4930010-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598147",NA,"as N","Nitrogen","Dissolved","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4930010-1020-4-C/results/953598147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:04","STORET",7,NA,2021-10-20 21:30:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4930010-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598177",NA,"as N","Nitrogen","Total","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4930010-0322-4-C/results/953598177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:04","STORET",7,NA,2022-03-22 19:50:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4930010-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598180",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4930010-0322-4-C/results/953598180/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:05","STORET",7,NA,2022-03-22 19:50:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY211117-4930017-1118-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4930017","EQUIPMENT BLANK-NFS Ashley",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598206","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4930017-1118-4-C/results/953598206/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:05","STORET",7,NA,2021-11-18 18:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY211117-4930017-1118-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4930017","EQUIPMENT BLANK-NFS Ashley",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598209","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4930017-1118-4-C/results/953598209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:05","STORET",7,NA,2021-11-18 18:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4930150-1022-4-C","Sample-Routine","Water",NA,2021-10-22,"13:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598235",NA,"as N","Nitrogen","Total","0.489","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4930150-1022-4-C/results/953598235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:06","STORET",7,NA,2021-10-22 20:46:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.489,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4930150-1022-4-C","Sample-Routine","Water",NA,2021-10-22,"13:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598238",NA,"as N","Nitrogen","Dissolved","0.463","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4930150-1022-4-C/results/953598238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:06","STORET",7,NA,2021-10-22 20:46:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.463,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4930150-0321-4-C","Sample-Routine","Water",NA,2022-03-21,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598268",NA,"as N","Nitrogen","Total","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4930150-0321-4-C/results/953598268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:07","STORET",7,NA,2022-03-21 21:05:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4930150-0321-4-C","Sample-Routine","Water",NA,2022-03-21,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598271",NA,"as N","Nitrogen","Dissolved","0.863","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4930150-0321-4-C/results/953598271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:07","STORET",7,NA,2022-03-21 21:05:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.863,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933102-1004-4-C","Sample-Routine","Water",NA,2021-10-04,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933102","Paradise Creek 0.5km above USFS road 492 crossing near Whiterocks CG",NA,NA,NA,NA,"40.6193100000","-109.9344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598299",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933102-1004-4-C/results/953598299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:08","STORET",7,NA,2021-10-04 19:15:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.6193100000","-109.9344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",40.61931,-109.93448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933102-1004-4-C","Sample-Routine","Water",NA,2021-10-04,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933102","Paradise Creek 0.5km above USFS road 492 crossing near Whiterocks CG",NA,NA,NA,NA,"40.6193100000","-109.9344800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598302",NA,"as N","Nitrogen","Dissolved","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933102-1004-4-C/results/953598302/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:08","STORET",7,NA,2021-10-04 19:15:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.6193100000","-109.9344800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",40.61931,-109.93448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933402-1005-4-C","Sample-Routine","Water",NA,2021-10-05,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933402","Unamed tributary to Little Brush Creek 550 meters bl FS Road 022 bl Brush Park",NA,NA,NA,NA,"40.7719200000","-109.5532200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598328",NA,"as N","Nitrogen","Total","0.116","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933402-1005-4-C/results/953598328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:09","STORET",7,NA,2021-10-05 16:00:00,NA,"River/Stream",NA,"14060002",NA,NA,NA,NA,"40.7719200000","-109.5532200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.116,"MG/L","Numeric","Pass","Uncensored",40.77192,-109.55322,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933402-1005-4-C","Sample-Routine","Water",NA,2021-10-05,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933402","Unamed tributary to Little Brush Creek 550 meters bl FS Road 022 bl Brush Park",NA,NA,NA,NA,"40.7719200000","-109.5532200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598331",NA,"as N","Nitrogen","Dissolved","0.119","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933402-1005-4-C/results/953598331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:09","STORET",7,NA,2021-10-05 16:00:00,NA,"River/Stream",NA,"14060002",NA,NA,NA,NA,"40.7719200000","-109.5532200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.119,"MG/L","Numeric","Pass","Uncensored",40.77192,-109.55322,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933452-1006-4-C","Sample-Routine","Water",NA,2021-10-06,"11:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933452","Steel Creek 0.9 mile ab FS road 073 xing and 1.1 mile ab West Fork Smiths Fork",NA,NA,NA,NA,"40.9510300000","-110.4962200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598357",NA,"as N","Nitrogen","Total","0.177","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933452-1006-4-C/results/953598357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:09","STORET",7,NA,2021-10-06 18:37:00,NA,"River/Stream",NA,"14040107",NA,NA,NA,NA,"40.9510300000","-110.4962200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.177,"MG/L","Numeric","Pass","Uncensored",40.95103,-110.49622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933452-1006-4-C","Sample-Routine","Water",NA,2021-10-06,"11:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933452","Steel Creek 0.9 mile ab FS road 073 xing and 1.1 mile ab West Fork Smiths Fork",NA,NA,NA,NA,"40.9510300000","-110.4962200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598360",NA,"as N","Nitrogen","Dissolved","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933452-1006-4-C/results/953598360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:09","STORET",7,NA,2021-10-06 18:37:00,NA,"River/Stream",NA,"14040107",NA,NA,NA,NA,"40.9510300000","-110.4962200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",40.95103,-110.49622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933512-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"12:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933512","Corner Canyon 0.1 mile ab Haley Canyon Rd and bl First Water Canyon confluence",NA,NA,NA,NA,"39.5834400000","-111.0512200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598382","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933512-1018-4-C/results/953598382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:10","STORET",7,NA,2021-10-18 19:27:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.5834400000","-111.0512200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",39.58344,-111.05122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4933512-1018-4-C","Sample-Routine","Water",NA,2021-10-18,"12:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4933512","Corner Canyon 0.1 mile ab Haley Canyon Rd and bl First Water Canyon confluence",NA,NA,NA,NA,"39.5834400000","-111.0512200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598385",NA,"as N","Nitrogen","Dissolved","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4933512-1018-4-C/results/953598385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:10","STORET",7,NA,2021-10-18 19:27:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.5834400000","-111.0512200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",39.58344,-111.05122,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY211117-4935450-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"16:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935450","ROCK CREEK @ USFS BNDRY",NA,NA,NA,NA,"40.5040300000","-110.5811100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598408",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935450-1117-4-C/results/953598408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:11","STORET",7,NA,2021-11-17 23:20:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5040300000","-110.5811100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",40.50403,-110.58111,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY211117-4935860-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935860","Lake Fork River at Fisher Ranch",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598430","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935860-1117-4-C/results/953598430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:11","STORET",7,NA,2021-11-17 22:00:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY211117-4935860-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935860","Lake Fork River at Fisher Ranch",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598433",NA,"as N","Nitrogen","Dissolved","0.084","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935860-1117-4-C/results/953598433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:12","STORET",7,NA,2021-11-17 22:00:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.084,"MG/L","Numeric","Pass","Uncensored",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY211117-4935861-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935861","Lake Fork River at Fisher Ranch Replicate of 4935860",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598455","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935861-1117-4-C/results/953598455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:13","STORET",7,NA,2021-11-17 22:10:00,NA,"River/Stream","Replicate of 4935860","14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY211117-4935861-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935861","Lake Fork River at Fisher Ranch Replicate of 4935860",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598458","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935861-1117-4-C/results/953598458/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:13","STORET",7,NA,2021-11-17 22:10:00,NA,"River/Stream","Replicate of 4935860","14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY211117-4935970-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935970","LAKE FK R AB MOON LAKE",NA,NA,NA,NA,"40.6032800000","-110.5201600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598480",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935970-1117-4-C/results/953598480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:15","STORET",7,NA,2021-11-17 19:20:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.6032800000","-110.5201600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",40.60328,-110.52016,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY211117-4935970-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935970","LAKE FK R AB MOON LAKE",NA,NA,NA,NA,"40.6032800000","-110.5201600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598483",NA,"as N","Nitrogen","Dissolved","0.295","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY211117-4935970-1117-4-C/results/953598483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:15","STORET",7,NA,2021-11-17 19:20:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.6032800000","-110.5201600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.295,"MG/L","Numeric","Not Reviewed","Uncensored",40.60328,-110.52016,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937010-1014-4-C","Sample-Routine","Water",NA,2021-10-14,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937010","Ouray Park Canal at Ouray-Randlett Rd Xing",NA,NA,NA,NA,"40.2250500000","-109.7029600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598509",NA,"as N","Nitrogen","Total","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937010-1014-4-C/results/953598509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:17","STORET",7,NA,2021-10-14 17:15:00,NA,"Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.2250500000","-109.7029600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",40.22505,-109.70296,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937010-1014-4-C","Sample-Routine","Water",NA,2021-10-14,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937010","Ouray Park Canal at Ouray-Randlett Rd Xing",NA,NA,NA,NA,"40.2250500000","-109.7029600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598513",NA,"as N","Nitrogen","Dissolved","0.572","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937010-1014-4-C/results/953598513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:17","STORET",7,NA,2021-10-14 17:15:00,NA,"Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.2250500000","-109.7029600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.572,"MG/L","Numeric","Not Reviewed","Uncensored",40.22505,-109.70296,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937120-1014-4-C","Sample-Routine","Water",NA,2021-10-14,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937120","Ouray Park Canal ab Pelican Lake at 7000 S Xing",NA,NA,NA,NA,"40.2032900000","-109.7029200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598540",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937120-1014-4-C/results/953598540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:18","STORET",7,NA,2021-10-14 17:20:00,NA,"Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.2032900000","-109.7029200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.20329,-109.70292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937120-1014-4-C","Sample-Routine","Water",NA,2021-10-14,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937120","Ouray Park Canal ab Pelican Lake at 7000 S Xing",NA,NA,NA,NA,"40.2032900000","-109.7029200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598544",NA,"as N","Nitrogen","Dissolved","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937120-1014-4-C/results/953598544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:18","STORET",7,NA,2021-10-14 17:20:00,NA,"Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.2032900000","-109.7029200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.20329,-109.70292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937121-1014-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-14,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937121","Ouray Park Canal ab Pelican Lake at 7000 S Xing Replicate of 4937120",NA,NA,NA,NA,"40.2032900000","-109.7029200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598571",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937121-1014-4-C/results/953598571/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:20","STORET",7,NA,2021-10-14 17:25:00,NA,"Canal Irrigation","Replicate of 4937120","14060001",NA,NA,NA,NA,"40.2032900000","-109.7029200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.20329,-109.70292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937121-1014-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-14,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937121","Ouray Park Canal ab Pelican Lake at 7000 S Xing Replicate of 4937120",NA,NA,NA,NA,"40.2032900000","-109.7029200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598575",NA,"as N","Nitrogen","Dissolved","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937121-1014-4-C/results/953598575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:20","STORET",7,NA,2021-10-14 17:25:00,NA,"Canal Irrigation","Replicate of 4937120","14060001",NA,NA,NA,NA,"40.2032900000","-109.7029200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.20329,-109.70292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937125-1014-4-C","Sample-Routine","Water",NA,2021-10-14,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937125","Ouray Park Canal at Mouth ab Pelican Lake",NA,NA,NA,NA,"40.1958800000","-109.6969900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598602",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937125-1014-4-C/results/953598602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:22","STORET",7,NA,2021-10-14 17:40:00,NA,"Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.1958800000","-109.6969900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.19588,-109.69699,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937125-1014-4-C","Sample-Routine","Water",NA,2021-10-14,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937125","Ouray Park Canal at Mouth ab Pelican Lake",NA,NA,NA,NA,"40.1958800000","-109.6969900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598606",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937125-1014-4-C/results/953598606/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:22","STORET",7,NA,2021-10-14 17:40:00,NA,"Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.1958800000","-109.6969900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.19588,-109.69699,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937130-1014-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598633",NA,"as N","Nitrogen","Total","0.778","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937130-1014-2-C/results/953598633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:24","STORET",7,NA,2021-10-14 18:30:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.778,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937130-1014-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-14,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598637",NA,"as N","Nitrogen","Dissolved","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937130-1014-2-C/results/953598637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:24","STORET",7,NA,2021-10-14 18:30:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937140-1014-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-14,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598664",NA,"as N","Nitrogen","Total","0.742","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937140-1014-2-C/results/953598664/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:26","STORET",7,NA,2021-10-14 18:55:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.742,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937140-1014-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-14,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598668",NA,"as N","Nitrogen","Dissolved","0.834","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937140-1014-2-C/results/953598668/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:26","STORET",7,NA,2021-10-14 18:55:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.834,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937180-1014-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-14,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598678",NA,"as N","Nitrogen","Total","0.757","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937180-1014-2-C/results/953598678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:26","STORET",7,NA,2021-10-14 18:35:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.757,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-4937180-1014-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-14,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598682",NA,"as N","Nitrogen","Dissolved","0.825","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-4937180-1014-2-C/results/953598682/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:26","STORET",7,NA,2021-10-14 18:35:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.825,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938513-1019-4-C","Quality Control Sample-Field Blank","Water",NA,2021-10-19,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938513","Bureau of Reclamation Flaming Gorge QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598690",NA,"as N","Nitrogen","Total","0.086","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938513-1019-4-C/results/953598690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:27","STORET",7,NA,2021-10-19 22:30:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.086,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938513-1019-4-C","Quality Control Sample-Field Blank","Water",NA,2021-10-19,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938513","Bureau of Reclamation Flaming Gorge QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598694",NA,"as N","Nitrogen","Dissolved","0.141","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938513-1019-4-C/results/953598694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:27","STORET",7,NA,2021-10-19 22:30:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.141,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938550-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-19,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938550","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP",NA,NA,NA,NA,"40.9171800000","-109.4470900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598721",NA,"as N","Nitrogen","Total","0.298","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938550-1019-2-C/results/953598721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:28","STORET",7,NA,2021-10-19 22:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.298,"MG/L","Numeric","Not Reviewed","Uncensored",40.91718,-109.44709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938550-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-19,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938550","FLAMING GORGE RES NR CEDAR SPRINGS BOAT RAMP",NA,NA,NA,NA,"40.9171800000","-109.4470900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598725",NA,"as N","Nitrogen","Dissolved","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938550-1019-2-C/results/953598725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:29","STORET",7,NA,2021-10-19 22:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9171800000","-109.4470900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",40.91718,-109.44709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938570-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938570","FLAMING GORGE RES NR HIDEOUT CMPGRD",NA,NA,NA,NA,"40.9488500000","-109.6409700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598733",NA,"as N","Nitrogen","Total","0.303","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938570-1019-2-C/results/953598733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:29","STORET",7,NA,2021-10-19 20:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9488500000","-109.6409700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.303,"MG/L","Numeric","Not Reviewed","Uncensored",40.94885,-109.64097,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938570-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938570","FLAMING GORGE RES NR HIDEOUT CMPGRD",NA,NA,NA,NA,"40.9488500000","-109.6409700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598737",NA,"as N","Nitrogen","Dissolved","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938570-1019-2-C/results/953598737/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:29","STORET",7,NA,2021-10-19 20:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9488500000","-109.6409700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",40.94885,-109.64097,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938573-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938573","FLAMING GORGE RES SHEEP CK BAY",NA,NA,NA,NA,"40.9249600000","-109.6757000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598745",NA,"as N","Nitrogen","Total","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938573-1019-2-C/results/953598745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:30","STORET",7,NA,2021-10-19 20:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9249600000","-109.6757000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",40.92496,-109.6757,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938573-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938573","FLAMING GORGE RES SHEEP CK BAY",NA,NA,NA,NA,"40.9249600000","-109.6757000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598749",NA,"as N","Nitrogen","Dissolved","0.236","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938573-1019-2-C/results/953598749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:30","STORET",7,NA,2021-10-19 20:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9249600000","-109.6757000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.236,"MG/L","Numeric","Not Reviewed","Uncensored",40.92496,-109.6757,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938600-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-19,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938600","FLAMING GORGE RES ANTELOPE FLAT",NA,NA,NA,NA,"40.9894000000","-109.5745900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598757",NA,"as N","Nitrogen","Total","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938600-1019-2-C/results/953598757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:31","STORET",7,NA,2021-10-19 16:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9894000000","-109.5745900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",40.9894,-109.57459,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938600-1019-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-19,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938600","FLAMING GORGE RES ANTELOPE FLAT",NA,NA,NA,NA,"40.9894000000","-109.5745900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598761",NA,"as N","Nitrogen","Dissolved","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938600-1019-2-C/results/953598761/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:31","STORET",7,NA,2021-10-19 16:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.9894000000","-109.5745900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",40.9894,-109.57459,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938847-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938847","Sheep Creek at inlet to Flaming Gorge Reservoir",NA,NA,NA,NA,"40.9207500000","-109.6893100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598891",NA,"as N","Nitrogen","Total","0.298","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938847-1019-4-C/results/953598891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:37","STORET",7,NA,2021-10-19 21:00:00,NA,"River/Stream",NA,"14040106",NA,NA,NA,NA,"40.9207500000","-109.6893100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.298,"MG/L","Numeric","Not Reviewed","Uncensored",40.92075,-109.68931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORFG211018-4938847-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4938847","Sheep Creek at inlet to Flaming Gorge Reservoir",NA,NA,NA,NA,"40.9207500000","-109.6893100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598895",NA,"as N","Nitrogen","Dissolved","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORFG211018-4938847-1019-4-C/results/953598895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:37","STORET",7,NA,2021-10-19 21:00:00,NA,"River/Stream",NA,"14040106",NA,NA,NA,NA,"40.9207500000","-109.6893100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",9,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.92075,-109.68931,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4950800-1005-4-C","Sample-Routine","Water",NA,2021-10-05,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598924","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4950800-1005-4-C/results/953598924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:38","STORET",7,NA,2021-10-05 18:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4950800-1005-4-C","Sample-Routine","Water",NA,2021-10-05,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598927","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4950800-1005-4-C/results/953598927/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:39","STORET",7,NA,2021-10-05 18:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4950800-1118-4-C","Sample-Routine","Water",NA,2021-11-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598956",NA,"as N","Nitrogen","Total","0.105","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4950800-1118-4-C/results/953598956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:40","STORET",7,NA,2021-11-18 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.105,"MG/L","Numeric","Pass","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4950800-1118-4-C","Sample-Routine","Water",NA,2021-11-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598959","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4950800-1118-4-C/results/953598959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:40","STORET",7,NA,2021-11-18 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4950800-0316-4-C","Sample-Routine","Water",NA,2022-03-16,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598973",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4950800-0316-4-C/results/953598973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:41","STORET",7,NA,2022-03-16 20:05:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4950800-0316-4-C","Sample-Routine","Water",NA,2022-03-16,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598976",NA,"as N","Nitrogen","Dissolved","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4950800-0316-4-C/results/953598976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:41","STORET",7,NA,2022-03-16 20:05:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4950920-1006-4-C","Sample-Routine","Water",NA,2021-10-06,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598990",NA,"as N","Nitrogen","Total","0.689","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4950920-1006-4-C/results/953598990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:42","STORET",7,NA,2021-10-06 17:10:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.689,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4950920-1006-4-C","Sample-Routine","Water",NA,2021-10-06,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953598993",NA,"as N","Nitrogen","Dissolved","0.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4950920-1006-4-C/results/953598993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:43","STORET",7,NA,2021-10-06 17:10:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.67,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4950920-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599023",NA,"as N","Nitrogen","Total","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4950920-1117-4-C/results/953599023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:45","STORET",7,NA,2021-11-17 22:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4950920-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599026",NA,"as N","Nitrogen","Dissolved","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4950920-1117-4-C/results/953599026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:45","STORET",7,NA,2021-11-17 22:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4950920-0317-4-C","Sample-Routine","Water",NA,2022-03-17,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599040",NA,"as N","Nitrogen","Total","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4950920-0317-4-C/results/953599040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:46","STORET",7,NA,2022-03-17 17:55:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4950920-0317-4-C","Sample-Routine","Water",NA,2022-03-17,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599043",NA,"as N","Nitrogen","Dissolved","0.469","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4950920-0317-4-C/results/953599043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:46","STORET",7,NA,2022-03-17 17:55:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.469,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4951265-1004-4-C","Sample-Routine","Water",NA,2021-10-04,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599057",NA,"as N","Nitrogen","Total","0.149","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951265-1004-4-C/results/953599057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:46","STORET",7,NA,2021-10-04 21:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.149,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4951265-1004-4-C","Sample-Routine","Water",NA,2021-10-04,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599060","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951265-1004-4-C/results/953599060/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:46","STORET",7,NA,2021-10-04 21:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4951265-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599090","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951265-1116-4-C/results/953599090/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:47","STORET",7,NA,2021-11-16 20:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4951265-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599093","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951265-1116-4-C/results/953599093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:47","STORET",7,NA,2021-11-16 20:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4951266-1004-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-04,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599107",NA,"as N","Nitrogen","Total","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951266-1004-4-C/results/953599107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:48","STORET",7,NA,2021-10-04 21:05:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4951266-1004-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-04,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599110",NA,"as N","Nitrogen","Dissolved","0.093","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951266-1004-4-C/results/953599110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:48","STORET",7,NA,2021-10-04 21:05:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.093,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-4951766-1011-4-C","Quality Control Sample-Field Blank","Water",NA,2021-10-11,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599136",NA,"as N","Nitrogen","Total","0.165","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4951766-1011-4-C/results/953599136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:50","STORET",7,NA,2021-10-11 18:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.165,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-4951766-1011-4-C","Quality Control Sample-Field Blank","Water",NA,2021-10-11,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599139",NA,"as N","Nitrogen","Dissolved","0.145","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4951766-1011-4-C/results/953599139/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:50","STORET",7,NA,2021-10-11 18:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.145,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-4951850-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"12:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951850","PARIA R AT US89 XING",NA,NA,NA,NA,"37.1074900000","-111.9068500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599162",NA,"as N","Nitrogen","Total","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met. Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4951850-1010-4-C/results/953599162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:51","STORET",7,NA,2021-10-10 19:43:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.45,"MG/L","Numeric","Not Reviewed","Uncensored",37.10749,-111.90685,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4951855-1002-4-C","Sample-Routine","Water",NA,2021-10-02,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599172","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951855-1002-4-C/results/953599172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:52","STORET",7,NA,2021-10-02 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4951855-1002-4-C","Sample-Routine","Water",NA,2021-10-02,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599175","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951855-1002-4-C/results/953599175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:52","STORET",7,NA,2021-10-02 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4951855-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599204",NA,"as N","Nitrogen","Total","0.11","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951855-1102-4-C/results/953599204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:53","STORET",7,NA,2021-11-02 21:15:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.11,"MG/L","Numeric","Pass","Uncensored",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4951855-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599207","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951855-1102-4-C/results/953599207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:53","STORET",7,NA,2021-11-02 21:15:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4951855-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599221","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4951855-0315-4-C/results/953599221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:54","STORET",7,NA,2022-03-15 19:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4951855-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599224","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4951855-0315-4-C/results/953599224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:54","STORET",7,NA,2022-03-15 19:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4951857-1002-4-C","Sample-Routine","Water",NA,2021-10-02,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599238","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951857-1002-4-C/results/953599238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:55","STORET",7,NA,2021-10-02 18:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4951857-1002-4-C","Sample-Routine","Water",NA,2021-10-02,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599241","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4951857-1002-4-C/results/953599241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:55","STORET",7,NA,2021-10-02 18:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4951857-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599270",NA,"as N","Nitrogen","Total","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951857-1102-4-C/results/953599270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:56","STORET",7,NA,2021-11-02 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4951857-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599273","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4951857-1102-4-C/results/953599273/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:56","STORET",7,NA,2021-11-02 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4952380-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599291",NA,"as N","Nitrogen","Total","0.782","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4952380-1020-4-C/results/953599291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:56","STORET",7,NA,2021-10-20 22:30:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.782,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4952380-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599294",NA,"as N","Nitrogen","Dissolved","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4952380-1020-4-C/results/953599294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:57","STORET",7,NA,2021-10-20 22:30:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4952380-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599324",NA,"as N","Nitrogen","Total","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4952380-0322-4-C/results/953599324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:58","STORET",7,NA,2022-03-22 19:10:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4952380-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599327",NA,"as N","Nitrogen","Dissolved","0.666","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4952380-0322-4-C/results/953599327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:56:58","STORET",7,NA,2022-03-22 19:10:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.666,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4952400-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599357",NA,"as N","Nitrogen","Total","0.958","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4952400-1020-4-C/results/953599357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:00","STORET",7,NA,2021-10-20 23:40:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.958,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4952400-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"16:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599360",NA,"as N","Nitrogen","Dissolved","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4952400-1020-4-C/results/953599360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:00","STORET",7,NA,2021-10-20 23:40:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.869,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4952400-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599390",NA,"as N","Nitrogen","Total","0.575","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4952400-0322-4-C/results/953599390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:02","STORET",7,NA,2022-03-22 20:05:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.575,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4952400-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599393",NA,"as N","Nitrogen","Dissolved","0.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4952400-0322-4-C/results/953599393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:02","STORET",7,NA,2022-03-22 20:05:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.88,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211022-4953060-1022-4-C","Sample-Routine","Water",NA,2021-10-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599422",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953060-1022-4-C/results/953599422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:03","STORET",7,NA,2021-10-22 18:00:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211022-4953060-1022-4-C","Sample-Routine","Water",NA,2021-10-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599425",NA,"as N","Nitrogen","Dissolved","0.173","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953060-1022-4-C/results/953599425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:04","STORET",7,NA,2021-10-22 18:00:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.173,"MG/L","Numeric","Pass","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4953060-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599454",NA,"as N","Nitrogen","Total","0.111","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953060-1130-4-C/results/953599454/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:05","STORET",7,NA,2021-11-30 21:00:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.111,"MG/L","Numeric","Pass","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4953060-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599457",NA,"as N","Nitrogen","Dissolved","0.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953060-1130-4-C/results/953599457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:06","STORET",7,NA,2021-11-30 21:00:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.5,"MG/L","Numeric","Not Reviewed","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220107-4953060-0107-4-C","Sample-Routine","Water",NA,2022-01-07,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599486",NA,"as N","Nitrogen","Total","0.809","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953060-0107-4-C/results/953599486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:08","STORET",7,NA,2022-01-07 18:30:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.809,"MG/L","Numeric","Not Reviewed","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220107-4953060-0107-4-C","Sample-Routine","Water",NA,2022-01-07,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599489",NA,"as N","Nitrogen","Dissolved","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953060-0107-4-C/results/953599489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:08","STORET",7,NA,2022-01-07 18:30:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.869,"MG/L","Numeric","Not Reviewed","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953060-0316-4-C","Sample-Routine","Water",NA,2022-03-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599518",NA,"as N","Nitrogen","Total","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953060-0316-4-C/results/953599518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:09","STORET",7,NA,2022-03-16 18:30:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953060-0316-4-C","Sample-Routine","Water",NA,2022-03-16,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599521",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953060-0316-4-C/results/953599521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:09","STORET",7,NA,2022-03-16 18:30:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4953173-1203-4-C","Sample-Routine","Water",NA,2021-12-03,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953173","FISH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.3887500000","-109.6896300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599550",NA,"as N","Nitrogen","Total","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953173-1203-4-C/results/953599550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:11","STORET",7,NA,2021-12-03 20:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3887500000","-109.6896300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",37.38875,-109.68963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4953173-1203-4-C","Sample-Routine","Water",NA,2021-12-03,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953173","FISH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.3887500000","-109.6896300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599553",NA,"as N","Nitrogen","Dissolved","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953173-1203-4-C/results/953599553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:11","STORET",7,NA,2021-12-03 20:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3887500000","-109.6896300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",37.38875,-109.68963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953173-0316-4-C","Sample-Routine","Water",NA,2022-03-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953173","FISH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.3887500000","-109.6896300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599582",NA,"as N","Nitrogen","Total","0.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953173-0316-4-C/results/953599582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:13","STORET",7,NA,2022-03-16 20:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3887500000","-109.6896300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.3,"MG/L","Numeric","Not Reviewed","Uncensored",37.38875,-109.68963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953173-0316-4-C","Sample-Routine","Water",NA,2022-03-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953173","FISH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.3887500000","-109.6896300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599585",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953173-0316-4-C/results/953599585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:13","STORET",7,NA,2022-03-16 20:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3887500000","-109.6896300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",37.38875,-109.68963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211022-4953193-1029-4-C","Sample-Routine","Water",NA,2021-10-29,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599614",NA,"as N","Nitrogen","Total","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953193-1029-4-C/results/953599614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:14","STORET",7,NA,2021-10-29 18:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211022-4953193-1029-4-C","Sample-Routine","Water",NA,2021-10-29,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599617",NA,"as N","Nitrogen","Dissolved","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953193-1029-4-C/results/953599617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:15","STORET",7,NA,2021-10-29 18:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4953193-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599646",NA,"as N","Nitrogen","Total","0.101","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953193-1117-4-C/results/953599646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:16","STORET",7,NA,2021-11-17 23:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.101,"MG/L","Numeric","Pass","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4953193-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599649",NA,"as N","Nitrogen","Dissolved","0.112","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953193-1117-4-C/results/953599649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:16","STORET",7,NA,2021-11-17 23:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.112,"MG/L","Numeric","Pass","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4953193-1203-4-C","Sample-Routine","Water",NA,2021-12-03,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599658",NA,"as N","Nitrogen","Total","0.106","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953193-1203-4-C/results/953599658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:16","STORET",7,NA,2021-12-03 17:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.106,"MG/L","Numeric","Pass","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4953193-1203-4-C","Sample-Routine","Water",NA,2021-12-03,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599661",NA,"as N","Nitrogen","Dissolved","0.216","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953193-1203-4-C/results/953599661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:16","STORET",7,NA,2021-12-03 17:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.216,"MG/L","Numeric","Not Reviewed","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220107-4953193-0120-4-C","Sample-Routine","Water",NA,2022-01-20,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599690","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953193-0120-4-C/results/953599690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:18","STORET",7,NA,2022-01-20 18:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220107-4953193-0120-4-C","Sample-Routine","Water",NA,2022-01-20,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599693","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953193-0120-4-C/results/953599693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:18","STORET",7,NA,2022-01-20 18:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953193-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599722","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953193-0302-4-C/results/953599722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:19","STORET",7,NA,2022-03-02 18:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953193-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599725","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953193-0302-4-C/results/953599725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:19","STORET",7,NA,2022-03-02 18:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211022-4953205-1029-4-C","Sample-Routine","Water",NA,2021-10-29,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599754",NA,"as N","Nitrogen","Total","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953205-1029-4-C/results/953599754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:20","STORET",7,NA,2021-10-29 18:45:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211022-4953205-1029-4-C","Sample-Routine","Water",NA,2021-10-29,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599757",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211022-4953205-1029-4-C/results/953599757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:21","STORET",7,NA,2021-10-29 18:45:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4953205-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599786",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953205-1117-4-C/results/953599786/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:22","STORET",7,NA,2021-11-17 22:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4953205-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599789",NA,"as N","Nitrogen","Dissolved","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4953205-1117-4-C/results/953599789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:22","STORET",7,NA,2021-11-17 22:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4953205-1203-4-C","Sample-Routine","Water",NA,2021-12-03,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599798",NA,"as N","Nitrogen","Total","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953205-1203-4-C/results/953599798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:22","STORET",7,NA,2021-12-03 18:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4953205-1203-4-C","Sample-Routine","Water",NA,2021-12-03,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599801",NA,"as N","Nitrogen","Dissolved","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4953205-1203-4-C/results/953599801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:23","STORET",7,NA,2021-12-03 18:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220107-4953205-0120-4-C","Sample-Routine","Water",NA,2022-01-20,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599830","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953205-0120-4-C/results/953599830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:25","STORET",7,NA,2022-01-20 19:15:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220107-4953205-0120-4-C","Sample-Routine","Water",NA,2022-01-20,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599833",NA,"as N","Nitrogen","Dissolved","0.164","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220107-4953205-0120-4-C/results/953599833/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:25","STORET",7,NA,2022-01-20 19:15:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.164,"MG/L","Numeric","Pass","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953205-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599862",NA,"as N","Nitrogen","Total","0.16","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953205-0302-4-C/results/953599862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:26","STORET",7,NA,2022-03-02 21:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.16,"MG/L","Numeric","Pass","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953205-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599865",NA,"as N","Nitrogen","Dissolved","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953205-0302-4-C/results/953599865/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:26","STORET",7,NA,2022-03-02 21:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953210-0316-4-C","Sample-Routine","Water",NA,2022-03-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953210","COMB WASH BL FISH CK",NA,NA,NA,NA,"37.3841600000","-109.6684600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599894",NA,"as N","Nitrogen","Total","0.617","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953210-0316-4-C/results/953599894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:29","STORET",7,NA,2022-03-16 21:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3841600000","-109.6684600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.617,"MG/L","Numeric","Not Reviewed","Uncensored",37.38416,-109.66846,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4953210-0316-4-C","Sample-Routine","Water",NA,2022-03-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953210","COMB WASH BL FISH CK",NA,NA,NA,NA,"37.3841600000","-109.6684600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599897",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4953210-0316-4-C/results/953599897/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:29","STORET",7,NA,2022-03-16 21:00:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.3841600000","-109.6684600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",37.38416,-109.66846,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-4953980-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"17:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599923",NA,"as N","Nitrogen","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4953980-1010-4-C/results/953599923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:31","STORET",7,NA,2021-10-11 00:40:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-4953980-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"17:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599926",NA,"as N","Nitrogen","Dissolved","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4953980-1010-4-C/results/953599926/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:31","STORET",7,NA,2021-10-11 00:40:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-4953981-1010-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-10,"17:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599949",NA,"as N","Nitrogen","Total","0.264","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4953981-1010-4-C/results/953599949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:33","STORET",7,NA,2021-10-11 00:57:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.264,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-4953981-1010-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-10,"17:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599952",NA,"as N","Nitrogen","Dissolved","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-4953981-1010-4-C/results/953599952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:33","STORET",7,NA,2021-10-11 00:57:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4954770-1001-4-C","Sample-Routine","Water",NA,2021-10-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599981",NA,"as N","Nitrogen","Total","0.193","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954770-1001-4-C/results/953599981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:35","STORET",7,NA,2021-10-01 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.193,"MG/L","Numeric","Pass","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4954770-1001-4-C","Sample-Routine","Water",NA,2021-10-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953599984",NA,"as N","Nitrogen","Dissolved","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954770-1001-4-C/results/953599984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:35","STORET",7,NA,2021-10-01 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4954770-1101-4-C","Sample-Routine","Water",NA,2021-11-01,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600014",NA,"as N","Nitrogen","Total","0.413","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954770-1101-4-C/results/953600014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:36","STORET",7,NA,2021-11-01 22:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.413,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4954770-1101-4-C","Sample-Routine","Water",NA,2021-11-01,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600017",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954770-1101-4-C/results/953600017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:36","STORET",7,NA,2021-11-01 22:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220220-4954770-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600031",NA,"as N","Nitrogen","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954770-0222-4-C/results/953600031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:36","STORET",7,NA,2022-02-22 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220220-4954770-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600034",NA,"as N","Nitrogen","Dissolved","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954770-0222-4-C/results/953600034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:36","STORET",7,NA,2022-02-22 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4954770-0314-4-C","Sample-Routine","Water",NA,2022-03-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600064",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954770-0314-4-C/results/953600064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:38","STORET",7,NA,2022-03-14 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4954770-0314-4-C","Sample-Routine","Water",NA,2022-03-14,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600067",NA,"as N","Nitrogen","Dissolved","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954770-0314-4-C/results/953600067/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:38","STORET",7,NA,2022-03-14 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4954775-1001-4-C","Sample-Routine","Water",NA,2021-10-01,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600081",NA,"as N","Nitrogen","Total","0.262","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954775-1001-4-C/results/953600081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:39","STORET",7,NA,2021-10-01 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.262,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4954775-1001-4-C","Sample-Routine","Water",NA,2021-10-01,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600084",NA,"as N","Nitrogen","Dissolved","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954775-1001-4-C/results/953600084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:39","STORET",7,NA,2021-10-01 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4954775-1101-4-C","Sample-Routine","Water",NA,2021-11-01,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600114",NA,"as N","Nitrogen","Total","0.191","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954775-1101-4-C/results/953600114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:40","STORET",7,NA,2021-11-01 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.191,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4954775-1101-4-C","Sample-Routine","Water",NA,2021-11-01,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600117",NA,"as N","Nitrogen","Dissolved","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954775-1101-4-C/results/953600117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:40","STORET",7,NA,2021-11-01 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220220-4954775-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600131",NA,"as N","Nitrogen","Total","0.344","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954775-0222-4-C/results/953600131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:41","STORET",7,NA,2022-02-22 21:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.344,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220220-4954775-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600134",NA,"as N","Nitrogen","Dissolved","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954775-0222-4-C/results/953600134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:41","STORET",7,NA,2022-02-22 21:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4954775-0314-4-C","Sample-Routine","Water",NA,2022-03-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600164",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954775-0314-4-C/results/953600164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:42","STORET",7,NA,2022-03-14 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4954775-0314-4-C","Sample-Routine","Water",NA,2022-03-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600167",NA,"as N","Nitrogen","Dissolved","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954775-0314-4-C/results/953600167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:42","STORET",7,NA,2022-03-14 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4954780-1003-4-C","Sample-Routine","Water",NA,2021-10-03,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600181",NA,"as N","Nitrogen","Total","0.111","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954780-1003-4-C/results/953600181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:43","STORET",7,NA,2021-10-03 18:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.111,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4954780-1003-4-C","Sample-Routine","Water",NA,2021-10-03,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600184","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954780-1003-4-C/results/953600184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:43","STORET",7,NA,2021-10-03 18:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4954780-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600214","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954780-1115-4-C/results/953600214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:45","STORET",7,NA,2021-11-15 21:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4954780-1115-4-C","Sample-Routine","Water",NA,2021-11-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600217",NA,"as N","Nitrogen","Dissolved","0.085","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954780-1115-4-C/results/953600217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:45","STORET",7,NA,2021-11-15 21:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.085,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220220-4954780-0220-4-C","Sample-Routine","Water",NA,2022-02-20,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600231",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954780-0220-4-C/results/953600231/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:45","STORET",7,NA,2022-02-20 22:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220220-4954780-0220-4-C","Sample-Routine","Water",NA,2022-02-20,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600234",NA,"as N","Nitrogen","Dissolved","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954780-0220-4-C/results/953600234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:45","STORET",7,NA,2022-02-20 22:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4954780-0313-4-C","Sample-Routine","Water",NA,2022-03-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600264","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954780-0313-4-C/results/953600264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:47","STORET",7,NA,2022-03-13 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4954780-0313-4-C","Sample-Routine","Water",NA,2022-03-13,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600267",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954780-0313-4-C/results/953600267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:47","STORET",7,NA,2022-03-13 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4954795-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600281",NA,"as N","Nitrogen","Total","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954795-1010-4-C/results/953600281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:47","STORET",7,NA,2021-10-10 21:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4954795-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600284",NA,"as N","Nitrogen","Dissolved","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4954795-1010-4-C/results/953600284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:47","STORET",7,NA,2021-10-10 21:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4954795-1114-4-C","Sample-Routine","Water",NA,2021-11-14,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600314","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954795-1114-4-C/results/953600314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:48","STORET",7,NA,2021-11-14 20:50:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4954795-1114-4-C","Sample-Routine","Water",NA,2021-11-14,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600317","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4954795-1114-4-C/results/953600317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:48","STORET",7,NA,2021-11-14 20:50:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220220-4954795-0220-4-C","Sample-Routine","Water",NA,2022-02-20,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600331","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954795-0220-4-C/results/953600331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:48","STORET",7,NA,2022-02-20 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220220-4954795-0220-4-C","Sample-Routine","Water",NA,2022-02-20,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600334","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220220-4954795-0220-4-C/results/953600334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:48","STORET",7,NA,2022-02-20 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4954795-0312-4-C","Sample-Routine","Water",NA,2022-03-12,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600364","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954795-0312-4-C/results/953600364/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:50","STORET",7,NA,2022-03-12 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220312-4954795-0312-4-C","Sample-Routine","Water",NA,2022-03-12,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600367","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220312-4954795-0312-4-C/results/953600367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:50","STORET",7,NA,2022-03-12 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955352-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955352","Cresent Creek 0.8 mile bl Bull Pass and Wickiop Pass Rd",NA,NA,NA,NA,"38.0732800000","-110.7466000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600379","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955352-1019-4-C/results/953600379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:50","STORET",7,NA,2021-10-19 19:00:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0732800000","-110.7466000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.07328,-110.7466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955352-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955352","Cresent Creek 0.8 mile bl Bull Pass and Wickiop Pass Rd",NA,NA,NA,NA,"38.0732800000","-110.7466000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600382","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955352-1019-4-C/results/953600382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:50","STORET",7,NA,2021-10-19 19:00:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0732800000","-110.7466000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.07328,-110.7466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955402-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955402","Fremont River at milepost 82.6 on SR 24",NA,NA,NA,NA,"38.2844200000","-111.2067300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600408",NA,"as N","Nitrogen","Total","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955402-1020-4-C/results/953600408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:51","STORET",7,NA,2021-10-20 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2844200000","-111.2067300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",38.28442,-111.20673,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4955402-1020-4-C","Sample-Routine","Water",NA,2021-10-20,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4955402","Fremont River at milepost 82.6 on SR 24",NA,NA,NA,NA,"38.2844200000","-111.2067300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600411",NA,"as N","Nitrogen","Dissolved","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4955402-1020-4-C/results/953600411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:51","STORET",7,NA,2021-10-20 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2844200000","-111.2067300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",38.28442,-111.20673,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955780-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600438","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955780-1117-4-C/results/953600438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:53","STORET",7,NA,2021-11-17 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955780-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600441","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955780-1117-4-C/results/953600441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:53","STORET",7,NA,2021-11-17 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4955780-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600470","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955780-1213-4-C/results/953600470/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:54","STORET",7,NA,2021-12-13 19:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4955780-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600473",NA,"as N","Nitrogen","Dissolved","0.088","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955780-1213-4-C/results/953600473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:54","STORET",7,NA,2021-12-13 19:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.088,"MG/L","Numeric","Pass","Uncensored",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220328-4955780-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600502","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955780-0328-4-C/results/953600502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:55","STORET",7,NA,2022-03-28 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220328-4955780-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600505",NA,"as N","Nitrogen","Dissolved","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955780-0328-4-C/results/953600505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:55","STORET",7,NA,2022-03-28 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955790-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600534","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955790-1117-4-C/results/953600534/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:57","STORET",7,NA,2021-11-17 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955790-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600537",NA,"as N","Nitrogen","Dissolved","0.087","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955790-1117-4-C/results/953600537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:57","STORET",7,NA,2021-11-17 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.087,"MG/L","Numeric","Pass","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4955790-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600566","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955790-1213-4-C/results/953600566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:58","STORET",7,NA,2021-12-13 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4955790-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600569","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955790-1213-4-C/results/953600569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:57:58","STORET",7,NA,2021-12-13 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220216-4955790-0216-4-C","Sample-Routine","Water",NA,2022-02-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600598","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955790-0216-4-C/results/953600598/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:00","STORET",7,NA,2022-02-16 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220216-4955790-0216-4-C","Sample-Routine","Water",NA,2022-02-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600601","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955790-0216-4-C/results/953600601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:00","STORET",7,NA,2022-02-16 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4955790-0301-4-C","Sample-Routine","Water",NA,2022-03-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600630","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955790-0301-4-C/results/953600630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:01","STORET",7,NA,2022-03-01 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4955790-0301-4-C","Sample-Routine","Water",NA,2022-03-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600633","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955790-0301-4-C/results/953600633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:01","STORET",7,NA,2022-03-01 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220328-4955790-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600662","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955790-0328-4-C/results/953600662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:03","STORET",7,NA,2022-03-28 22:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220328-4955790-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600665","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955790-0328-4-C/results/953600665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:03","STORET",7,NA,2022-03-28 22:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955791-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600694","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955791-1117-4-C/results/953600694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:05","STORET",7,NA,2021-11-17 21:00:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955791-1117-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-17,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600697",NA,"as N","Nitrogen","Dissolved","0.088","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955791-1117-4-C/results/953600697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:05","STORET",7,NA,2021-11-17 21:00:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.088,"MG/L","Numeric","Pass","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4955791-1213-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-13,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600726","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955791-1213-4-C/results/953600726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:06","STORET",7,NA,2021-12-13 20:30:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4955791-1213-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-13,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600729","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955791-1213-4-C/results/953600729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:06","STORET",7,NA,2021-12-13 20:30:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220216-4955791-0216-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600758","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955791-0216-4-C/results/953600758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:07","STORET",7,NA,2022-02-16 22:00:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220216-4955791-0216-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600761","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955791-0216-4-C/results/953600761/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:08","STORET",7,NA,2022-02-16 22:00:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4955791-0301-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600790","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955791-0301-4-C/results/953600790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:09","STORET",7,NA,2022-03-01 22:00:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4955791-0301-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600793","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955791-0301-4-C/results/953600793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:09","STORET",7,NA,2022-03-01 22:00:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955810-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600822",NA,"as N","Nitrogen","Total","0.1","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955810-1117-4-C/results/953600822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:10","STORET",7,NA,2021-11-17 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.1,"MG/L","Numeric","Pass","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955810-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600825",NA,"as N","Nitrogen","Dissolved","0.117","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955810-1117-4-C/results/953600825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:11","STORET",7,NA,2021-11-17 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.117,"MG/L","Numeric","Pass","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4955810-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600854","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955810-1213-4-C/results/953600854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:12","STORET",7,NA,2021-12-13 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211203-4955810-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600857",NA,"as N","Nitrogen","Dissolved","0.119","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211203-4955810-1213-4-C/results/953600857/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:12","STORET",7,NA,2021-12-13 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.119,"MG/L","Numeric","Pass","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220216-4955810-0216-4-C","Sample-Routine","Water",NA,2022-02-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600886","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955810-0216-4-C/results/953600886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:14","STORET",7,NA,2022-02-16 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220216-4955810-0216-4-C","Sample-Routine","Water",NA,2022-02-16,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600889","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955810-0216-4-C/results/953600889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:14","STORET",7,NA,2022-02-16 21:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4955810-0301-4-C","Sample-Routine","Water",NA,2022-03-01,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600918","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955810-0301-4-C/results/953600918/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:15","STORET",7,NA,2022-03-01 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220301-4955810-0301-4-C","Sample-Routine","Water",NA,2022-03-01,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600921","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220301-4955810-0301-4-C/results/953600921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:15","STORET",7,NA,2022-03-01 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220328-4955810-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600950","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955810-0328-4-C/results/953600950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:17","STORET",7,NA,2022-03-28 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220328-4955810-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600953",NA,"as N","Nitrogen","Dissolved","0.173","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955810-0328-4-C/results/953600953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:17","STORET",7,NA,2022-03-28 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.173,"MG/L","Numeric","Pass","Uncensored",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955815-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600982","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955815-1117-4-C/results/953600982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:18","STORET",7,NA,2021-11-17 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB211117-4955815-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953600985","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB211117-4955815-1117-4-C/results/953600985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:18","STORET",7,NA,2021-11-17 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220216-4955815-0216-4-C","Sample-Routine","Water",NA,2022-02-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601014","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955815-0216-4-C/results/953601014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:19","STORET",7,NA,2022-02-16 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220216-4955815-0216-4-C","Sample-Routine","Water",NA,2022-02-16,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601017","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220216-4955815-0216-4-C/results/953601017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:19","STORET",7,NA,2022-02-16 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220328-4955815-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601046","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955815-0328-4-C/results/953601046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:20","STORET",7,NA,2022-03-28 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220328-4955815-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601049","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220328-4955815-0328-4-C/results/953601049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:20","STORET",7,NA,2022-03-28 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4956290-1021-4-C","Sample-Routine","Water",NA,2021-10-21,"13:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601079",NA,"as N","Nitrogen","Total","0.798","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4956290-1021-4-C/results/953601079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:21","STORET",7,NA,2021-10-21 20:16:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.798,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4956290-1021-4-C","Sample-Routine","Water",NA,2021-10-21,"13:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601082",NA,"as N","Nitrogen","Dissolved","0.762","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4956290-1021-4-C/results/953601082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:21","STORET",7,NA,2021-10-21 20:16:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.762,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4956290-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601112",NA,"as N","Nitrogen","Total","0.688","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4956290-0322-4-C/results/953601112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:22","STORET",7,NA,2022-03-22 23:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.688,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4956290-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601115",NA,"as N","Nitrogen","Dissolved","0.733","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4956290-0322-4-C/results/953601115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:22","STORET",7,NA,2022-03-22 23:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.733,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4956291-1021-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-21,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601145",NA,"as N","Nitrogen","Total","0.785","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4956291-1021-4-C/results/953601145/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:23","STORET",7,NA,2021-10-21 20:20:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.785,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-4956291-1021-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-21,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601148",NA,"as N","Nitrogen","Dissolved","0.791","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-4956291-1021-4-C/results/953601148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:23","STORET",7,NA,2021-10-21 20:20:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.791,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4956291-0322-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-22,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601178",NA,"as N","Nitrogen","Total","0.689","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4956291-0322-4-C/results/953601178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:25","STORET",7,NA,2022-03-22 23:05:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.689,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-4956291-0322-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-22,"16:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601181",NA,"as N","Nitrogen","Dissolved","0.723","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-4956291-0322-4-C/results/953601181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:25","STORET",7,NA,2022-03-22 23:05:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.723,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220329-4990006-0329-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-29,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601208","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4990006-0329-4-C/results/953601208/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:25","STORET",7,NA,2022-03-29 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220329-4990006-0329-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-29,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4990006","EQUIPMENT BLANK-Jordan River Big Bend project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601211",NA,"as N","Nitrogen","Dissolved","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4990006-0329-4-C/results/953601211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:26","STORET",7,NA,2022-03-29 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990110-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601237",NA,"as N","Nitrogen","Total","3.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990110-1130-4-C/results/953601237/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:26","STORET",7,NA,2021-11-30 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990110-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601241",NA,"as N","Nitrogen","Dissolved","3.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990110-1130-4-C/results/953601241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:26","STORET",7,NA,2021-11-30 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990110-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601264",NA,"as N","Nitrogen","Total","3.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990110-0125-4-C/results/953601264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:28","STORET",7,NA,2022-01-25 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990110-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601268",NA,"as N","Nitrogen","Dissolved","3.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990110-0125-4-C/results/953601268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:28","STORET",7,NA,2022-01-25 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990110-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601291",NA,"as N","Nitrogen","Total","2.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990110-0222-4-C/results/953601291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:29","STORET",7,NA,2022-02-22 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990110-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601295",NA,"as N","Nitrogen","Dissolved","2.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990110-0222-4-C/results/953601295/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:29","STORET",7,NA,2022-02-22 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990110-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601318",NA,"as N","Nitrogen","Total","2.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990110-0322-4-C/results/953601318/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:30","STORET",7,NA,2022-03-22 15:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990110-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601322",NA,"as N","Nitrogen","Dissolved","2.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990110-0322-4-C/results/953601322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:30","STORET",7,NA,2022-03-22 15:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990112-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-30,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601336",NA,"as N","Nitrogen","Total","3.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990112-1130-4-C/results/953601336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:32","STORET",7,NA,2021-11-30 16:05:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990112-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-30,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601340",NA,"as N","Nitrogen","Dissolved","3.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990112-1130-4-C/results/953601340/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:32","STORET",7,NA,2021-11-30 16:05:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990112-0125-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-25,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601363",NA,"as N","Nitrogen","Total","3.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990112-0125-4-C/results/953601363/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:33","STORET",7,NA,2022-01-25 16:25:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990112-0125-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-25,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601367",NA,"as N","Nitrogen","Dissolved","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990112-0125-4-C/results/953601367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:33","STORET",7,NA,2022-01-25 16:25:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990112-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-22,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601390",NA,"as N","Nitrogen","Total","2.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990112-0222-4-C/results/953601390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:35","STORET",7,NA,2022-02-22 16:35:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990112-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-22,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601394",NA,"as N","Nitrogen","Dissolved","2.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990112-0222-4-C/results/953601394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:35","STORET",7,NA,2022-02-22 16:35:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990112-0322-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-22,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601417",NA,"as N","Nitrogen","Total","2.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990112-0322-4-C/results/953601417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:36","STORET",7,NA,2022-03-22 15:50:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.81,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990112-0322-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-22,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601421",NA,"as N","Nitrogen","Dissolved","2.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990112-0322-4-C/results/953601421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:36","STORET",7,NA,2022-03-22 15:50:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",2.92,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990135-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990135","Kay's Ck. at Valley View Dr. and 1850 N.",NA,NA,NA,NA,"41.0887100000","-111.9090400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601435",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990135-0125-4-C/results/953601435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:37","STORET",7,NA,2022-01-25 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0887100000","-111.9090400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.08871,-111.90904,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990135-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990135","Kay's Ck. at Valley View Dr. and 1850 N.",NA,NA,NA,NA,"41.0887100000","-111.9090400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601439",NA,"as N","Nitrogen","Dissolved","0.391","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990135-0125-4-C/results/953601439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:37","STORET",7,NA,2022-01-25 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0887100000","-111.9090400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.391,"MG/L","Numeric","Not Reviewed","Uncensored",41.08871,-111.90904,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990135-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990135","Kay's Ck. at Valley View Dr. and 1850 N.",NA,NA,NA,NA,"41.0887100000","-111.9090400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601462",NA,"as N","Nitrogen","Total","0.407","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990135-0322-4-C/results/953601462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:38","STORET",7,NA,2022-03-22 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0887100000","-111.9090400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.407,"MG/L","Numeric","Not Reviewed","Uncensored",41.08871,-111.90904,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990135-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990135","Kay's Ck. at Valley View Dr. and 1850 N.",NA,NA,NA,NA,"41.0887100000","-111.9090400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601466",NA,"as N","Nitrogen","Dissolved","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990135-0322-4-C/results/953601466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:38","STORET",7,NA,2022-03-22 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0887100000","-111.9090400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",41.08871,-111.90904,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990137-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990137","Middle Fork Kays Creek at Fernwood Dr Xing",NA,NA,NA,NA,"41.0895200000","-111.9062800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601480",NA,"as N","Nitrogen","Total","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990137-0322-4-C/results/953601480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:39","STORET",7,NA,2022-03-22 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0895200000","-111.9062800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",41.08952,-111.90628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990137-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990137","Middle Fork Kays Creek at Fernwood Dr Xing",NA,NA,NA,NA,"41.0895200000","-111.9062800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601484",NA,"as N","Nitrogen","Dissolved","0.413","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990137-0322-4-C/results/953601484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:39","STORET",7,NA,2022-03-22 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0895200000","-111.9062800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.413,"MG/L","Numeric","Not Reviewed","Uncensored",41.08952,-111.90628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990190-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601498",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990190-1130-4-C/results/953601498/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:39","STORET",7,NA,2021-11-30 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990190-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601502",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990190-1130-4-C/results/953601502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:40","STORET",7,NA,2021-11-30 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990190-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601525",NA,"as N","Nitrogen","Total","1.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990190-0125-4-C/results/953601525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:40","STORET",7,NA,2022-01-25 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990190-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"09:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601529",NA,"as N","Nitrogen","Dissolved","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990190-0125-4-C/results/953601529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:41","STORET",7,NA,2022-01-25 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990190-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601552",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990190-0222-4-C/results/953601552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:42","STORET",7,NA,2022-02-22 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990190-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601556",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990190-0222-4-C/results/953601556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:42","STORET",7,NA,2022-02-22 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990190-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601579",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990190-0322-4-C/results/953601579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:44","STORET",7,NA,2022-03-22 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990190-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601583",NA,"as N","Nitrogen","Dissolved","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990190-0322-4-C/results/953601583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:44","STORET",7,NA,2022-03-22 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990220-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601597",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990220-1130-4-C/results/953601597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:45","STORET",7,NA,2021-11-30 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990220-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601601",NA,"as N","Nitrogen","Dissolved","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990220-1130-4-C/results/953601601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:45","STORET",7,NA,2021-11-30 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990220-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601624",NA,"as N","Nitrogen","Total","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990220-0125-4-C/results/953601624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:46","STORET",7,NA,2022-01-25 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990220-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601628",NA,"as N","Nitrogen","Dissolved","0.371","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990220-0125-4-C/results/953601628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:46","STORET",7,NA,2022-01-25 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.371,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990220-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601651",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990220-0222-4-C/results/953601651/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:48","STORET",7,NA,2022-02-22 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990220-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601655",NA,"as N","Nitrogen","Dissolved","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990220-0222-4-C/results/953601655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:48","STORET",7,NA,2022-02-22 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990220-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601678",NA,"as N","Nitrogen","Total","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990220-0322-4-C/results/953601678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:49","STORET",7,NA,2022-03-22 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990220-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601682",NA,"as N","Nitrogen","Dissolved","0.379","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990220-0322-4-C/results/953601682/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:49","STORET",7,NA,2022-03-22 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.379,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990225-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601696",NA,"as N","Nitrogen","Total","0.295","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990225-1130-4-C/results/953601696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:50","STORET",7,NA,2021-11-30 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.295,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990225-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601700",NA,"as N","Nitrogen","Dissolved","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990225-1130-4-C/results/953601700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:50","STORET",7,NA,2021-11-30 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990225-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601723",NA,"as N","Nitrogen","Total","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990225-0125-4-C/results/953601723/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:52","STORET",7,NA,2022-01-25 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990225-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601727",NA,"as N","Nitrogen","Dissolved","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990225-0125-4-C/results/953601727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:52","STORET",7,NA,2022-01-25 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990225-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601750",NA,"as N","Nitrogen","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990225-0222-4-C/results/953601750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:53","STORET",7,NA,2022-02-22 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990225-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601754",NA,"as N","Nitrogen","Dissolved","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990225-0222-4-C/results/953601754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:53","STORET",7,NA,2022-02-22 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990225-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601777",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990225-0322-4-C/results/953601777/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:54","STORET",7,NA,2022-03-22 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990225-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601781",NA,"as N","Nitrogen","Dissolved","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990225-0322-4-C/results/953601781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:54","STORET",7,NA,2022-03-22 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990226-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-30,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601795",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990226-1130-4-C/results/953601795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:55","STORET",7,NA,2021-11-30 18:20:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990226-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-30,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601799",NA,"as N","Nitrogen","Dissolved","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990226-1130-4-C/results/953601799/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:55","STORET",7,NA,2021-11-30 18:20:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990226-0125-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-25,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601822",NA,"as N","Nitrogen","Total","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990226-0125-4-C/results/953601822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:55","STORET",7,NA,2022-01-25 18:20:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990226-0125-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-25,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601826",NA,"as N","Nitrogen","Dissolved","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990226-0125-4-C/results/953601826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:55","STORET",7,NA,2022-01-25 18:20:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990226-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-22,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601849",NA,"as N","Nitrogen","Total","0.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990226-0222-4-C/results/953601849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:56","STORET",7,NA,2022-02-22 18:40:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990226-0222-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-22,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601853",NA,"as N","Nitrogen","Dissolved","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990226-0222-4-C/results/953601853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:56","STORET",7,NA,2022-02-22 18:40:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990226-0322-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-22,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601876",NA,"as N","Nitrogen","Total","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990226-0322-4-C/results/953601876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:57","STORET",7,NA,2022-03-22 18:05:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990226-0322-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-22,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601880",NA,"as N","Nitrogen","Dissolved","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990226-0322-4-C/results/953601880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:57","STORET",7,NA,2022-03-22 18:05:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990228-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601894",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990228-1130-4-C/results/953601894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:58","STORET",7,NA,2021-11-30 19:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990228-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601898",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990228-1130-4-C/results/953601898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:58","STORET",7,NA,2021-11-30 19:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990228-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601921",NA,"as N","Nitrogen","Total","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990228-0125-4-C/results/953601921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:59","STORET",7,NA,2022-01-25 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990228-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601925",NA,"as N","Nitrogen","Dissolved","0.413","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990228-0125-4-C/results/953601925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:58:59","STORET",7,NA,2022-01-25 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.413,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990228-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601948",NA,"as N","Nitrogen","Total","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990228-0222-4-C/results/953601948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:00","STORET",7,NA,2022-02-22 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990228-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601952",NA,"as N","Nitrogen","Dissolved","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990228-0222-4-C/results/953601952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:00","STORET",7,NA,2022-02-22 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990228-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601975",NA,"as N","Nitrogen","Total","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990228-0322-4-C/results/953601975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:01","STORET",7,NA,2022-03-22 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990228-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601979",NA,"as N","Nitrogen","Dissolved","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990228-0322-4-C/results/953601979/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:01","STORET",7,NA,2022-03-22 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990280-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601993",NA,"as N","Nitrogen","Total","1.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990280-1130-4-C/results/953601993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:02","STORET",7,NA,2021-11-30 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990280-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953601997",NA,"as N","Nitrogen","Dissolved","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990280-1130-4-C/results/953601997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:02","STORET",7,NA,2021-11-30 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990280-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602020",NA,"as N","Nitrogen","Total","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990280-0125-4-C/results/953602020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:03","STORET",7,NA,2022-01-25 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990280-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602024",NA,"as N","Nitrogen","Dissolved","1.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990280-0125-4-C/results/953602024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:03","STORET",7,NA,2022-01-25 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990280-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602047",NA,"as N","Nitrogen","Total","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990280-0222-4-C/results/953602047/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:04","STORET",7,NA,2022-02-22 17:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990280-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602051",NA,"as N","Nitrogen","Dissolved","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990280-0222-4-C/results/953602051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:04","STORET",7,NA,2022-02-22 17:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990280-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602074",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990280-0322-4-C/results/953602074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:05","STORET",7,NA,2022-03-22 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990280-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602078",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990280-0322-4-C/results/953602078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:06","STORET",7,NA,2022-03-22 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990296-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602092",NA,"as N","Nitrogen","Total","0.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990296-1130-4-C/results/953602092/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:06","STORET",7,NA,2021-11-30 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.56,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990296-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602096",NA,"as N","Nitrogen","Dissolved","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990296-1130-4-C/results/953602096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:06","STORET",7,NA,2021-11-30 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990296-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602119",NA,"as N","Nitrogen","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990296-0125-4-C/results/953602119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:07","STORET",7,NA,2022-01-25 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990296-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602123",NA,"as N","Nitrogen","Dissolved","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990296-0125-4-C/results/953602123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:07","STORET",7,NA,2022-01-25 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990296-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602146",NA,"as N","Nitrogen","Total","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990296-0222-4-C/results/953602146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:08","STORET",7,NA,2022-02-22 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990296-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602150",NA,"as N","Nitrogen","Dissolved","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990296-0222-4-C/results/953602150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:08","STORET",7,NA,2022-02-22 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990296-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602173",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990296-0322-4-C/results/953602173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:09","STORET",7,NA,2022-03-22 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990296-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602177",NA,"as N","Nitrogen","Dissolved","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990296-0322-4-C/results/953602177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:09","STORET",7,NA,2022-03-22 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990300-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602191",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990300-1130-4-C/results/953602191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:10","STORET",7,NA,2021-11-30 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990300-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602195",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990300-1130-4-C/results/953602195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:10","STORET",7,NA,2021-11-30 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990300-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602217",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990300-0125-4-C/results/953602217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:10","STORET",7,NA,2022-01-25 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990300-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602221",NA,"as N","Nitrogen","Dissolved","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990300-0125-4-C/results/953602221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:10","STORET",7,NA,2022-01-25 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990300-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602244",NA,"as N","Nitrogen","Total","0.976","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990300-0222-4-C/results/953602244/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:11","STORET",7,NA,2022-02-22 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.976,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990300-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602248",NA,"as N","Nitrogen","Dissolved","0.984","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990300-0222-4-C/results/953602248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:11","STORET",7,NA,2022-02-22 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.984,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990300-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602271",NA,"as N","Nitrogen","Total","0.967","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990300-0322-4-C/results/953602271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:13","STORET",7,NA,2022-03-22 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.967,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990300-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602275",NA,"as N","Nitrogen","Dissolved","0.995","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990300-0322-4-C/results/953602275/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:13","STORET",7,NA,2022-03-22 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.995,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990306-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602289",NA,"as N","Nitrogen","Total","0.108","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990306-1130-4-C/results/953602289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:14","STORET",7,NA,2021-11-30 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.108,"MG/L","Numeric","Pass","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990306-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602293",NA,"as N","Nitrogen","Dissolved","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990306-1130-4-C/results/953602293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:14","STORET",7,NA,2021-11-30 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990306-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602316",NA,"as N","Nitrogen","Total","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990306-0125-4-C/results/953602316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:15","STORET",7,NA,2022-01-25 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990306-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602320",NA,"as N","Nitrogen","Dissolved","0.222","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990306-0125-4-C/results/953602320/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:15","STORET",7,NA,2022-01-25 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.222,"MG/L","Numeric","Not Reviewed","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990306-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602343",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990306-0222-4-C/results/953602343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:15","STORET",7,NA,2022-02-22 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990306-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602347",NA,"as N","Nitrogen","Dissolved","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990306-0222-4-C/results/953602347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:15","STORET",7,NA,2022-02-22 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990306-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602370",NA,"as N","Nitrogen","Total","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990306-0322-4-C/results/953602370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:16","STORET",7,NA,2022-03-22 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990306-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602374",NA,"as N","Nitrogen","Dissolved","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990306-0322-4-C/results/953602374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:16","STORET",7,NA,2022-03-22 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990308-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602388",NA,"as N","Nitrogen","Total","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990308-1130-4-C/results/953602388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:17","STORET",7,NA,2021-11-30 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990308-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602392",NA,"as N","Nitrogen","Dissolved","0.241","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990308-1130-4-C/results/953602392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:17","STORET",7,NA,2021-11-30 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.241,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990308-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602415",NA,"as N","Nitrogen","Total","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990308-0125-4-C/results/953602415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:18","STORET",7,NA,2022-01-25 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990308-0125-4-C","Sample-Routine","Water",NA,2022-01-25,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602419",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990308-0125-4-C/results/953602419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:18","STORET",7,NA,2022-01-25 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990308-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602442",NA,"as N","Nitrogen","Total","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990308-0222-4-C/results/953602442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:18","STORET",7,NA,2022-02-22 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990308-0222-4-C","Sample-Routine","Water",NA,2022-02-22,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602446",NA,"as N","Nitrogen","Dissolved","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990308-0222-4-C/results/953602446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:18","STORET",7,NA,2022-02-22 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990308-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602469",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990308-0322-4-C/results/953602469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:19","STORET",7,NA,2022-03-22 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990308-0322-4-C","Sample-Routine","Water",NA,2022-03-22,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602473",NA,"as N","Nitrogen","Dissolved","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990308-0322-4-C/results/953602473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:20","STORET",7,NA,2022-03-22 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990555-1130-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-30,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602487","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990555-1130-4-C/results/953602487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:20","STORET",7,NA,2021-11-30 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC211130-4990555-1130-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-30,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602491","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC211130-4990555-1130-4-C/results/953602491/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:20","STORET",7,NA,2021-11-30 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990555-0125-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-25,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602514","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990555-0125-4-C/results/953602514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:21","STORET",7,NA,2022-01-25 15:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220125-4990555-0125-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-25,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602518","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220125-4990555-0125-4-C/results/953602518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:21","STORET",7,NA,2022-01-25 15:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990555-0222-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-22,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602541","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990555-0222-4-C/results/953602541/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:22","STORET",7,NA,2022-02-22 16:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220222-4990555-0222-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-02-22,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602545","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220222-4990555-0222-4-C/results/953602545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:22","STORET",7,NA,2022-02-22 16:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990555-0322-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-22,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602568","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990555-0322-4-C/results/953602568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:23","STORET",7,NA,2022-03-22 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220322-4990555-0322-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-22,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602572","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220322-4990555-0322-4-C/results/953602572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:23","STORET",7,NA,2022-03-22 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211025-4991297-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991297","Storm Drain Channel at 8000 W North Temple",NA,NA,NA,NA,"40.7715500000","-112.0830800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602584",NA,"as N","Nitrogen","Total","3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211025-4991297-1026-4-C/results/953602584/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:23","STORET",7,NA,2021-10-26 19:00:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7715500000","-112.0830800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3,"MG/L","Numeric","Not Reviewed","Uncensored",40.77155,-112.08308,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211004-4991302-1009-4-C","Sample-Routine","Water",NA,2021-10-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991302","Storm Drain Channel at 6550 W 1100 N",NA,NA,NA,NA,"40.7944700000","-112.0488000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602599",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211004-4991302-1009-4-C/results/953602599/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:24","STORET",7,NA,2021-10-09 18:30:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7944700000","-112.0488000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.79447,-112.0488,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211004-4991303-1009-4-C","Sample-Routine","Water",NA,2021-10-09,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991303","Storm Drain Channel at 6000 W 700 N",NA,NA,NA,NA,"40.7839600000","-112.0440800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602613",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211004-4991303-1009-4-C/results/953602613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:24","STORET",7,NA,2021-10-09 18:15:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7839600000","-112.0440800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.78396,-112.04408,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211018-4991303-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991303","Storm Drain Channel at 6000 W 700 N",NA,NA,NA,NA,"40.7839600000","-112.0440800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602627",NA,"as N","Nitrogen","Total","2.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211018-4991303-1019-4-C/results/953602627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:25","STORET",7,NA,2021-10-19 15:45:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7839600000","-112.0440800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.78396,-112.04408,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211025-4991303-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991303","Storm Drain Channel at 6000 W 700 N",NA,NA,NA,NA,"40.7839600000","-112.0440800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602641",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211025-4991303-1026-4-C/results/953602641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:25","STORET",7,NA,2021-10-26 16:30:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7839600000","-112.0440800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.78396,-112.04408,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211004-4991305-1009-4-C","Sample-Routine","Water",NA,2021-10-09,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991305","Storm Drain Channel at end of John Cannon Dr",NA,NA,NA,NA,"40.7873200000","-112.0164200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602656",NA,"as N","Nitrogen","Total","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211004-4991305-1009-4-C/results/953602656/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:26","STORET",7,NA,2021-10-09 17:50:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7873200000","-112.0164200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.78732,-112.01642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211018-4991305-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991305","Storm Drain Channel at end of John Cannon Dr",NA,NA,NA,NA,"40.7873200000","-112.0164200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602670",NA,"as N","Nitrogen","Total","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211018-4991305-1019-4-C/results/953602670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:27","STORET",7,NA,2021-10-19 15:30:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7873200000","-112.0164200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.78732,-112.01642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211025-4991305-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991305","Storm Drain Channel at end of John Cannon Dr",NA,NA,NA,NA,"40.7873200000","-112.0164200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602684",NA,"as N","Nitrogen","Total","0.961","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211025-4991305-1026-4-C/results/953602684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:27","STORET",7,NA,2021-10-26 16:15:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7873200000","-112.0164200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.961,"MG/L","Numeric","Not Reviewed","Uncensored",40.78732,-112.01642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211108-4991305-1110-4-C","Sample-Routine","Water",NA,2021-11-10,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991305","Storm Drain Channel at end of John Cannon Dr",NA,NA,NA,NA,"40.7873200000","-112.0164200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602698",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211108-4991305-1110-4-C/results/953602698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:28","STORET",7,NA,2021-11-10 15:40:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7873200000","-112.0164200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.78732,-112.01642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211004-4991313-1009-4-C","Sample-Routine","Water",NA,2021-10-09,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991313","Storm Drain Channel at 5600 W 150 S",NA,NA,NA,NA,"40.7656700000","-112.0254300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602712",NA,"as N","Nitrogen","Total","2.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211004-4991313-1009-4-C/results/953602712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:28","STORET",7,NA,2021-10-09 18:50:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7656700000","-112.0254300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.76567,-112.02543,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UIP211025-4991313-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4991313","Storm Drain Channel at 5600 W 150 S",NA,NA,NA,NA,"40.7656700000","-112.0254300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602726",NA,"as N","Nitrogen","Total","0.574","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UIP211025-4991313-1026-4-C/results/953602726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:29","STORET",7,NA,2021-10-26 19:20:00,NA,"Canal Drainage",NA,"16020204",NA,NA,NA,NA,"40.7656700000","-112.0254300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.574,"MG/L","Numeric","Not Reviewed","Uncensored",40.76567,-112.02543,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH211101-4994175-1101-4-C","Sample-Routine","Water",NA,2021-11-01,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602740",NA,"as N","Nitrogen","Total","3.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211101-4994175-1101-4-C/results/953602740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:30","STORET",7,NA,2021-11-01 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH211101-4994175-1101-4-C","Sample-Routine","Water",NA,2021-11-01,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602743",NA,"as N","Nitrogen","Dissolved","3.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211101-4994175-1101-4-C/results/953602743/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:30","STORET",7,NA,2021-11-01 17:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH211129-4994175-1129-4-C","Sample-Routine","Water",NA,2021-11-29,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602770",NA,"as N","Nitrogen","Total","3.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211129-4994175-1129-4-C/results/953602770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:31","STORET",7,NA,2021-11-29 19:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH211129-4994175-1129-4-C","Sample-Routine","Water",NA,2021-11-29,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602773",NA,"as N","Nitrogen","Dissolved","3.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211129-4994175-1129-4-C/results/953602773/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:31","STORET",7,NA,2021-11-29 19:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220329-4994175-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","No Corresponding field measurements available",NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602800",NA,"as N","Nitrogen","Total","3.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994175-0329-4-C/results/953602800/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:32","STORET",7,NA,2022-03-29 20:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220329-4994175-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)","No Corresponding field measurements available",NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602803",NA,"as N","Nitrogen","Dissolved","3.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994175-0329-4-C/results/953602803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:32","STORET",7,NA,2022-03-29 20:15:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH211101-4994270-1101-4-C","Sample-Routine","Water",NA,2021-11-01,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602827",NA,"as N","Nitrogen","Total","3.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211101-4994270-1101-4-C/results/953602827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:33","STORET",7,NA,2021-11-01 16:45:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH211101-4994270-1101-4-C","Sample-Routine","Water",NA,2021-11-01,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602830",NA,"as N","Nitrogen","Dissolved","3.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211101-4994270-1101-4-C/results/953602830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:34","STORET",7,NA,2021-11-01 16:45:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH211129-4994270-1129-4-C","Sample-Routine","Water",NA,2021-11-29,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602857",NA,"as N","Nitrogen","Total","3.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211129-4994270-1129-4-C/results/953602857/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:35","STORET",7,NA,2021-11-29 18:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH211129-4994270-1129-4-C","Sample-Routine","Water",NA,2021-11-29,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602860",NA,"as N","Nitrogen","Dissolved","3.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH211129-4994270-1129-4-C/results/953602860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:35","STORET",7,NA,2021-11-29 18:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220329-4994270-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING","No Corresponding field measurements available",NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602887",NA,"as N","Nitrogen","Total","3.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994270-0329-4-C/results/953602887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:37","STORET",7,NA,2022-03-29 19:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220329-4994270-0329-4-C","Sample-Routine","Water",NA,2022-03-29,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING","No Corresponding field measurements available",NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602890",NA,"as N","Nitrogen","Dissolved","3.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994270-0329-4-C/results/953602890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:37","STORET",7,NA,2022-03-29 19:30:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220329-4994271-0329-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-29,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270","No Corresponding field measurements available",NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602914",NA,"as N","Nitrogen","Total","3.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994271-0329-4-C/results/953602914/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:38","STORET",7,NA,2022-03-29 19:35:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220329-4994271-0329-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-29,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994271","JORDAN R AT 9000 S XING Replicate of 4994270","No Corresponding field measurements available",NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602917",NA,"as N","Nitrogen","Dissolved","3.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220329-4994271-0329-4-C/results/953602917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:38","STORET",7,NA,2022-03-29 19:35:00,NA,"River/Stream","Replicate of 4994270","16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",3.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4994790-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602948",NA,"as N","Nitrogen","Total","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4994790-1028-4-C/results/953602948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:40","STORET",7,NA,2021-10-28 20:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4994790-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602953",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4994790-1028-4-C/results/953602953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:40","STORET",7,NA,2021-10-28 20:35:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211025-4994946-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4994946","Spring Creek Park parking lot manhole 1m south of south curb",NA,NA,NA,NA,"40.3625600000","-111.8380400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602958",NA,"as N","Nitrogen","Total","2.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4994946-1026-4-C/results/953602958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:40","STORET",7,NA,2021-10-26 18:45:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.3625600000","-111.8380400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.36256,-111.83804,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211025-4994946-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4994946","Spring Creek Park parking lot manhole 1m south of south curb",NA,NA,NA,NA,"40.3625600000","-111.8380400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602967",NA,"as N","Nitrogen","Dissolved","2.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4994946-1026-4-C/results/953602967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:40","STORET",7,NA,2021-10-26 18:45:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.3625600000","-111.8380400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.93,"MG/L","Numeric","Not Reviewed","Uncensored",40.36256,-111.83804,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4994950-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602985",NA,"as N","Nitrogen","Total","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4994950-1028-4-C/results/953602985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:41","STORET",7,NA,2021-10-28 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4994950-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953602990",NA,"as N","Nitrogen","Dissolved","2.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4994950-1028-4-C/results/953602990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:41","STORET",7,NA,2021-10-28 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4994950-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603004",NA,"as N","Nitrogen","Total","2.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4994950-1116-4-C/results/953603004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:42","STORET",7,NA,2021-11-16 21:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4994950-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603009",NA,"as N","Nitrogen","Dissolved","2.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4994950-1116-4-C/results/953603009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:42","STORET",7,NA,2021-11-16 21:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4994950-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603022",NA,"as N","Nitrogen","Total","2.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4994950-0124-4-C/results/953603022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:43","STORET",7,NA,2022-01-24 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4994950-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603027",NA,"as N","Nitrogen","Dissolved","2.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4994950-0124-4-C/results/953603027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:43","STORET",7,NA,2022-01-24 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4994950-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603040",NA,"as N","Nitrogen","Total","2.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4994950-0215-4-C/results/953603040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:43","STORET",7,NA,2022-02-15 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4994950-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603045",NA,"as N","Nitrogen","Dissolved","2.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4994950-0215-4-C/results/953603045/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:43","STORET",7,NA,2022-02-15 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4994950-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603059",NA,"as N","Nitrogen","Total","2.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4994950-0315-4-C/results/953603059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:44","STORET",7,NA,2022-03-15 22:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4994950-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603064",NA,"as N","Nitrogen","Dissolved","2.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4994950-0315-4-C/results/953603064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:44","STORET",7,NA,2022-03-15 22:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4994970-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603074",NA,"as N","Nitrogen","Total","1.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4994970-1027-4-C/results/953603074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:45","STORET",7,NA,2021-10-27 20:00:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.85,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211001-4994970-1027-4-C","Sample-Routine","Water",NA,2021-10-27,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603077",NA,"as N","Nitrogen","Dissolved","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211001-4994970-1027-4-C/results/953603077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:45","STORET",7,NA,2021-10-27 20:00:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4994970-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603106",NA,"as N","Nitrogen","Total","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4994970-1117-4-C/results/953603106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:46","STORET",7,NA,2021-11-17 18:15:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL211101-4994970-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603109",NA,"as N","Nitrogen","Dissolved","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL211101-4994970-1117-4-C/results/953603109/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:46","STORET",7,NA,2021-11-17 18:15:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995038-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603129",NA,"as N","Nitrogen","Total","10.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995038-1028-4-C/results/953603129/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:47","STORET",7,NA,2021-10-28 19:50:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995038-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603134",NA,"as N","Nitrogen","Dissolved","10.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995038-1028-4-C/results/953603134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:47","STORET",7,NA,2021-10-28 19:50:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995038-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603150",NA,"as N","Nitrogen","Total","8.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995038-1116-4-C/results/953603150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:47","STORET",7,NA,2021-11-16 21:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995038-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603155",NA,"as N","Nitrogen","Dissolved","7.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995038-1116-4-C/results/953603155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:47","STORET",7,NA,2021-11-16 21:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995038-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603171",NA,"as N","Nitrogen","Total","7.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995038-1208-4-C/results/953603171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:48","STORET",7,NA,2021-12-08 21:40:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.72,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995038-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603176",NA,"as N","Nitrogen","Dissolved","8.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995038-1208-4-C/results/953603176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:48","STORET",7,NA,2021-12-08 21:40:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995038-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603191",NA,"as N","Nitrogen","Total","9.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995038-0124-4-C/results/953603191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:49","STORET",7,NA,2022-01-24 21:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995038-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603196",NA,"as N","Nitrogen","Dissolved","8.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995038-0124-4-C/results/953603196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:49","STORET",7,NA,2022-01-24 21:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995038-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603210",NA,"as N","Nitrogen","Total","8.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995038-0215-4-C/results/953603210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:49","STORET",7,NA,2022-02-15 21:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995038-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603215",NA,"as N","Nitrogen","Dissolved","7.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995038-0215-4-C/results/953603215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:50","STORET",7,NA,2022-02-15 21:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995038-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603230",NA,"as N","Nitrogen","Total","6.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995038-0315-4-C/results/953603230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:50","STORET",7,NA,2022-03-15 22:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.94,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995038-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603235",NA,"as N","Nitrogen","Dissolved","6.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995038-0315-4-C/results/953603235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:50","STORET",7,NA,2022-03-15 22:30:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995041-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603251",NA,"as N","Nitrogen","Total","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995041-1028-4-C/results/953603251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:51","STORET",7,NA,2021-10-28 19:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995041-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603256",NA,"as N","Nitrogen","Dissolved","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995041-1028-4-C/results/953603256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:52","STORET",7,NA,2021-10-28 19:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995041-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603272",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995041-1116-4-C/results/953603272/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:52","STORET",7,NA,2021-11-16 21:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995041-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603277",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995041-1116-4-C/results/953603277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:52","STORET",7,NA,2021-11-16 21:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995041-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603292",NA,"as N","Nitrogen","Total","4.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995041-0124-4-C/results/953603292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:53","STORET",7,NA,2022-01-24 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995041-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603297",NA,"as N","Nitrogen","Dissolved","4.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995041-0124-4-C/results/953603297/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:54","STORET",7,NA,2022-01-24 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.72,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995041-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603311",NA,"as N","Nitrogen","Total","3.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995041-0215-4-C/results/953603311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:55","STORET",7,NA,2022-02-15 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995041-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603316",NA,"as N","Nitrogen","Dissolved","3.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995041-0215-4-C/results/953603316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:55","STORET",7,NA,2022-02-15 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995120-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603330",NA,"as N","Nitrogen","Total","3.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995120-1028-4-C/results/953603330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:56","STORET",7,NA,2021-10-28 19:25:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995120-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603335",NA,"as N","Nitrogen","Dissolved","3.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995120-1028-4-C/results/953603335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:56","STORET",7,NA,2021-10-28 19:25:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995120-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603349",NA,"as N","Nitrogen","Total","3.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995120-1116-4-C/results/953603349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:57","STORET",7,NA,2021-11-16 20:55:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995120-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603354",NA,"as N","Nitrogen","Dissolved","3.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995120-1116-4-C/results/953603354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:58","STORET",7,NA,2021-11-16 20:55:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995120-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603368",NA,"as N","Nitrogen","Total","2.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995120-1208-4-C/results/953603368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:59","STORET",7,NA,2021-12-08 21:20:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995120-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603373",NA,"as N","Nitrogen","Dissolved","3.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995120-1208-4-C/results/953603373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T03:59:59","STORET",7,NA,2021-12-08 21:20:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995120-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603386",NA,"as N","Nitrogen","Total","3.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995120-0124-4-C/results/953603386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:00","STORET",7,NA,2022-01-24 21:10:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995120-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603391",NA,"as N","Nitrogen","Dissolved","3.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995120-0124-4-C/results/953603391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:00","STORET",7,NA,2022-01-24 21:10:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995120-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603404",NA,"as N","Nitrogen","Total","3.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995120-0215-4-C/results/953603404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:01","STORET",7,NA,2022-02-15 20:45:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995120-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603409",NA,"as N","Nitrogen","Dissolved","3.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995120-0215-4-C/results/953603409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:01","STORET",7,NA,2022-02-15 20:45:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995120-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603423",NA,"as N","Nitrogen","Total","3.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995120-0315-4-C/results/953603423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:03","STORET",7,NA,2022-03-15 22:05:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995120-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603428",NA,"as N","Nitrogen","Dissolved","3.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995120-0315-4-C/results/953603428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:03","STORET",7,NA,2022-03-15 22:05:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211025-4995244-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995244","Stormwater 10m west of west curb at 1890 West Business Park Dr.",NA,NA,NA,NA,"40.2742100000","-111.7394000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603436",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4995244-1028-4-C/results/953603436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:03","STORET",7,NA,2021-10-28 19:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2742100000","-111.7394000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.27421,-111.7394,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211025-4995244-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995244","Stormwater 10m west of west curb at 1890 West Business Park Dr.",NA,NA,NA,NA,"40.2742100000","-111.7394000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603441",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4995244-1028-4-C/results/953603441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:04","STORET",7,NA,2021-10-28 19:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2742100000","-111.7394000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.27421,-111.7394,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995210-1021-4-C","Sample-Routine","Water",NA,2021-10-21,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603460",NA,"as N","Nitrogen","Total","17.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995210-1021-4-C/results/953603460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:05","STORET",7,NA,2021-10-21 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995210-1021-4-C","Sample-Routine","Water",NA,2021-10-21,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995210","Powell Slough WMA North Outfall to Utah Lake",NA,NA,NA,NA,"40.2653900000","-111.7423200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603465",NA,"as N","Nitrogen","Dissolved","17.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995210-1021-4-C/results/953603465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:05","STORET",7,NA,2021-10-21 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2653900000","-111.7423200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.26539,-111.74232,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995250-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603481",NA,"as N","Nitrogen","Total","19.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995250-1117-4-C/results/953603481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:06","STORET",7,NA,2021-11-17 20:40:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995250-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603486",NA,"as N","Nitrogen","Dissolved","19.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995250-1117-4-C/results/953603486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:06","STORET",7,NA,2021-11-17 20:40:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995250-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603502",NA,"as N","Nitrogen","Total","23.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995250-1208-4-C/results/953603502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:08","STORET",7,NA,2021-12-08 20:40:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",23.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995250-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603507",NA,"as N","Nitrogen","Dissolved","23.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995250-1208-4-C/results/953603507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:08","STORET",7,NA,2021-12-08 20:40:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",23.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995250-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603522",NA,"as N","Nitrogen","Total","20.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995250-0124-4-C/results/953603522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:09","STORET",7,NA,2022-01-24 20:50:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",20.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995250-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603527",NA,"as N","Nitrogen","Dissolved","19.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995250-0124-4-C/results/953603527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:09","STORET",7,NA,2022-01-24 20:50:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",19.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995251-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995251","Orem WRF GW OUTFALL-WLA",NA,NA,NA,NA,"40.2768800000","-111.7440100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603541",NA,"as N","Nitrogen","Total","20.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995251-0215-4-C/results/953603541/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:10","STORET",7,NA,2022-02-15 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2768800000","-111.7440100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",20.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.27688,-111.74401,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995251-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995251","Orem WRF GW OUTFALL-WLA",NA,NA,NA,NA,"40.2768800000","-111.7440100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603546",NA,"as N","Nitrogen","Dissolved","20.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995251-0215-4-C/results/953603546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:11","STORET",7,NA,2022-02-15 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2768800000","-111.7440100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",20.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.27688,-111.74401,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995250-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603561",NA,"as N","Nitrogen","Total","21.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995250-0315-4-C/results/953603561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:11","STORET",7,NA,2022-03-15 21:20:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995250-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603566",NA,"as N","Nitrogen","Dissolved","21.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995250-0315-4-C/results/953603566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:11","STORET",7,NA,2022-03-15 21:20:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995252-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603582",NA,"as N","Nitrogen","Total","0.546","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995252-1208-4-C/results/953603582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:12","STORET",7,NA,2021-12-08 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.546,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995252-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603587",NA,"as N","Nitrogen","Dissolved","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995252-1208-4-C/results/953603587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:12","STORET",7,NA,2021-12-08 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995252-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603602",NA,"as N","Nitrogen","Total","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995252-0124-4-C/results/953603602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:13","STORET",7,NA,2022-01-24 20:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995252-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603607",NA,"as N","Nitrogen","Dissolved","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995252-0124-4-C/results/953603607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:13","STORET",7,NA,2022-01-24 20:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995252-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603621",NA,"as N","Nitrogen","Total","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995252-0215-4-C/results/953603621/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:14","STORET",7,NA,2022-02-15 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995252-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603626",NA,"as N","Nitrogen","Dissolved","0.415","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995252-0215-4-C/results/953603626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:14","STORET",7,NA,2022-02-15 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.415,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995252-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603641",NA,"as N","Nitrogen","Total","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995252-0315-4-C/results/953603641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:15","STORET",7,NA,2022-03-15 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995252-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603646",NA,"as N","Nitrogen","Dissolved","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995252-0315-4-C/results/953603646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:15","STORET",7,NA,2022-03-15 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995310-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603660",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995310-1028-4-C/results/953603660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:16","STORET",7,NA,2021-10-28 16:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995310-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"09:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603665",NA,"as N","Nitrogen","Dissolved","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995310-1028-4-C/results/953603665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:16","STORET",7,NA,2021-10-28 16:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995310-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603679",NA,"as N","Nitrogen","Total","0.769","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995310-1116-4-C/results/953603679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:16","STORET",7,NA,2021-11-16 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.769,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995310-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603684",NA,"as N","Nitrogen","Dissolved","0.932","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995310-1116-4-C/results/953603684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:16","STORET",7,NA,2021-11-16 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.932,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995310-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603698",NA,"as N","Nitrogen","Total","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995310-1208-4-C/results/953603698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:17","STORET",7,NA,2021-12-08 17:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995310-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603703",NA,"as N","Nitrogen","Dissolved","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995310-1208-4-C/results/953603703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:17","STORET",7,NA,2021-12-08 17:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995310-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603716",NA,"as N","Nitrogen","Total","0.665","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995310-0124-4-C/results/953603716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:18","STORET",7,NA,2022-01-24 16:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.665,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995310-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603721",NA,"as N","Nitrogen","Dissolved","0.755","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995310-0124-4-C/results/953603721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:18","STORET",7,NA,2022-01-24 16:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.755,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995310-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603734",NA,"as N","Nitrogen","Total","0.805","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995310-0215-4-C/results/953603734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:19","STORET",7,NA,2022-02-15 16:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.805,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995310-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603739",NA,"as N","Nitrogen","Dissolved","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995310-0215-4-C/results/953603739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:19","STORET",7,NA,2022-02-15 16:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995310-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603753",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995310-0315-4-C/results/953603753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:20","STORET",7,NA,2022-03-15 16:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995310-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603758",NA,"as N","Nitrogen","Dissolved","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995310-0315-4-C/results/953603758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:20","STORET",7,NA,2022-03-15 16:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995465-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603774",NA,"as N","Nitrogen","Total","4.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995465-1116-4-C/results/953603774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:21","STORET",7,NA,2021-11-16 17:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995465-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603779",NA,"as N","Nitrogen","Dissolved","4.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995465-1116-4-C/results/953603779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:21","STORET",7,NA,2021-11-16 17:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995465-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603795",NA,"as N","Nitrogen","Total","5.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995465-1208-4-C/results/953603795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:22","STORET",7,NA,2021-12-08 18:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.56,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995465-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603800",NA,"as N","Nitrogen","Dissolved","5.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995465-1208-4-C/results/953603800/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:22","STORET",7,NA,2021-12-08 18:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995465-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603815",NA,"as N","Nitrogen","Total","4.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995465-0124-4-C/results/953603815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:22","STORET",7,NA,2022-01-24 17:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995465-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603820",NA,"as N","Nitrogen","Dissolved","4.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995465-0124-4-C/results/953603820/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:22","STORET",7,NA,2022-01-24 17:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995465-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603834",NA,"as N","Nitrogen","Total","5.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995465-0215-4-C/results/953603834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:23","STORET",7,NA,2022-02-15 17:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995465-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603839",NA,"as N","Nitrogen","Dissolved","5.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995465-0215-4-C/results/953603839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:23","STORET",7,NA,2022-02-15 17:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995465-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603854",NA,"as N","Nitrogen","Total","3.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995465-0315-4-C/results/953603854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:24","STORET",7,NA,2022-03-15 17:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.75,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995465-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603859",NA,"as N","Nitrogen","Dissolved","3.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995465-0315-4-C/results/953603859/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:24","STORET",7,NA,2022-03-15 17:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995578-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"10:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603873",NA,"as N","Nitrogen","Total","0.708","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995578-1028-4-C/results/953603873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:25","STORET",7,NA,2021-10-28 17:43:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.708,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4995578-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"10:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603878",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4995578-1028-4-C/results/953603878/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:25","STORET",7,NA,2021-10-28 17:43:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995578-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603892",NA,"as N","Nitrogen","Total","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995578-1116-4-C/results/953603892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:25","STORET",7,NA,2021-11-16 18:25:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4995578-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603897",NA,"as N","Nitrogen","Dissolved","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4995578-1116-4-C/results/953603897/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:26","STORET",7,NA,2021-11-16 18:25:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-4995578-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"14:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603903",NA,"as N","Nitrogen","Total","0.348","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-4995578-1130-4-C/results/953603903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:26","STORET",7,NA,2021-11-30 21:49:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.348,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-4995578-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"14:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603906",NA,"as N","Nitrogen","Dissolved","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-4995578-1130-4-C/results/953603906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:26","STORET",7,NA,2021-11-30 21:49:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995578-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603920",NA,"as N","Nitrogen","Total","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995578-1208-4-C/results/953603920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:26","STORET",7,NA,2021-12-08 18:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4995578-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603925",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4995578-1208-4-C/results/953603925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:27","STORET",7,NA,2021-12-08 18:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-4995578-0119-4-C","Sample-Routine","Water",NA,2022-01-19,"12:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603931",NA,"as N","Nitrogen","Total","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-4995578-0119-4-C/results/953603931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:27","STORET",7,NA,2022-01-19 19:31:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-4995578-0119-4-C","Sample-Routine","Water",NA,2022-01-19,"12:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603934",NA,"as N","Nitrogen","Dissolved","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-4995578-0119-4-C/results/953603934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:27","STORET",7,NA,2022-01-19 19:31:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995578-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603947",NA,"as N","Nitrogen","Total","0.487","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995578-0124-4-C/results/953603947/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:28","STORET",7,NA,2022-01-24 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.487,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4995578-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603952",NA,"as N","Nitrogen","Dissolved","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4995578-0124-4-C/results/953603952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:28","STORET",7,NA,2022-01-24 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995578-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603965",NA,"as N","Nitrogen","Total","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995578-0215-4-C/results/953603965/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:29","STORET",7,NA,2022-02-15 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4995578-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603970",NA,"as N","Nitrogen","Dissolved","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4995578-0215-4-C/results/953603970/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:29","STORET",7,NA,2022-02-15 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995578-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603984",NA,"as N","Nitrogen","Total","0.495","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995578-0315-4-C/results/953603984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:30","STORET",7,NA,2022-03-15 18:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.495,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4995578-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603989",NA,"as N","Nitrogen","Dissolved","0.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4995578-0315-4-C/results/953603989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:30","STORET",7,NA,2022-03-15 18:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-4995578-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603995",NA,"as N","Nitrogen","Total","0.927","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-4995578-0330-4-C/results/953603995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:31","STORET",7,NA,2022-03-30 19:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.927,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-4995578-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953603998",NA,"as N","Nitrogen","Dissolved","0.811","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-4995578-0330-4-C/results/953603998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:31","STORET",7,NA,2022-03-30 19:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.811,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-4995580-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"14:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604004",NA,"as N","Nitrogen","Total","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-4995580-1130-4-C/results/953604004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:31","STORET",7,NA,2021-11-30 21:22:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-4995580-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"14:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604007",NA,"as N","Nitrogen","Dissolved","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-4995580-1130-4-C/results/953604007/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:31","STORET",7,NA,2021-11-30 21:22:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-4995580-0119-4-C","Sample-Routine","Water",NA,2022-01-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604013",NA,"as N","Nitrogen","Total","0.432","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-4995580-0119-4-C/results/953604013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:32","STORET",7,NA,2022-01-19 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.432,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-4995580-0119-4-C","Sample-Routine","Water",NA,2022-01-19,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604016",NA,"as N","Nitrogen","Dissolved","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-4995580-0119-4-C/results/953604016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:32","STORET",7,NA,2022-01-19 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-4995580-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"11:39:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604022",NA,"as N","Nitrogen","Total","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-4995580-0330-4-C/results/953604022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:32","STORET",7,NA,2022-03-30 18:39:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-4995580-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"11:39:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4995580","SPANISH FORK R AB UTAH L (LAKESHORE)",NA,NA,NA,NA,"40.1502600000","-111.7269800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604025",NA,"as N","Nitrogen","Dissolved","0.831","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-4995580-0330-4-C/results/953604025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:32","STORET",7,NA,2022-03-30 18:39:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1502600000","-111.7269800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.831,"MG/L","Numeric","Not Reviewed","Uncensored",40.15026,-111.72698,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996000-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604041",NA,"as N","Nitrogen","Total","9.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996000-1208-4-C/results/953604041/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:33","STORET",7,NA,2021-12-08 18:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.77,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996000-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604046",NA,"as N","Nitrogen","Dissolved","11.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996000-1208-4-C/results/953604046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:33","STORET",7,NA,2021-12-08 18:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996000-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604059",NA,"as N","Nitrogen","Total","9.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996000-0124-4-C/results/953604059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:33","STORET",7,NA,2022-01-24 18:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996000-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604064",NA,"as N","Nitrogen","Dissolved","9.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996000-0124-4-C/results/953604064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:34","STORET",7,NA,2022-01-24 18:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996000-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604078",NA,"as N","Nitrogen","Total","10","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996000-0215-4-C/results/953604078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:34","STORET",7,NA,2022-02-15 18:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996000-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604083",NA,"as N","Nitrogen","Dissolved","9.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996000-0215-4-C/results/953604083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:34","STORET",7,NA,2022-02-15 18:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996000-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604098",NA,"as N","Nitrogen","Total","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996000-0315-4-C/results/953604098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:35","STORET",7,NA,2022-03-15 19:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996000-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604103",NA,"as N","Nitrogen","Dissolved","10.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996000-0315-4-C/results/953604103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:35","STORET",7,NA,2022-03-15 19:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996040-1021-4-C","Sample-Routine","Water",NA,2021-10-21,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604119",NA,"as N","Nitrogen","Total","6.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996040-1021-4-C/results/953604119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:36","STORET",7,NA,2021-10-21 18:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996040-1021-4-C","Sample-Routine","Water",NA,2021-10-21,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604124",NA,"as N","Nitrogen","Dissolved","6.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996040-1021-4-C/results/953604124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:36","STORET",7,NA,2021-10-21 18:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996040-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604140",NA,"as N","Nitrogen","Total","7.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996040-1117-4-C/results/953604140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:37","STORET",7,NA,2021-11-17 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996040-1117-4-C","Sample-Routine","Water",NA,2021-11-17,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996040","Dry Ck Near Utah Lake-WLA",NA,NA,NA,NA,"40.1809900000","-111.6710600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604145",NA,"as N","Nitrogen","Dissolved","7.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996040-1117-4-C/results/953604145/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:37","STORET",7,NA,2021-11-17 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1809900000","-111.6710600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.18099,-111.67106,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996044-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"10:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604159",NA,"as N","Nitrogen","Total","3.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996044-1028-4-C/results/953604159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:38","STORET",7,NA,2021-10-28 17:58:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996044-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"10:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604164",NA,"as N","Nitrogen","Dissolved","4.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996044-1028-4-C/results/953604164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:38","STORET",7,NA,2021-10-28 17:58:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996044-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604178",NA,"as N","Nitrogen","Total","2.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996044-1116-4-C/results/953604178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:39","STORET",7,NA,2021-11-16 18:55:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996044-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604183",NA,"as N","Nitrogen","Dissolved","2.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996044-1116-4-C/results/953604183/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:39","STORET",7,NA,2021-11-16 18:55:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996044-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604197",NA,"as N","Nitrogen","Total","2.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996044-1208-4-C/results/953604197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:39","STORET",7,NA,2021-12-08 19:00:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996044-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604202",NA,"as N","Nitrogen","Dissolved","2.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996044-1208-4-C/results/953604202/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:40","STORET",7,NA,2021-12-08 19:00:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.72,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996044-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604215",NA,"as N","Nitrogen","Total","3.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996044-0124-4-C/results/953604215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:40","STORET",7,NA,2022-01-24 18:45:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996044-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604220",NA,"as N","Nitrogen","Dissolved","3.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996044-0124-4-C/results/953604220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:40","STORET",7,NA,2022-01-24 18:45:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996044-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604233",NA,"as N","Nitrogen","Total","2.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996044-0215-4-C/results/953604233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:41","STORET",7,NA,2022-02-15 18:50:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.85,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996044-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604238",NA,"as N","Nitrogen","Dissolved","2.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996044-0215-4-C/results/953604238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:41","STORET",7,NA,2022-02-15 18:50:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996044-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604252",NA,"as N","Nitrogen","Total","2.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996044-0315-4-C/results/953604252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:42","STORET",7,NA,2022-03-15 19:35:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996044-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604257",NA,"as N","Nitrogen","Dissolved","2.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996044-0315-4-C/results/953604257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:42","STORET",7,NA,2022-03-15 19:35:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996100-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604271",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996100-1028-4-C/results/953604271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:43","STORET",7,NA,2021-10-28 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996100-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604276",NA,"as N","Nitrogen","Dissolved","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996100-1028-4-C/results/953604276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:43","STORET",7,NA,2021-10-28 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996100-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604290",NA,"as N","Nitrogen","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996100-1116-4-C/results/953604290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:44","STORET",7,NA,2021-11-16 19:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996100-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604295",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996100-1116-4-C/results/953604295/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:44","STORET",7,NA,2021-11-16 19:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996100-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604309",NA,"as N","Nitrogen","Total","0.922","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996100-1208-4-C/results/953604309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:45","STORET",7,NA,2021-12-08 19:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.922,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996100-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604314",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996100-1208-4-C/results/953604314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:45","STORET",7,NA,2021-12-08 19:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996100-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604327",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996100-0124-4-C/results/953604327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:46","STORET",7,NA,2022-01-24 19:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996100-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604332",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996100-0124-4-C/results/953604332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:46","STORET",7,NA,2022-01-24 19:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996100-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604345",NA,"as N","Nitrogen","Total","0.854","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996100-0215-4-C/results/953604345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:46","STORET",7,NA,2022-02-15 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.854,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996100-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604350",NA,"as N","Nitrogen","Dissolved","0.826","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996100-0215-4-C/results/953604350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:47","STORET",7,NA,2022-02-15 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.826,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996100-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604364",NA,"as N","Nitrogen","Total","0.661","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996100-0315-4-C/results/953604364/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:47","STORET",7,NA,2022-03-15 19:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.661,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996100-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604369",NA,"as N","Nitrogen","Dissolved","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996100-0315-4-C/results/953604369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:47","STORET",7,NA,2022-03-15 19:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996275-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604383",NA,"as N","Nitrogen","Total","8.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996275-1028-4-C/results/953604383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:48","STORET",7,NA,2021-10-28 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.56,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996275-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604388",NA,"as N","Nitrogen","Dissolved","8.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996275-1028-4-C/results/953604388/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:48","STORET",7,NA,2021-10-28 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996275-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604402",NA,"as N","Nitrogen","Total","9.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996275-1116-4-C/results/953604402/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:49","STORET",7,NA,2021-11-16 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996275-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604407",NA,"as N","Nitrogen","Dissolved","9.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996275-1116-4-C/results/953604407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:49","STORET",7,NA,2021-11-16 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996275-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604421",NA,"as N","Nitrogen","Total","11.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996275-1208-4-C/results/953604421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:50","STORET",7,NA,2021-12-08 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996275-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604426",NA,"as N","Nitrogen","Dissolved","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996275-1208-4-C/results/953604426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:50","STORET",7,NA,2021-12-08 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996275-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604439",NA,"as N","Nitrogen","Total","6.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996275-0124-4-C/results/953604439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:51","STORET",7,NA,2022-01-24 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996275-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604444",NA,"as N","Nitrogen","Dissolved","6.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996275-0124-4-C/results/953604444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:51","STORET",7,NA,2022-01-24 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996275-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604457",NA,"as N","Nitrogen","Total","7.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996275-0215-4-C/results/953604457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:52","STORET",7,NA,2022-02-15 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996275-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604462",NA,"as N","Nitrogen","Dissolved","7.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996275-0215-4-C/results/953604462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:52","STORET",7,NA,2022-02-15 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996275-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604476",NA,"as N","Nitrogen","Total","7.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996275-0315-4-C/results/953604476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:53","STORET",7,NA,2022-03-15 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996275-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604481",NA,"as N","Nitrogen","Dissolved","7.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996275-0315-4-C/results/953604481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:53","STORET",7,NA,2022-03-15 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996540-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604497",NA,"as N","Nitrogen","Total","12.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996540-1028-4-C/results/953604497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:55","STORET",7,NA,2021-10-28 18:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996540-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604502",NA,"as N","Nitrogen","Dissolved","12.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996540-1028-4-C/results/953604502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:55","STORET",7,NA,2021-10-28 18:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996540-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604518",NA,"as N","Nitrogen","Total","12.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996540-1116-4-C/results/953604518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:56","STORET",7,NA,2021-11-16 19:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996540-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604523",NA,"as N","Nitrogen","Dissolved","12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996540-1116-4-C/results/953604523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:56","STORET",7,NA,2021-11-16 19:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996540-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604539",NA,"as N","Nitrogen","Total","13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996540-1208-4-C/results/953604539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:57","STORET",7,NA,2021-12-08 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996540-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604544",NA,"as N","Nitrogen","Dissolved","13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996540-1208-4-C/results/953604544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:57","STORET",7,NA,2021-12-08 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996540-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604559",NA,"as N","Nitrogen","Total","11.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996540-0124-4-C/results/953604559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:58","STORET",7,NA,2022-01-24 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996540-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604564",NA,"as N","Nitrogen","Dissolved","11.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996540-0124-4-C/results/953604564/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:00:59","STORET",7,NA,2022-01-24 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996540-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604578",NA,"as N","Nitrogen","Total","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996540-0215-4-C/results/953604578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:00","STORET",7,NA,2022-02-15 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996540-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604583",NA,"as N","Nitrogen","Dissolved","10.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996540-0215-4-C/results/953604583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:00","STORET",7,NA,2022-02-15 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996540-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604598",NA,"as N","Nitrogen","Total","9.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996540-0315-4-C/results/953604598/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:01","STORET",7,NA,2022-03-15 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996540-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604603",NA,"as N","Nitrogen","Dissolved","9.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996540-0315-4-C/results/953604603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:01","STORET",7,NA,2022-03-15 20:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996566-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604619",NA,"as N","Nitrogen","Total","9.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996566-1028-4-C/results/953604619/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:02","STORET",7,NA,2021-10-28 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996566-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604624",NA,"as N","Nitrogen","Dissolved","9.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996566-1028-4-C/results/953604624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:02","STORET",7,NA,2021-10-28 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996566-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604640",NA,"as N","Nitrogen","Total","10.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996566-1116-4-C/results/953604640/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:03","STORET",7,NA,2021-11-16 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996566-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604645",NA,"as N","Nitrogen","Dissolved","10.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996566-1116-4-C/results/953604645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:04","STORET",7,NA,2021-11-16 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996566-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604661",NA,"as N","Nitrogen","Total","11.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996566-1208-4-C/results/953604661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:05","STORET",7,NA,2021-12-08 19:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996566-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604666",NA,"as N","Nitrogen","Dissolved","11.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996566-1208-4-C/results/953604666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:05","STORET",7,NA,2021-12-08 19:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996566-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604681",NA,"as N","Nitrogen","Total","10.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996566-0124-4-C/results/953604681/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:06","STORET",7,NA,2022-01-24 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996566-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604686",NA,"as N","Nitrogen","Dissolved","9.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996566-0124-4-C/results/953604686/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:06","STORET",7,NA,2022-01-24 19:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996566-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604699",NA,"as N","Nitrogen","Total","9.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996566-0215-4-C/results/953604699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:07","STORET",7,NA,2022-02-15 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996566-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604704",NA,"as N","Nitrogen","Dissolved","9.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996566-0215-4-C/results/953604704/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:07","STORET",7,NA,2022-02-15 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996566-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604719",NA,"as N","Nitrogen","Total","8.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996566-0315-4-C/results/953604719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:08","STORET",7,NA,2022-03-15 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996566-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604724",NA,"as N","Nitrogen","Dissolved","7.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996566-0315-4-C/results/953604724/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:08","STORET",7,NA,2022-03-15 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211011-4996658-1012-4-C","Sample-Routine","Water",NA,2021-10-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996658","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel",NA,NA,NA,NA,"40.2132500000","-111.6626300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604733",NA,"as N","Nitrogen","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211011-4996658-1012-4-C/results/953604733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:09","STORET",7,NA,2021-10-12 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2132500000","-111.6626300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.21325,-111.66263,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211011-4996658-1012-4-C","Sample-Routine","Water",NA,2021-10-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996658","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel",NA,NA,NA,NA,"40.2132500000","-111.6626300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604738",NA,"as N","Nitrogen","Dissolved","1.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211011-4996658-1012-4-C/results/953604738/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:09","STORET",7,NA,2021-10-12 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2132500000","-111.6626300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.85,"MG/L","Numeric","Not Reviewed","Uncensored",40.21325,-111.66263,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211018-4996658-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996658","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel",NA,NA,NA,NA,"40.2132500000","-111.6626300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604750",NA,"as N","Nitrogen","Total","1.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211018-4996658-1019-4-C/results/953604750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:09","STORET",7,NA,2021-10-19 17:30:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2132500000","-111.6626300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.21325,-111.66263,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211018-4996658-1019-4-C","Sample-Routine","Water",NA,2021-10-19,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996658","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel",NA,NA,NA,NA,"40.2132500000","-111.6626300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604755",NA,"as N","Nitrogen","Dissolved","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211018-4996658-1019-4-C/results/953604755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:10","STORET",7,NA,2021-10-19 17:30:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2132500000","-111.6626300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.21325,-111.66263,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211025-4996658-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996658","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel",NA,NA,NA,NA,"40.2132500000","-111.6626300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604767",NA,"as N","Nitrogen","Total","1.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4996658-1025-4-C/results/953604767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:10","STORET",7,NA,2021-10-25 17:15:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2132500000","-111.6626300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.21325,-111.66263,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211025-4996658-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996658","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel",NA,NA,NA,NA,"40.2132500000","-111.6626300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604772",NA,"as N","Nitrogen","Dissolved","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4996658-1025-4-C/results/953604772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:10","STORET",7,NA,2021-10-25 17:15:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2132500000","-111.6626300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.21325,-111.66263,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211025-4996658-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996658","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel",NA,NA,NA,NA,"40.2132500000","-111.6626300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604780",NA,"as N","Nitrogen","Total","2.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4996658-1026-4-C/results/953604780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:11","STORET",7,NA,2021-10-26 17:25:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2132500000","-111.6626300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.21325,-111.66263,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-ULSTORM211025-4996658-1026-4-C","Sample-Routine","Water",NA,2021-10-26,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"350","General Water Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996658","1546 S. Towne Center Blvd, NW parking lot entrance utility parcel",NA,NA,NA,NA,"40.2132500000","-111.6626300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604789",NA,"as N","Nitrogen","Dissolved","2.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-ULSTORM211025-4996658-1026-4-C/results/953604789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:11","STORET",7,NA,2021-10-26 17:25:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.2132500000","-111.6626300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Samples for a variety of programs.",NA,NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.21325,-111.66263,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996680-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604806",NA,"as N","Nitrogen","Total","0.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996680-1028-4-C/results/953604806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:12","STORET",7,NA,2021-10-28 18:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-4996680-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604811",NA,"as N","Nitrogen","Dissolved","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-4996680-1028-4-C/results/953604811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:12","STORET",7,NA,2021-10-28 18:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996680-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604825",NA,"as N","Nitrogen","Total","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996680-1116-4-C/results/953604825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:13","STORET",7,NA,2021-11-16 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-4996680-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604830",NA,"as N","Nitrogen","Dissolved","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-4996680-1116-4-C/results/953604830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:13","STORET",7,NA,2021-11-16 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996680-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604844",NA,"as N","Nitrogen","Total","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996680-1208-4-C/results/953604844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:13","STORET",7,NA,2021-12-08 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-4996680-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604849",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-4996680-1208-4-C/results/953604849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:14","STORET",7,NA,2021-12-08 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996680-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604862",NA,"as N","Nitrogen","Total","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996680-0124-4-C/results/953604862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:15","STORET",7,NA,2022-01-24 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-4996680-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604867",NA,"as N","Nitrogen","Dissolved","0.635","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-4996680-0124-4-C/results/953604867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:15","STORET",7,NA,2022-01-24 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.635,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996680-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604880",NA,"as N","Nitrogen","Total","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996680-0215-4-C/results/953604880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:16","STORET",7,NA,2022-02-15 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-4996680-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604885",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-02-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-4996680-0215-4-C/results/953604885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:16","STORET",7,NA,2022-02-15 19:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996680-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604899",NA,"as N","Nitrogen","Total","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996680-0315-4-C/results/953604899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:17","STORET",7,NA,2022-03-15 20:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-4996680-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604904",NA,"as N","Nitrogen","Dissolved","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-4996680-0315-4-C/results/953604904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:17","STORET",7,NA,2022-03-15 20:55:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-4996880-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604910",NA,"as N","Nitrogen","Total","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996880-1025-4-C/results/953604910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:17","STORET",7,NA,2021-10-25 19:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-4996880-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604913",NA,"as N","Nitrogen","Dissolved","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996880-1025-4-C/results/953604913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:18","STORET",7,NA,2021-10-25 19:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996880-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"12:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604919",NA,"as N","Nitrogen","Total","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996880-1207-4-C/results/953604919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:18","STORET",7,NA,2021-12-07 19:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996880-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"12:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604922",NA,"as N","Nitrogen","Dissolved","1.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996880-1207-4-C/results/953604922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:18","STORET",7,NA,2021-12-07 19:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996880-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604928",NA,"as N","Nitrogen","Total","1.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996880-0302-4-C/results/953604928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:19","STORET",7,NA,2022-03-02 19:35:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996880-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996880","Spring Creek piped diversion above Roundy Lane",NA,NA,NA,NA,"40.3894300000","-111.4312600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604931",NA,"as N","Nitrogen","Dissolved","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996880-0302-4-C/results/953604931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:19","STORET",7,NA,2022-03-02 19:35:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3894300000","-111.4312600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.38943,-111.43126,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-4996903-1025-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-25,"15:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604937","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996903-1025-4-C/results/953604937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:19","STORET",7,NA,2021-10-25 22:14:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-4996903-1025-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-25,"15:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604940","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996903-1025-4-C/results/953604940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:19","STORET",7,NA,2021-10-25 22:14:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996903-1207-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-07,"13:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604964","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996903-1207-4-C/results/953604964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:21","STORET",7,NA,2021-12-07 20:47:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996903-1207-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-07,"13:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604967",NA,"as N","Nitrogen","Dissolved","0.218","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996903-1207-4-C/results/953604967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:21","STORET",7,NA,2021-12-07 20:47:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.218,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996903-0302-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-02,"16:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604973","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996903-0302-4-C/results/953604973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:21","STORET",7,NA,2022-03-02 23:11:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996903-0302-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-02,"16:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953604976","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996903-0302-4-C/results/953604976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:22","STORET",7,NA,2022-03-02 23:11:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996905-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605000",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996905-1207-4-C/results/953605000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:23","STORET",7,NA,2021-12-07 18:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996905-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605003",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996905-1207-4-C/results/953605003/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:23","STORET",7,NA,2021-12-07 18:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996905-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"12:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605009",NA,"as N","Nitrogen","Total","0.177","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996905-0302-4-C/results/953605009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:24","STORET",7,NA,2022-03-02 19:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.177,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996905-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"12:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605012",NA,"as N","Nitrogen","Dissolved","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996905-0302-4-C/results/953605012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:24","STORET",7,NA,2022-03-02 19:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996906-1207-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-07,"11:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605018",NA,"as N","Nitrogen","Total","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996906-1207-4-C/results/953605018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:24","STORET",7,NA,2021-12-07 18:57:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996906-1207-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-07,"11:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605021",NA,"as N","Nitrogen","Dissolved","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996906-1207-4-C/results/953605021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:25","STORET",7,NA,2021-12-07 18:57:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996906-0302-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-02,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605027",NA,"as N","Nitrogen","Total","0.171","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996906-0302-4-C/results/953605027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:25","STORET",7,NA,2022-03-02 19:20:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.171,"MG/L","Numeric","Pass","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996906-0302-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-02,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605030",NA,"as N","Nitrogen","Dissolved","0.938","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996906-0302-4-C/results/953605030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:25","STORET",7,NA,2022-03-02 19:20:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.938,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996910-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605036",NA,"as N","Nitrogen","Total","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996910-1207-4-C/results/953605036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:25","STORET",7,NA,2021-12-07 18:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996910-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605039",NA,"as N","Nitrogen","Dissolved","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996910-1207-4-C/results/953605039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:25","STORET",7,NA,2021-12-07 18:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996910-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"11:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605045",NA,"as N","Nitrogen","Total","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996910-0302-4-C/results/953605045/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:26","STORET",7,NA,2022-03-02 18:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-4996910-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"11:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605048",NA,"as N","Nitrogen","Dissolved","0.181","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-4996910-0302-4-C/results/953605048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:26","STORET",7,NA,2022-03-02 18:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.181,"MG/L","Numeric","Pass","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-4996913-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605054",NA,"as N","Nitrogen","Total","0.147","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996913-1025-4-C/results/953605054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:26","STORET",7,NA,2021-10-25 18:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.147,"MG/L","Numeric","Pass","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-4996913-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605057",NA,"as N","Nitrogen","Dissolved","0.085","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-4996913-1025-4-C/results/953605057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:26","STORET",7,NA,2021-10-25 18:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.085,"MG/L","Numeric","Pass","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996913-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"10:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605063",NA,"as N","Nitrogen","Total","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996913-1207-4-C/results/953605063/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:27","STORET",7,NA,2021-12-07 17:52:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-4996913-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"10:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605066",NA,"as N","Nitrogen","Dissolved","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-4996913-1207-4-C/results/953605066/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:27","STORET",7,NA,2021-12-07 17:52:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999252-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4999252","Summit Creek 0.9 mile ab National Forest booundary",NA,NA,NA,NA,"39.9415700000","-111.7729700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605074",NA,"as N","Nitrogen","Total","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999252-1025-4-C/results/953605074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:27","STORET",7,NA,2021-10-25 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9415700000","-111.7729700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",39.94157,-111.77297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-4999252-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4999252","Summit Creek 0.9 mile ab National Forest booundary",NA,NA,NA,NA,"39.9415700000","-111.7729700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605077",NA,"as N","Nitrogen","Dissolved","0.475","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-4999252-1025-4-C/results/953605077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:27","STORET",7,NA,2021-10-25 17:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9415700000","-111.7729700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.475,"MG/L","Numeric","Not Reviewed","Uncensored",39.94157,-111.77297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-5910280-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605101",NA,"as N","Nitrogen","Total","1.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910280-1025-4-C/results/953605101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:28","STORET",7,NA,2021-10-25 19:21:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-5910280-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605104",NA,"as N","Nitrogen","Dissolved","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910280-1025-4-C/results/953605104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:29","STORET",7,NA,2021-10-25 19:21:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-5910280-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605110",NA,"as N","Nitrogen","Total","1.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910280-1207-4-C/results/953605110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:29","STORET",7,NA,2021-12-07 18:35:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.95,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-5910280-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605113",NA,"as N","Nitrogen","Dissolved","1.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910280-1207-4-C/results/953605113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:29","STORET",7,NA,2021-12-07 18:35:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-5910280-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605119",NA,"as N","Nitrogen","Total","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910280-0302-4-C/results/953605119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:29","STORET",7,NA,2022-03-02 18:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-5910280-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605122",NA,"as N","Nitrogen","Dissolved","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910280-0302-4-C/results/953605122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:29","STORET",7,NA,2022-03-02 18:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-5910290-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605128",NA,"as N","Nitrogen","Total","0.595","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910290-1025-4-C/results/953605128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:30","STORET",7,NA,2021-10-25 20:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.595,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-5910290-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605131",NA,"as N","Nitrogen","Dissolved","0.565","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910290-1025-4-C/results/953605131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:30","STORET",7,NA,2021-10-25 20:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.565,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-5910290-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605137",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910290-1207-4-C/results/953605137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:30","STORET",7,NA,2021-12-07 20:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-5910290-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605140",NA,"as N","Nitrogen","Dissolved","0.957","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910290-1207-4-C/results/953605140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:31","STORET",7,NA,2021-12-07 20:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.957,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-5910290-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"13:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605146",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910290-0302-4-C/results/953605146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:31","STORET",7,NA,2022-03-02 20:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-5910290-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"13:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605149",NA,"as N","Nitrogen","Dissolved","0.975","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910290-0302-4-C/results/953605149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:31","STORET",7,NA,2022-03-02 20:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.975,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-5910619-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"14:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605155",NA,"as N","Nitrogen","Total","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910619-1025-4-C/results/953605155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:31","STORET",7,NA,2021-10-25 21:22:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-5910619-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"14:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605158",NA,"as N","Nitrogen","Dissolved","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910619-1025-4-C/results/953605158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:32","STORET",7,NA,2021-10-25 21:22:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-5910619-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"13:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605182",NA,"as N","Nitrogen","Total","0.678","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910619-1207-4-C/results/953605182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:33","STORET",7,NA,2021-12-07 20:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.678,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-5910619-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"13:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605185",NA,"as N","Nitrogen","Dissolved","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910619-1207-4-C/results/953605185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:33","STORET",7,NA,2021-12-07 20:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-5910619-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"14:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605191",NA,"as N","Nitrogen","Total","0.626","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910619-0302-4-C/results/953605191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:33","STORET",7,NA,2022-03-02 21:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.626,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-5910619-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"14:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605194",NA,"as N","Nitrogen","Dissolved","0.583","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910619-0302-4-C/results/953605194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:33","STORET",7,NA,2022-03-02 21:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.583,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-5910620-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"13:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605218",NA,"as N","Nitrogen","Total","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910620-1025-4-C/results/953605218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:34","STORET",7,NA,2021-10-25 20:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211025-5910620-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"13:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605221",NA,"as N","Nitrogen","Dissolved","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211025-5910620-1025-4-C/results/953605221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:34","STORET",7,NA,2021-10-25 20:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-5910620-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"12:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605227",NA,"as N","Nitrogen","Total","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910620-1207-4-C/results/953605227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:34","STORET",7,NA,2021-12-07 19:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK211207-5910620-1207-4-C","Sample-Routine","Water",NA,2021-12-07,"12:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605230",NA,"as N","Nitrogen","Dissolved","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK211207-5910620-1207-4-C/results/953605230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:34","STORET",7,NA,2021-12-07 19:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-5910620-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"13:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605236",NA,"as N","Nitrogen","Total","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910620-0302-4-C/results/953605236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:34","STORET",7,NA,2022-03-02 20:27:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220302-5910620-0302-4-C","Sample-Routine","Water",NA,2022-03-02,"13:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605239",NA,"as N","Nitrogen","Dissolved","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220302-5910620-0302-4-C/results/953605239/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:34","STORET",7,NA,2022-03-02 20:27:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-5919910-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"10:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605253",NA,"as N","Nitrogen","Total","10.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-5919910-1028-4-C/results/953605253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:35","STORET",7,NA,2021-10-28 17:28:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211025-5919910-1028-4-C","Sample-Routine","Water",NA,2021-10-28,"10:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605258",NA,"as N","Nitrogen","Dissolved","11.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211025-5919910-1028-4-C/results/953605258/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:35","STORET",7,NA,2021-10-28 17:28:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-5919910-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605272",NA,"as N","Nitrogen","Total","9.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-5919910-1116-4-C/results/953605272/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:36","STORET",7,NA,2021-11-16 18:15:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211115-5919910-1116-4-C","Sample-Routine","Water",NA,2021-11-16,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605277",NA,"as N","Nitrogen","Dissolved","9.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211115-5919910-1116-4-C/results/953605277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:36","STORET",7,NA,2021-11-16 18:15:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-5919910-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605291",NA,"as N","Nitrogen","Total","11.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-5919910-1208-4-C/results/953605291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:37","STORET",7,NA,2021-12-08 18:20:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK211202-5919910-1208-4-C","Sample-Routine","Water",NA,2021-12-08,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605296",NA,"as N","Nitrogen","Dissolved","12.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK211202-5919910-1208-4-C/results/953605296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:37","STORET",7,NA,2021-12-08 18:20:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-5919910-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605309",NA,"as N","Nitrogen","Total","7.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-5919910-0124-4-C/results/953605309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:38","STORET",7,NA,2022-01-24 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220124-5919910-0124-4-C","Sample-Routine","Water",NA,2022-01-24,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605314",NA,"as N","Nitrogen","Dissolved","6.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220124-5919910-0124-4-C/results/953605314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:38","STORET",7,NA,2022-01-24 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-5919910-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605327",NA,"as N","Nitrogen","Total","7.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-5919910-0215-4-C/results/953605327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:39","STORET",7,NA,2022-02-15 18:03:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220215-5919910-0215-4-C","Sample-Routine","Water",NA,2022-02-15,"11:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605332",NA,"as N","Nitrogen","Dissolved","7.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220215-5919910-0215-4-C/results/953605332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:39","STORET",7,NA,2022-02-15 18:03:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-5919910-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605346",NA,"as N","Nitrogen","Total","7.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-5919910-0315-4-C/results/953605346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:40","STORET",7,NA,2022-03-15 18:30:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220314-5919910-0315-4-C","Sample-Routine","Water",NA,2022-03-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605351",NA,"as N","Nitrogen","Dissolved","7.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220314-5919910-0315-4-C/results/953605351/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:40","STORET",7,NA,2022-03-15 18:30:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-5919920-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"12:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605357",NA,"as N","Nitrogen","Total","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919920-1130-4-C/results/953605357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:40","STORET",7,NA,2021-11-30 19:53:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-5919920-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"12:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605360",NA,"as N","Nitrogen","Dissolved","0.326","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919920-1130-4-C/results/953605360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:40","STORET",7,NA,2021-11-30 19:53:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.326,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-5919920-0119-4-C","Sample-Routine","Water",NA,2022-01-19,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605366",NA,"as N","Nitrogen","Total","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919920-0119-4-C/results/953605366/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:40","STORET",7,NA,2022-01-19 17:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-5919920-0119-4-C","Sample-Routine","Water",NA,2022-01-19,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605369",NA,"as N","Nitrogen","Dissolved","0.407","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919920-0119-4-C/results/953605369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:41","STORET",7,NA,2022-01-19 17:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.407,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-5919920-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"09:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605375",NA,"as N","Nitrogen","Total","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919920-0330-4-C/results/953605375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:41","STORET",7,NA,2022-03-30 16:52:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-5919920-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"09:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605378",NA,"as N","Nitrogen","Dissolved","0.808","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919920-0330-4-C/results/953605378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:41","STORET",7,NA,2022-03-30 16:52:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.808,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-5919942-1130-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-30,"15:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605384","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919942-1130-4-C/results/953605384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:41","STORET",7,NA,2021-11-30 22:17:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-5919942-1130-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-30,"15:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605387","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919942-1130-4-C/results/953605387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:41","STORET",7,NA,2021-11-30 22:17:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-5919942-0119-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-19,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605393","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919942-0119-4-C/results/953605393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:42","STORET",7,NA,2022-01-19 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-5919942-0119-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-19,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605396","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919942-0119-4-C/results/953605396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:42","STORET",7,NA,2022-01-19 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-5919942-0330-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-30,"13:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605402","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919942-0330-4-C/results/953605402/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:42","STORET",7,NA,2022-03-30 20:07:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-5919942-0330-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-30,"13:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605405","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919942-0330-4-C/results/953605405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:42","STORET",7,NA,2022-03-30 20:07:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-5919970-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"13:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605411",NA,"as N","Nitrogen","Total","0.418","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919970-1130-4-C/results/953605411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:43","STORET",7,NA,2021-11-30 20:34:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.418,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-5919970-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"13:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605414",NA,"as N","Nitrogen","Dissolved","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919970-1130-4-C/results/953605414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:43","STORET",7,NA,2021-11-30 20:34:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-5919970-0119-4-C","Sample-Routine","Water",NA,2022-01-19,"10:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605420",NA,"as N","Nitrogen","Total","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919970-0119-4-C/results/953605420/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:43","STORET",7,NA,2022-01-19 17:58:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-5919970-0119-4-C","Sample-Routine","Water",NA,2022-01-19,"10:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605423",NA,"as N","Nitrogen","Dissolved","0.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919970-0119-4-C/results/953605423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:43","STORET",7,NA,2022-01-19 17:58:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-5919970-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"10:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605429",NA,"as N","Nitrogen","Total","0.657","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919970-0330-4-C/results/953605429/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:44","STORET",7,NA,2022-03-30 17:56:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.657,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-5919970-0330-4-C","Sample-Routine","Water",NA,2022-03-30,"10:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605432",NA,"as N","Nitrogen","Dissolved","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919970-0330-4-C/results/953605432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:44","STORET",7,NA,2022-03-30 17:56:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-5919971-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-30,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605438",NA,"as N","Nitrogen","Total","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919971-1130-4-C/results/953605438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:45","STORET",7,NA,2021-11-30 20:35:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR211130-5919971-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-30,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605441",NA,"as N","Nitrogen","Dissolved","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR211130-5919971-1130-4-C/results/953605441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:45","STORET",7,NA,2021-11-30 20:35:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-5919971-0119-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-19,"10:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605447",NA,"as N","Nitrogen","Total","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919971-0119-4-C/results/953605447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:46","STORET",7,NA,2022-01-19 17:59:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220119-5919971-0119-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-19,"10:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605450",NA,"as N","Nitrogen","Dissolved","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220119-5919971-0119-4-C/results/953605450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:46","STORET",7,NA,2022-01-19 17:59:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-5919971-0330-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-30,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605456",NA,"as N","Nitrogen","Total","0.676","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919971-0330-4-C/results/953605456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:46","STORET",7,NA,2022-03-30 17:57:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.676,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220330-5919971-0330-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-30,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605459",NA,"as N","Nitrogen","Dissolved","0.827","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220330-5919971-0330-4-C/results/953605459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:47","STORET",7,NA,2022-03-30 17:57:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.827,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931467-1102-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-02,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605465",NA,"as N","Nitrogen","Total","0.094","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931467-1102-4-C/results/953605465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:47","STORET",7,NA,2021-11-02 20:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.094,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931467-1102-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-02,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605468","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931467-1102-4-C/results/953605468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:47","STORET",7,NA,2021-11-02 20:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931467-1130-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-30,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605474","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931467-1130-4-C/results/953605474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:48","STORET",7,NA,2021-11-30 18:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931467-1130-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-30,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605477",NA,"as N","Nitrogen","Dissolved","0.609","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931467-1130-4-C/results/953605477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:48","STORET",7,NA,2021-11-30 18:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.609,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931467-0328-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-28,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605483","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931467-0328-4-C/results/953605483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:48","STORET",7,NA,2022-03-28 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931467-0328-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-28,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605486","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931467-0328-4-C/results/953605486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:48","STORET",7,NA,2022-03-28 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931480-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605492",NA,"as N","Nitrogen","Total","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931480-1102-4-C/results/953605492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:49","STORET",7,NA,2021-11-02 18:40:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931480-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605495",NA,"as N","Nitrogen","Dissolved","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931480-1102-4-C/results/953605495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:49","STORET",7,NA,2021-11-02 18:40:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931480-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605501",NA,"as N","Nitrogen","Total","0.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931480-1130-4-C/results/953605501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:50","STORET",7,NA,2021-11-30 17:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.51,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931480-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605504",NA,"as N","Nitrogen","Dissolved","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931480-1130-4-C/results/953605504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:50","STORET",7,NA,2021-11-30 17:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931480-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605510",NA,"as N","Nitrogen","Total","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931480-0328-4-C/results/953605510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:50","STORET",7,NA,2022-03-28 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931480-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605513",NA,"as N","Nitrogen","Dissolved","0.543","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931480-0328-4-C/results/953605513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:50","STORET",7,NA,2022-03-28 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.543,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931481-1102-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-02,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605519",NA,"as N","Nitrogen","Total","0.734","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931481-1102-4-C/results/953605519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:51","STORET",7,NA,2021-11-02 18:50:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.734,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931481-1102-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-02,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605522",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931481-1102-4-C/results/953605522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:51","STORET",7,NA,2021-11-02 18:50:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931481-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-30,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605528",NA,"as N","Nitrogen","Total","0.483","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931481-1130-4-C/results/953605528/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:51","STORET",7,NA,2021-11-30 17:50:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.483,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931481-1130-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-30,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605531",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931481-1130-4-C/results/953605531/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:51","STORET",7,NA,2021-11-30 17:50:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931481-0328-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-28,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605537",NA,"as N","Nitrogen","Total","0.551","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931481-0328-4-C/results/953605537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:52","STORET",7,NA,2022-03-28 18:05:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.551,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931481-0328-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-28,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605540",NA,"as N","Nitrogen","Dissolved","0.494","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931481-0328-4-C/results/953605540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:52","STORET",7,NA,2022-03-28 18:05:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.494,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931510-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605546",NA,"as N","Nitrogen","Total","0.681","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931510-1102-4-C/results/953605546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:52","STORET",7,NA,2021-11-02 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.681,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931510-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605549",NA,"as N","Nitrogen","Dissolved","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931510-1102-4-C/results/953605549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:53","STORET",7,NA,2021-11-02 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931510-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605555",NA,"as N","Nitrogen","Total","0.513","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931510-1130-4-C/results/953605555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:53","STORET",7,NA,2021-11-30 17:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.513,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931510-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605558",NA,"as N","Nitrogen","Dissolved","0.626","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931510-1130-4-C/results/953605558/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:53","STORET",7,NA,2021-11-30 17:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.626,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931510-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605564",NA,"as N","Nitrogen","Total","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931510-0328-4-C/results/953605564/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:54","STORET",7,NA,2022-03-28 17:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931510-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605567",NA,"as N","Nitrogen","Dissolved","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931510-0328-4-C/results/953605567/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:54","STORET",7,NA,2022-03-28 17:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931513-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605573",NA,"as N","Nitrogen","Total","0.541","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931513-1102-4-C/results/953605573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:54","STORET",7,NA,2021-11-02 18:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.541,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931513-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605576",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931513-1102-4-C/results/953605576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:55","STORET",7,NA,2021-11-02 18:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931513-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605582",NA,"as N","Nitrogen","Total","0.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931513-1130-4-C/results/953605582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:55","STORET",7,NA,2021-11-30 17:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.62,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931513-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605585",NA,"as N","Nitrogen","Dissolved","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931513-1130-4-C/results/953605585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:56","STORET",7,NA,2021-11-30 17:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931545-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605591",NA,"as N","Nitrogen","Total","0.624","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931545-1102-4-C/results/953605591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:56","STORET",7,NA,2021-11-02 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.624,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931545-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605594",NA,"as N","Nitrogen","Dissolved","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931545-1102-4-C/results/953605594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:56","STORET",7,NA,2021-11-02 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931545-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605600",NA,"as N","Nitrogen","Total","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931545-1130-4-C/results/953605600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:56","STORET",7,NA,2021-11-30 17:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931545-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605603",NA,"as N","Nitrogen","Dissolved","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931545-1130-4-C/results/953605603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:56","STORET",7,NA,2021-11-30 17:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931545-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605609",NA,"as N","Nitrogen","Total","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931545-0328-4-C/results/953605609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:57","STORET",7,NA,2022-03-28 17:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931545-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605612",NA,"as N","Nitrogen","Dissolved","0.896","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931545-0328-4-C/results/953605612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:57","STORET",7,NA,2022-03-28 17:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.896,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931645-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605618",NA,"as N","Nitrogen","Total","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931645-1102-4-C/results/953605618/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:58","STORET",7,NA,2021-11-02 19:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211102-5931645-1102-4-C","Sample-Routine","Water",NA,2021-11-02,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605621",NA,"as N","Nitrogen","Dissolved","0.318","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211102-5931645-1102-4-C/results/953605621/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:58","STORET",7,NA,2021-11-02 19:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.318,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931645-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605627",NA,"as N","Nitrogen","Total","0.114","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931645-1130-4-C/results/953605627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:58","STORET",7,NA,2021-11-30 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.114,"MG/L","Numeric","Pass","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK211130-5931645-1130-4-C","Sample-Routine","Water",NA,2021-11-30,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605630",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK211130-5931645-1130-4-C/results/953605630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:58","STORET",7,NA,2021-11-30 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931645-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605636",NA,"as N","Nitrogen","Total","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931645-0328-4-C/results/953605636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:59","STORET",7,NA,2022-03-28 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220328-5931645-0328-4-C","Sample-Routine","Water",NA,2022-03-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605639",NA,"as N","Nitrogen","Dissolved","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220328-5931645-0328-4-C/results/953605639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:59","STORET",7,NA,2022-03-28 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937850-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-13,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605649",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937850-1013-2-C/results/953605649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:01:59","STORET",7,NA,2021-10-13 22:10:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937850-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-13,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605653",NA,"as N","Nitrogen","Dissolved","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937850-1013-2-C/results/953605653/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:00","STORET",7,NA,2021-10-13 22:10:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937850-1013-29-C","Sample-Routine","Water",NA,2021-10-13,"15:25:00","MST",NA,NA,NA,"Bottom","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605658",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937850-1013-29-C/results/953605658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:00","STORET",7,NA,2021-10-13 22:25:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937850-1013-29-C","Sample-Routine","Water",NA,2021-10-13,"15:25:00","MST",NA,NA,NA,"Bottom","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605662",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937850-1013-29-C/results/953605662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:00","STORET",7,NA,2021-10-13 22:25:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937852-1013-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937852","MATT WARNER RES AB DAM Replicate of 5937850",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605689",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937852-1013-2-C/results/953605689/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:02","STORET",7,NA,2021-10-13 22:00:00,NA,"Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937852-1013-2-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937852","MATT WARNER RES AB DAM Replicate of 5937850",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605693",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937852-1013-2-C/results/953605693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:02","STORET",7,NA,2021-10-13 22:00:00,NA,"Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937860-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-13,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937860","MATT WARNER RES W MIDLAKE 02",NA,NA,NA,NA,"40.7741000000","-109.3017000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605703",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937860-1013-2-C/results/953605703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:03","STORET",7,NA,2021-10-13 21:10:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.7741,-109.3017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937860-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-13,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937860","MATT WARNER RES W MIDLAKE 02",NA,NA,NA,NA,"40.7741000000","-109.3017000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605707",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937860-1013-2-C/results/953605707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:03","STORET",7,NA,2021-10-13 21:10:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.7741,-109.3017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937870-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-13,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605717",NA,"as N","Nitrogen","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937870-1013-2-C/results/953605717/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:04","STORET",7,NA,2021-10-13 21:25:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES211012-5937870-1013-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-10-13,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605721",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES211012-5937870-1013-2-C/results/953605721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:04","STORET",7,NA,2021-10-13 21:25:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211025-5949855-1025-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-25,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605729","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949855-1025-4-C/results/953605729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:05","STORET",7,NA,2021-10-25 21:00:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211129-5949855-1129-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-11-29,"10:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605738","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949855-1129-4-C/results/953605738/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:05","STORET",7,NA,2021-11-29 17:26:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211213-5949855-1213-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-13,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605747","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949855-1213-4-C/results/953605747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:06","STORET",7,NA,2021-12-13 18:50:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220110-5949855-0110-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-01-10,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605773","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949855-0110-4-C/results/953605773/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:07","STORET",7,NA,2022-01-10 20:30:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220321-5949855-0321-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-21,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605799","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949855-0321-4-C/results/953605799/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:09","STORET",7,NA,2022-03-21 18:45:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211025-5949890-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605825",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949890-1025-4-C/results/953605825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:11","STORET",7,NA,2021-10-25 19:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211129-5949890-1129-4-C","Sample-Routine","Water",NA,2021-11-29,"10:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605834",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949890-1129-4-C/results/953605834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:11","STORET",7,NA,2021-11-29 17:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211213-5949890-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605843",NA,"as N","Nitrogen","Total","0.179","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949890-1213-4-C/results/953605843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:11","STORET",7,NA,2021-12-13 18:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.179,"MG/L","Numeric","Pass","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220110-5949890-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605869",NA,"as N","Nitrogen","Total","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949890-0110-4-C/results/953605869/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:13","STORET",7,NA,2022-01-10 20:25:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220321-5949890-0321-4-C","Sample-Routine","Water",NA,2022-03-21,"10:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605895",NA,"as N","Nitrogen","Total","0.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949890-0321-4-C/results/953605895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:14","STORET",7,NA,2022-03-21 17:32:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.3,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211025-5949892-1025-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-10-25,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605921",NA,"as N","Nitrogen","Total","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949892-1025-4-C/results/953605921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:15","STORET",7,NA,2021-10-25 19:35:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211129-5949892-1129-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-29,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605930",NA,"as N","Nitrogen","Total","0.145","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949892-1129-4-C/results/953605930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:15","STORET",7,NA,2021-11-29 17:30:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.145,"MG/L","Numeric","Pass","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211213-5949892-1213-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-12-13,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605939",NA,"as N","Nitrogen","Total","0.236","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949892-1213-4-C/results/953605939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:16","STORET",7,NA,2021-12-13 18:40:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.236,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220110-5949892-0110-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-01-10,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605965",NA,"as N","Nitrogen","Total","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949892-0110-4-C/results/953605965/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:17","STORET",7,NA,2022-01-10 20:35:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220321-5949892-0321-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-03-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953605991",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949892-0321-4-C/results/953605991/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:18","STORET",7,NA,2022-03-21 17:45:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211025-5949920-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606017",NA,"as N","Nitrogen","Total","0.143","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949920-1025-4-C/results/953606017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:20","STORET",7,NA,2021-10-25 18:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.143,"MG/L","Numeric","Pass","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211129-5949920-1129-4-C","Sample-Routine","Water",NA,2021-11-29,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606026",NA,"as N","Nitrogen","Total","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949920-1129-4-C/results/953606026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:20","STORET",7,NA,2021-11-29 17:55:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211213-5949920-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"10:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606035",NA,"as N","Nitrogen","Total","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949920-1213-4-C/results/953606035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:21","STORET",7,NA,2021-12-13 17:56:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220110-5949920-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606061",NA,"as N","Nitrogen","Total","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949920-0110-4-C/results/953606061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:22","STORET",7,NA,2022-01-10 19:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220321-5949920-0321-4-C","Sample-Routine","Water",NA,2022-03-21,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606087",NA,"as N","Nitrogen","Total","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949920-0321-4-C/results/953606087/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:24","STORET",7,NA,2022-03-21 17:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211025-5949930-1025-4-C","Sample-Routine","Water",NA,2021-10-25,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606113",NA,"as N","Nitrogen","Total","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211025-5949930-1025-4-C/results/953606113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:25","STORET",7,NA,2021-10-25 20:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211129-5949930-1129-4-C","Sample-Routine","Water",NA,2021-11-29,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606122",NA,"as N","Nitrogen","Total","0.192","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-12-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211129-5949930-1129-4-C/results/953606122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:26","STORET",7,NA,2021-11-29 16:45:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.192,"MG/L","Numeric","Pass","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE211213-5949930-1213-4-C","Sample-Routine","Water",NA,2021-12-13,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606131",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE211213-5949930-1213-4-C/results/953606131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:26","STORET",7,NA,2021-12-13 19:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220110-5949930-0110-4-C","Sample-Routine","Water",NA,2022-01-10,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606157",NA,"as N","Nitrogen","Total","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220110-5949930-0110-4-C/results/953606157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:27","STORET",7,NA,2022-01-10 18:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSDIXIE220321-5949930-0321-4-C","Sample-Routine","Water",NA,2022-03-21,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606183",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSDIXIE220321-5949930-0321-4-C/results/953606183/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:29","STORET",7,NA,2022-03-21 18:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-1008-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-08,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606209","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1008-4-C/results/953606209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:31","STORET",7,NA,2021-10-08 15:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-1008-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-08,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606212",NA,"as N","Nitrogen","Dissolved","0.107","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1008-4-C/results/953606212/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:31","STORET",7,NA,2021-10-08 15:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.107,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-1021-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-21,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606238","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1021-4-C/results/953606238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:32","STORET",7,NA,2021-10-21 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-1021-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-21,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606241","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1021-4-C/results/953606241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:33","STORET",7,NA,2021-10-21 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-1028-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-28,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606267","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1028-4-C/results/953606267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:34","STORET",7,NA,2021-10-28 20:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2021-5989995-1028-4-C","Quality Control Sample-Equipment Blank","Water",NA,2021-10-28,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606270",NA,"as N","Nitrogen","Dissolved","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2021-5989995-1028-4-C/results/953606270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:34","STORET",7,NA,2021-10-28 20:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-5994520-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"10:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994520","LAST CHANCE AT BURNING HILLS RD XING",NA,NA,NA,NA,"37.1841500000","-111.3684900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606294",NA,"as N","Nitrogen","Total","0.698","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met. Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994520-1010-4-C/results/953606294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:36","STORET",7,NA,2021-10-10 17:13:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.698,"MG/L","Numeric","Not Reviewed","Uncensored",37.18415,-111.36849,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-5994530-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"11:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606300",NA,"as N","Nitrogen","Total","2.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met. Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994530-1010-4-C/results/953606300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:36","STORET",7,NA,2021-10-10 18:46:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.12,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-5994530-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"11:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606303",NA,"as N","Nitrogen","Dissolved","2.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994530-1010-4-C/results/953606303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:37","STORET",7,NA,2021-10-10 18:46:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.13,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-5994550-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"13:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606326",NA,"as N","Nitrogen","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met. Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994550-1010-4-C/results/953606326/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:38","STORET",7,NA,2021-10-10 20:28:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE211010-5994650-1010-4-C","Sample-Routine","Water",NA,2021-10-10,"15:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606332",NA,"as N","Nitrogen","Total","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-10-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE211010-5994650-1010-4-C/results/953606332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:38","STORET",7,NA,2021-10-10 22:08:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-5995202-1021-4-C","Quality Control Sample-Field Blank","Water",NA,2021-10-21,"16:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606342","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995202-1021-4-C/results/953606342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:39","STORET",7,NA,2021-10-21 23:34:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-5995202-1021-4-C","Quality Control Sample-Field Blank","Water",NA,2021-10-21,"16:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606345","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995202-1021-4-C/results/953606345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:39","STORET",7,NA,2021-10-21 23:34:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-5995202-0311-4-C","Quality Control Sample-Field Blank","Water",NA,2022-03-11,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606375","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995202-0311-4-C/results/953606375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:42","STORET",7,NA,2022-03-11 21:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-5995202-0311-4-C","Quality Control Sample-Field Blank","Water",NA,2022-03-11,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606378",NA,"as N","Nitrogen","Dissolved","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995202-0311-4-C/results/953606378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:42","STORET",7,NA,2022-03-11 21:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-5995220-1024-4-C","Sample-Routine","Water",NA,2021-10-24,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606392",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995220-1024-4-C/results/953606392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:43","STORET",7,NA,2021-10-24 16:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-5995220-1024-4-C","Sample-Routine","Water",NA,2021-10-24,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606395",NA,"as N","Nitrogen","Dissolved","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995220-1024-4-C/results/953606395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:43","STORET",7,NA,2021-10-24 16:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211105-5995220-1105-4-C","Sample-Routine","Water",NA,2021-11-05,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606425",NA,"as N","Nitrogen","Total","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995220-1105-4-C/results/953606425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:45","STORET",7,NA,2021-11-05 18:05:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211105-5995220-1105-4-C","Sample-Routine","Water",NA,2021-11-05,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606428",NA,"as N","Nitrogen","Dissolved","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995220-1105-4-C/results/953606428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:45","STORET",7,NA,2021-11-05 18:05:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220227-5995220-0227-4-C","Sample-Routine","Water",NA,2022-02-27,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606442",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995220-0227-4-C/results/953606442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:46","STORET",7,NA,2022-02-27 19:05:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220227-5995220-0227-4-C","Sample-Routine","Water",NA,2022-02-27,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606445",NA,"as N","Nitrogen","Dissolved","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995220-0227-4-C/results/953606445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:46","STORET",7,NA,2022-02-27 19:05:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-5995220-0311-4-C","Sample-Routine","Water",NA,2022-03-11,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606475",NA,"as N","Nitrogen","Total","0.317","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995220-0311-4-C/results/953606475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:48","STORET",7,NA,2022-03-11 18:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.317,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-5995220-0311-4-C","Sample-Routine","Water",NA,2022-03-11,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606478",NA,"as N","Nitrogen","Dissolved","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995220-0311-4-C/results/953606478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:48","STORET",7,NA,2022-03-11 18:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211105-5995222-1105-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-05,"11:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606492",NA,"as N","Nitrogen","Total","0.819","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995222-1105-4-C/results/953606492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:48","STORET",7,NA,2021-11-05 18:07:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.819,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211105-5995222-1105-4-C","Quality Control Sample-Field Replicate","Water",NA,2021-11-05,"11:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606495",NA,"as N","Nitrogen","Dissolved","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995222-1105-4-C/results/953606495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:48","STORET",7,NA,2021-11-05 18:07:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220227-5995222-0227-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-27,"12:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606509",NA,"as N","Nitrogen","Total","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995222-0227-4-C/results/953606509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:49","STORET",7,NA,2022-02-27 19:08:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220227-5995222-0227-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-02-27,"12:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606512",NA,"as N","Nitrogen","Dissolved","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995222-0227-4-C/results/953606512/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:49","STORET",7,NA,2022-02-27 19:08:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-5995240-1023-4-C","Sample-Routine","Water",NA,2021-10-23,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606542",NA,"as N","Nitrogen","Total","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995240-1023-4-C/results/953606542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:51","STORET",7,NA,2021-10-23 18:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-5995240-1023-4-C","Sample-Routine","Water",NA,2021-10-23,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606545",NA,"as N","Nitrogen","Dissolved","0.205","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995240-1023-4-C/results/953606545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:51","STORET",7,NA,2021-10-23 18:15:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.205,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211105-5995240-1105-4-C","Sample-Routine","Water",NA,2021-11-05,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606575",NA,"as N","Nitrogen","Total","0.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995240-1105-4-C/results/953606575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:53","STORET",7,NA,2021-11-05 16:10:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.35,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211105-5995240-1105-4-C","Sample-Routine","Water",NA,2021-11-05,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606578",NA,"as N","Nitrogen","Dissolved","0.371","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995240-1105-4-C/results/953606578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:53","STORET",7,NA,2021-11-05 16:10:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.371,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220227-5995240-0227-4-C","Sample-Routine","Water",NA,2022-02-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606592",NA,"as N","Nitrogen","Total","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995240-0227-4-C/results/953606592/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:54","STORET",7,NA,2022-02-27 17:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220227-5995240-0227-4-C","Sample-Routine","Water",NA,2022-02-27,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606595",NA,"as N","Nitrogen","Dissolved","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995240-0227-4-C/results/953606595/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:54","STORET",7,NA,2022-02-27 17:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-5995240-0311-4-C","Sample-Routine","Water",NA,2022-03-11,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606625",NA,"as N","Nitrogen","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995240-0311-4-C/results/953606625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:56","STORET",7,NA,2022-03-11 16:10:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-5995240-0311-4-C","Sample-Routine","Water",NA,2022-03-11,"09:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606628",NA,"as N","Nitrogen","Dissolved","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995240-0311-4-C/results/953606628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:56","STORET",7,NA,2022-03-11 16:10:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-5995246-1023-4-C","Sample-Routine","Water",NA,2021-10-23,"13:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995246","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy",NA,NA,NA,NA,"38.6869400000","-109.6528000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606642",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995246-1023-4-C/results/953606642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:56","STORET",7,NA,2021-10-23 20:19:00,NA,"Spring",NA,"14030005",NA,NA,NA,NA,"38.6869400000","-109.6528000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",38.68694,-109.6528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211020-5995246-1023-4-C","Sample-Routine","Water",NA,2021-10-23,"13:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995246","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy",NA,NA,NA,NA,"38.6869400000","-109.6528000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606645",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211020-5995246-1023-4-C/results/953606645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:57","STORET",7,NA,2021-10-23 20:19:00,NA,"Spring",NA,"14030005",NA,NA,NA,NA,"38.6869400000","-109.6528000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",38.68694,-109.6528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211105-5995246-1105-4-C","Sample-Routine","Water",NA,2021-11-05,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995246","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy",NA,NA,NA,NA,"38.6869400000","-109.6528000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606675",NA,"as N","Nitrogen","Total","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995246-1105-4-C/results/953606675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:58","STORET",7,NA,2021-11-05 20:00:00,NA,"Spring",NA,"14030005",NA,NA,NA,NA,"38.6869400000","-109.6528000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",38.68694,-109.6528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN211105-5995246-1105-4-C","Sample-Routine","Water",NA,2021-11-05,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995246","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy",NA,NA,NA,NA,"38.6869400000","-109.6528000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606678",NA,"as N","Nitrogen","Dissolved","0.829","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2021-11-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN211105-5995246-1105-4-C/results/953606678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:58","STORET",7,NA,2021-11-05 20:00:00,NA,"Spring",NA,"14030005",NA,NA,NA,NA,"38.6869400000","-109.6528000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.829,"MG/L","Numeric","Not Reviewed","Uncensored",38.68694,-109.6528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220227-5995246-0227-4-C","Sample-Routine","Water",NA,2022-02-27,"13:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995246","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy",NA,NA,NA,NA,"38.6869400000","-109.6528000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606686",NA,"as N","Nitrogen","Total","0.918","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995246-0227-4-C/results/953606686/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:59","STORET",7,NA,2022-02-27 20:42:00,NA,"Spring",NA,"14030005",NA,NA,NA,NA,"38.6869400000","-109.6528000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.918,"MG/L","Numeric","Not Reviewed","Uncensored",38.68694,-109.6528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220227-5995246-0227-4-C","Sample-Routine","Water",NA,2022-02-27,"13:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995246","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy",NA,NA,NA,NA,"38.6869400000","-109.6528000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606689",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220227-5995246-0227-4-C/results/953606689/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:02:59","STORET",7,NA,2022-02-27 20:42:00,NA,"Spring",NA,"14030005",NA,NA,NA,NA,"38.6869400000","-109.6528000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",38.68694,-109.6528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-5995246-0311-4-C","Sample-Routine","Water",NA,2022-03-11,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995246","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy",NA,NA,NA,NA,"38.6869400000","-109.6528000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606719",NA,"as N","Nitrogen","Total","3.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995246-0311-4-C/results/953606719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:03:00","STORET",7,NA,2022-03-11 20:15:00,NA,"Spring",NA,"14030005",NA,NA,NA,NA,"38.6869400000","-109.6528000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.16,"MG/L","Numeric","Not Reviewed","Uncensored",38.68694,-109.6528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220311-5995246-0311-4-C","Sample-Routine","Water",NA,2022-03-11,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995246","Courthouse Wash at spring approx 75 meters inside Arches NP west bndy",NA,NA,NA,NA,"38.6869400000","-109.6528000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-953606722",NA,"as N","Nitrogen","Dissolved","3.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220311-5995246-0311-4-C/results/953606722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2022-10-08T04:03:00","STORET",7,NA,2022-03-11 20:15:00,NA,"Spring",NA,"14030005",NA,NA,NA,NA,"38.6869400000","-109.6528000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.28,"MG/L","Numeric","Not Reviewed","Uncensored",38.68694,-109.6528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"43","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT1190S","Sample-Routine","Water",NA,2022-09-13,"11:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-CW Wash HW 95","Cottonwood Wash Highway 95",NA,NA,NA,NA,"37.5594280000","-109.5771410000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-958781271","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-09-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT1190S/results/958781271/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-12-01T22:36:01","STORET",7,NA,2022-09-13 18:55:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5594280000","-109.5771410000",NA,NA,NA,"GPS-Unspecified","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.559428,-109.577141,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"44","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-MW-EastS","Sample-Routine","Water",NA,2022-09-19,"09:52:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-WM_GWMW_E","white mesa ground water monitoring well; east",NA,NA,NA,NA,"37.4964750000","-109.4931020000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-958781630","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-MW-EastS/results/958781630/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-12-01T22:36:05","STORET",7,NA,2022-09-19 16:52:00,NA,"Well","monitoring well downgradient of White Mesa Uranium Mill, southeast","14080201",NA,NA,NA,NA,"37.4964750000","-109.4931020000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83","5470","ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.496475,-109.493102,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"45","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-RARE 1S","Sample-Routine","Water",NA,2022-09-20,"10:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-RARE - 1","RARE - 1",NA,NA,NA,NA,"37.5122083300","109.4942416700","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-958781698",NA,"as N","Ammonia","Unfiltered","0.625","mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-RARE%201S/results/958781698/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-12-01T22:36:06","STORET",7,NA,2022-09-20 17:00:00,NA,"Well",NA,NA,NA,NA,NA,NA,"37.5122083300","109.4942416700",NA,NA,NA,"GPS Code (Pseudo Range) Precise Position","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",625,"UG/L","Numeric","Not Reviewed","Uncensored",37.51220833,109.49424167,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"46","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1188S","Sample-Routine","Water",NA,2022-04-06,"09:36:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-RARE-2","RARE-2",NA,NA,NA,NA,"37.5192694400","-109.4931722200","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-958781982","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201188S/results/958781982/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-12-01T22:36:09","STORET",7,NA,2022-04-06 16:36:00,NA,"Well",NA,"14080201",NA,NA,NA,NA,"37.5192694400","-109.4931722200",NA,NA,NA,"GPS-Unspecified","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.51926944,-109.49317222,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"47","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-RARE 2S","Sample-Routine","Water",NA,2022-09-20,"12:10:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-RARE-2","RARE-2",NA,NA,NA,NA,"37.5192694400","-109.4931722200","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-958782178","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-RARE%202S/results/958782178/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-12-01T22:36:10","STORET",7,NA,2022-09-20 19:10:00,NA,"Well",NA,"14080201",NA,NA,NA,NA,"37.5192694400","-109.4931722200",NA,NA,NA,"GPS-Unspecified","WGS84",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.51926944,-109.49317222,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"48","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT1192Q","Quality Control Sample-Field Replicate","Water",NA,2022-09-13,"11:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-CW-S2","Cottonwood wash south 2",NA,NA,NA,NA,"37.6503190000","-109.6304270000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-958782222","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-09-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT1192Q/results/958782222/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-12-01T22:36:11","STORET",7,NA,2022-09-13 18:00:00,NA,"River/Stream","Cottonwood wash @ Kigalia Point road crossing. Site is approximately 75 yards upstream of road crossing.","14080201",NA,NA,NA,NA,"37.6503190000","-109.6304270000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_replicate","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.650319,-109.630427,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"49","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT 1189S","Sample-Routine","Water",NA,2022-04-06,"12:30:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-WM_GWMW_E","white mesa ground water monitoring well; east",NA,NA,NA,NA,"37.4964750000","-109.4931020000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-958782255","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-04-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT%201189S/results/958782255/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-12-01T22:36:11","STORET",7,NA,2022-04-06 19:30:00,NA,"Well","monitoring well downgradient of White Mesa Uranium Mill, southeast","14080201",NA,NA,NA,NA,"37.4964750000","-109.4931020000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83","5470","ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.496475,-109.493102,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"50","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-MW-WestS","Sample-Routine","Water",NA,2022-09-19,"13:15:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-WM_GWMW_W","white mesa ground water monitoring well; west",NA,NA,NA,NA,"37.4897350000","-109.5180720000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-958782378","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-09-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-MW-WestS/results/958782378/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-12-01T22:36:12","STORET",7,NA,2022-09-19 20:15:00,NA,"Well","monitoring well downgradient of White Mesa Uranium Mill, southwest","14080201",NA,NA,NA,NA,"37.4897350000","-109.5180720000",NA,NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","NAD83","5491","ft",NA,NA,"GPS Code (Pseudo Range) Standard Position (SA Off)","SEALV","US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.489735,-109.518072,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"51","UTEMTN","Ute Mountain Utes Tribe (Colorado)","UTEMTN-UT1191S","Sample-Routine","Water",NA,2022-09-13,"10:55:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"UTEMTN-CW-S2","Cottonwood wash south 2",NA,NA,NA,NA,"37.6503190000","-109.6304270000","UMUSOP","UTEMTN","Ute Mountain Ute Water Quality Standard Operating Procedures","Sampling devices are decontaminated between stations with a minimum of 3 DI rinses and 3 sample source rinses; acid washed, neutralized, and rinsed with DI in laboratory prior to sampling event Citation: Ute Mountain Ute Water Quality Dept. Standard Operating Procedures","Water Bottle","STORET-958782414","Not Detected","as N","Ammonia","Unfiltered",NA,"mg/L",NA,"Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","Green Analytical Laboratories",2022-09-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTEMTN/activities/UTEMTN-UT1191S/results/958782414/resdetectqntlmts","Lower Reporting Limit","0.1","mg/L",NA,"2022-12-01T22:36:12","STORET",7,NA,2022-09-13 17:55:00,NA,"River/Stream","Cottonwood wash @ Kigalia Point road crossing. Site is approximately 75 yards upstream of road crossing.","14080201",NA,NA,NA,NA,"37.6503190000","-109.6304270000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",100,"UG/L","Result Value/Unit Copied from Detection Limit","Not Reviewed","Non-Detect",37.650319,-109.630427,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","UNFILTERED","Accepted","AMMONIA_UNFILTERED_AS N_UG/L",0.1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"52","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202207121241:SR","Sample-Routine","Water",NA,2022-07-12,"12:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DDC","Duchesne River South of Randlett",NA,NA,NA,NA,"40.2158400000","-109.7838900000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965387449","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202207121241%3ASR/results/965387449/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:23","STORET",7,NA,2022-07-12 19:41:00,NA,"River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.21584,-109.78389,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"53","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202207121241:QLB","Quality Control Sample-Lab Blank","Water",NA,2022-07-12,"12:41:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DDC","Duchesne River South of Randlett",NA,NA,NA,NA,"40.2158400000","-109.7838900000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965387535","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202207121241%3AQLB/results/965387535/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:23","STORET",7,NA,2022-07-12 19:41:00,NA,"River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_blank","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.21584,-109.78389,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"54","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202207121344:SR","Sample-Routine","Water",NA,2022-07-12,"13:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965387562","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202207121344%3ASR/results/965387562/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:24","STORET",7,NA,2022-07-12 20:44:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"55","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202207121344:QLD","Quality Control Sample-Lab Duplicate","Water",NA,2022-07-12,"13:44:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965387634","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202207121344%3AQLD/results/965387634/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:24","STORET",7,NA,2022-07-12 20:44:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_duplicate","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"56","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202207131033:SR","Sample-Routine","Water",NA,2022-07-13,"10:33:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WRB","Whiterocks River 2",NA,NA,NA,NA,"40.5331460000","-109.9237518300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965387669","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-07-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202207131033%3ASR/results/965387669/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:24","STORET",7,NA,2022-07-13 17:33:00,NA,"River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.533146,-109.92375183,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"57","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202207181313:SR","Sample-Routine","Water",NA,2022-07-18,"13:13:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-IDR","INDIAN CREEK",NA,NA,NA,NA,"40.1572222222","-110.4050000000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965387831","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202207181313%3ASR/results/965387831/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:25","STORET",7,NA,2022-07-18 20:13:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.1572222222,-110.405,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"58","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WGR2:202209121329:SR","Sample-Routine","Water",NA,2022-09-12,"13:29:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WGR2","White River at Carrot Patch",NA,NA,NA,NA,"40.0675900000","-109.5950400000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965387860","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WGR2%3A202209121329%3ASR/results/965387860/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:25","STORET",7,NA,2022-09-12 20:29:00,NA,"River/Stream",NA,"14050007",NA,NA,NA,NA,"40.0675900000","-109.5950400000",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.06759,-109.59504,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"59","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DDC:202209121511:SR","Sample-Routine","Water",NA,2022-09-12,"15:11:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DDC","Duchesne River South of Randlett",NA,NA,NA,NA,"40.2158400000","-109.7838900000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965387945","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DDC%3A202209121511%3ASR/results/965387945/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:25","STORET",7,NA,2022-09-12 22:11:00,NA,"River/Stream","Below city of Randlett at USGS station.","14060003",NA,NA,NA,NA,"40.2158400000","-109.7838900000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.21584,-109.78389,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"60","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-RKD:202209131456:SR","Sample-Routine","Water",NA,2022-09-13,"14:56:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-RKD","Rock Creek",NA,NA,NA,NA,"40.3110798300","-110.4938520000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388070","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-RKD%3A202209131456%3ASR/results/965388070/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:26","STORET",7,NA,2022-09-13 21:56:00,NA,"River/Stream","Knights Diversion below 3rd bridge.","14060003",NA,NA,NA,NA,"40.3110798300","-110.4938520000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.31107983,-110.493852,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"61","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-IDR:202209131503:SR","Sample-Routine","Water",NA,2022-09-13,"15:03:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-IDR","INDIAN CREEK",NA,NA,NA,NA,"40.1572222222","-110.4050000000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388157","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-IDR%3A202209131503%3ASR/results/965388157/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:26","STORET",7,NA,2022-09-13 22:03:00,NA,"River/Stream",NA,"14060004",NA,NA,NA,NA,"40.1572222222","-110.4050000000",NA,NA,NA,"GPS-Unspecified","NAD27",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.1572222222,-110.405,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"62","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-SCC:202209131600:SR","Sample-Routine","Water",NA,2022-09-13,"16:00:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-SCC","Sowers Canyon Creek",NA,NA,NA,NA,"40.0615548300","-110.2903830000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388164","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-SCC%3A202209131600%3ASR/results/965388164/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:26","STORET",7,NA,2022-09-13 23:00:00,NA,"River/Stream","River/Stream","14060003",NA,NA,NA,NA,"40.0615548300","-110.2903830000",NA,NA,NA,"GPS-Unspecified","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.06155483,-110.290383,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"63","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-WRB:202209141031:SR","Sample-Routine","Water",NA,2022-09-14,"10:31:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-WRB","Whiterocks River 2",NA,NA,NA,NA,"40.5331460000","-109.9237518300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388240","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-WRB%3A202209141031%3ASR/results/965388240/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:26","STORET",7,NA,2022-09-14 17:31:00,NA,"River/Stream","River above Uriah Heeps.","14060003",NA,NA,NA,NA,"40.5331460000","-109.9237518300",NA,NA,NA,"Unknown","UNKWN",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.533146,-109.92375183,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"64","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202209191246:SR","Sample-Routine","Water",NA,2022-09-19,"12:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388282","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202209191246%3ASR/results/965388282/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:27","STORET",7,NA,2022-09-19 19:46:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"65","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202209191246:QLD","Quality Control Sample-Lab Duplicate","Water",NA,2022-09-19,"12:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388378","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202209191246%3AQLD/results/965388378/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:27","STORET",7,NA,2022-09-19 19:46:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_duplicate","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","1","Y",FALSE +"66","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-DRB:202209191246:QLD","Quality Control Sample-Lab Duplicate","Water",NA,2022-09-19,"12:46:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-DRB","Red Bridge",NA,NA,NA,NA,"40.2066298300","-109.8585538300","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388426","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-DRB%3A202209191246%3AQLD/results/965388426/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:27","STORET",7,NA,2022-09-19 19:46:00,NA,"River/Stream","Duchesne River at Red Bridge above Randlett Farms 6/27/2018: Duchesne River South of 4 corners.","14060003",NA,NA,NA,NA,"40.2066298300","-109.8585538300",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4828","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_duplicate","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.20662983,-109.85855383,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","1","Y",FALSE +"67","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202209191314:SR","Sample-Routine","Water",NA,2022-09-19,"13:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-G4C","4 Corners",NA,NA,NA,NA,"40.2415300000","-109.8590500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388439","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-G4C%3A202209191314%3ASR/results/965388439/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:27","STORET",7,NA,2022-09-19 20:14:00,NA,"River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.24153,-109.85905,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","2","Y",FALSE +"68","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-G4C:202209191314:SR","Sample-Routine","Water",NA,2022-09-19,"13:14:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-G4C","4 Corners",NA,NA,NA,NA,"40.2415300000","-109.8590500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388512","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-G4C%3A202209191314%3ASR/results/965388512/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:28","STORET",7,NA,2022-09-19 20:14:00,NA,"River/Stream","Dry Gulch near Four Corners Bridge South of Fort Duchesne West of Randlett","14060003",NA,NA,NA,NA,"40.2415300000","-109.8590500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","4865","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.24153,-109.85905,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","2","Y",FALSE +"69","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-UFD:202209191334:SR","Sample-Routine","Water",NA,2022-09-19,"13:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-UFD","Ft. Duchesne",NA,NA,NA,NA,"40.3019500000","-109.8531500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388546","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202209191334%3ASR/results/965388546/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:28","STORET",7,NA,2022-09-19 20:34:00,NA,"River/Stream","Uintah River at US 40 Bridge","14060003",NA,NA,NA,NA,"40.3019500000","-109.8531500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.30195,-109.85315,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","4","Y",FALSE +"70","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-UFD:202209191334:SR","Sample-Routine","Water",NA,2022-09-19,"13:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-UFD","Ft. Duchesne",NA,NA,NA,NA,"40.3019500000","-109.8531500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388635","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202209191334%3ASR/results/965388635/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:28","STORET",7,NA,2022-09-19 20:34:00,NA,"River/Stream","Uintah River at US 40 Bridge","14060003",NA,NA,NA,NA,"40.3019500000","-109.8531500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","Non_QC","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.30195,-109.85315,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","4","Y",FALSE +"71","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-UFD:202209191334:QLB","Quality Control Sample-Lab Blank","Water",NA,2022-09-19,"13:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-UFD","Ft. Duchesne",NA,NA,NA,NA,"40.3019500000","-109.8531500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388650","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202209191334%3AQLB/results/965388650/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:28","STORET",7,NA,2022-09-19 20:34:00,NA,"River/Stream","Uintah River at US 40 Bridge","14060003",NA,NA,NA,NA,"40.3019500000","-109.8531500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_blank","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.30195,-109.85315,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","3","Y",FALSE +"72","NTHRNUTE","Northern Ute Indian Tribe (UT)","NTHRNUTE-UFD:202209191334:QLB","Quality Control Sample-Lab Blank","Water",NA,2022-09-19,"13:34:00","MST",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"UIT_106","Ute Indian Tribe Water Quality Department",NA,"NTHRNUTE-UFD","Ft. Duchesne",NA,NA,NA,NA,"40.3019500000","-109.8531500000","UIT QAPP","NTHRNUTE","UIT Quality Assurance Plan","QAPP describes Procedures of water sampling, holding times, site location","Water Bottle","STORET-965388651","Not Detected","as N","Ammonia","Total",NA,"mg/L","U","Final",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"350.1","USEPA","350.1 ~ EPA; Ammonia Nitrogen by Colorimetry",NA,"https://www.nemi.gov/methods/method_summary/5405/","ACZ Laboratories, Inc.",2022-09-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/NTHRNUTE/activities/NTHRNUTE-UFD%3A202209191334%3AQLB/results/965388651/resdetectqntlmts","Practical Quantitation Limit","0.2","mg/L",NA,"2023-01-26T06:16:28","STORET",7,NA,2022-09-19 20:34:00,NA,"River/Stream","Uintah River at US 40 Bridge","14060003",NA,NA,NA,NA,"40.3019500000","-109.8531500000",NA,NA,NA,"GPS Carrier Phase Static Relative Position","WGS84","5018","ft",NA,NA,"GPS Carrier Phase Static Relative Position","SEALV","US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","Collect Water Quality Data and Information to assess Water Pollution",NA,NA,NA,NA,NA,"Converted","QC_blank","Not Reviewed","WATER","AMMONIA",200,"UG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.30195,-109.85315,"N","Unknown","Not Reviewed","Accepted","AS N","Accepted","Accepted","TOTAL","Accepted","AMMONIA_TOTAL_AS N_UG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","3","Y",FALSE +"10810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-5910302-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"11:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357409","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910302-0428-4-C/results/966357409/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:05","STORET",7,NA,2022-04-28 18:22:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-5910273-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"11:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357421","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910273-0428-4-C/results/966357421/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:06","STORET",7,NA,2022-04-28 18:31:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-5910302-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357433","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5910302-0524-4-C/results/966357433/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:06","STORET",7,NA,2022-05-24 18:34:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-5910273-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357445","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5910273-0524-4-C/results/966357445/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:07","STORET",7,NA,2022-05-24 18:41:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-5910302-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357457","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5910302-0629-4-C/results/966357457/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:07","STORET",7,NA,2022-06-29 18:21:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-5910273-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357469","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5910273-0629-4-C/results/966357469/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:08","STORET",7,NA,2022-06-29 18:29:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-5910302-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910302","London Ditch at US 40 Xing",NA,NA,NA,NA,"40.5362500000","-111.4119100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357481","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5910302-0728-4-C/results/966357481/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:08","STORET",7,NA,2022-07-28 18:15:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5362500000","-111.4119100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.53625,-111.41191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-5910273-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357493","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5910273-0728-4-C/results/966357493/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:09","STORET",7,NA,2022-07-28 18:23:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-5910273-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357505","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5910273-0830-4-C/results/966357505/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:09","STORET",7,NA,2022-08-30 18:50:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-5910273-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"11:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910273","London Ditch @ 1200 North Heber",NA,NA,NA,NA,"40.5217800000","-111.4160500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357517","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-5910273-0929-4-C/results/966357517/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:10","STORET",7,NA,2022-09-29 18:58:00,NA,"Canal Drainage",NA,"16020203",NA,NA,NA,NA,"40.5217800000","-111.4160500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.52178,-111.41605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220406-4936050-0406-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-06,"08:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357603","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-2-C/results/966357603/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:26","STORET",7,NA,2022-04-06 15:44:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220406-4936050-0406-22-C","Sample-Routine","Water",NA,2022-04-06,"08:47:00","MST",NA,NA,NA,"Midwater","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357623","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-22-C/results/966357623/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:26","STORET",7,NA,2022-04-06 15:47:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220406-4936050-0406-23-C","Sample-Routine","Water",NA,2022-04-06,"08:48:00","MST",NA,NA,NA,"AboveThermoclin","6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357641","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-23-C/results/966357641/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:27","STORET",7,NA,2022-04-06 15:48:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220406-4936050-0406-24-C","Sample-Routine","Water",NA,2022-04-06,"08:53:00","MST",NA,NA,NA,"Midwater","13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357659","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-24-C/results/966357659/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:28","STORET",7,NA,2022-04-06 15:53:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220406-4936050-0406-26-C","Sample-Routine","Water",NA,2022-04-06,"08:55:00","MST",NA,NA,NA,"Midwater","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357677","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-26-C/results/966357677/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:28","STORET",7,NA,2022-04-06 15:55:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220406-4936050-0406-27-C","Sample-Routine","Water",NA,2022-04-06,"08:57:00","MST",NA,NA,NA,"BelowThermoclin","25","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357695","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220406-4936050-0406-27-C/results/966357695/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:29","STORET",7,NA,2022-04-06 15:57:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",25,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220406-5937650-0406-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-06,"12:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357713","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220406-5937650-0406-2-C/results/966357713/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:29","STORET",7,NA,2022-04-06 19:23:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220406-5937650-0406-25-C","Sample-Routine","Water",NA,2022-04-06,"12:31:00","MST",NA,NA,NA,"Midwater","7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357733","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220406-5937650-0406-25-C/results/966357733/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:30","STORET",7,NA,2022-04-06 19:31:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220406-5937650-0406-29-C","Sample-Routine","Water",NA,2022-04-06,"12:41:00","MST",NA,NA,NA,"Bottom","15.6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357751","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220406-5937650-0406-29-C/results/966357751/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:30","STORET",7,NA,2022-04-06 19:41:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-14,"08:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357769","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-2-C/results/966357769/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:31","STORET",7,NA,2022-04-14 15:06:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-25-C","Sample-Routine","Water",NA,2022-04-14,"08:17:00","MST",NA,NA,NA,"Midwater","18","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357783","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-25-C/results/966357783/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:31","STORET",7,NA,2022-04-14 15:17:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",18,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-28-C","Sample-Routine","Water",NA,2022-04-14,"08:21:00","MST",NA,NA,NA,"Near Bottom","28","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357795","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-28-C/results/966357795/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:32","STORET",7,NA,2022-04-14 15:21:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",28,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-29-C","Sample-Routine","Water",NA,2022-04-14,"08:26:00","MST",NA,NA,NA,"Bottom","36","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357807","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913220-0414-29-C/results/966357807/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:32","STORET",7,NA,2022-04-14 15:26:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",36,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-14,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357819","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-2-C/results/966357819/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:32","STORET",7,NA,2022-04-14 16:20:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-25-C","Sample-Routine","Water",NA,2022-04-14,"09:27:00","MST",NA,NA,NA,"Midwater","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357833","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-25-C/results/966357833/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:33","STORET",7,NA,2022-04-14 16:27:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-29-C","Sample-Routine","Water",NA,2022-04-14,"09:33:00","MST",NA,NA,NA,"Bottom","23","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357844","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913230-0414-29-C/results/966357844/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:33","STORET",7,NA,2022-04-14 16:33:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913240-0414-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-14,"10:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357855","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913240-0414-2-C/results/966357855/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:34","STORET",7,NA,2022-04-14 17:04:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913240-0414-29-C","Sample-Routine","Water",NA,2022-04-14,"10:09:00","MST",NA,NA,NA,"Bottom","7.8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357869","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913240-0414-29-C/results/966357869/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:34","STORET",7,NA,2022-04-14 17:09:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220414-5913490-0414-2-C","Quality Control Sample-Field Replicate","Water",NA,2022-04-14,"08:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357880","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-04-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220414-5913490-0414-2-C/results/966357880/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:35","STORET",7,NA,2022-04-14 15:05:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-21,"08:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357894","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-2-C/results/966357894/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:35","STORET",7,NA,2022-04-21 15:36:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-24-C","Sample-Routine","Water",NA,2022-04-21,"08:42:00","MST",NA,NA,NA,"Midwater","4","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357906","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-24-C/results/966357906/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:36","STORET",7,NA,2022-04-21 15:42:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-26-C","Sample-Routine","Water",NA,2022-04-21,"08:46:00","MST",NA,NA,NA,"Midwater","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357918","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-26-C/results/966357918/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:36","STORET",7,NA,2022-04-21 15:46:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-27-C","Sample-Routine","Water",NA,2022-04-21,"08:48:00","MST",NA,NA,NA,"BelowThermoclin","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357930","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-27-C/results/966357930/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:37","STORET",7,NA,2022-04-21 15:48:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-28-C","Sample-Routine","Water",NA,2022-04-21,"08:51:00","MST",NA,NA,NA,"Near Bottom","21","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357942","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-28-C/results/966357942/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:37","STORET",7,NA,2022-04-21 15:51:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",21,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-29-C","Sample-Routine","Water",NA,2022-04-21,"09:12:00","MST",NA,NA,NA,"Bottom","64","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357954","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914010-0421-29-C/results/966357954/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:38","STORET",7,NA,2022-04-21 16:12:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",64,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914040-0421-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-21,"09:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357966","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914040-0421-2-C/results/966357966/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:38","STORET",7,NA,2022-04-21 16:56:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914040-0421-29-C","Sample-Routine","Water",NA,2022-04-21,"10:15:00","MST",NA,NA,NA,"Bottom","26","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357978","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914040-0421-29-C/results/966357978/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:39","STORET",7,NA,2022-04-21 17:15:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",26,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914030-0421-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-21,"10:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966357989","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914030-0421-2-C/results/966357989/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:39","STORET",7,NA,2022-04-21 17:43:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220421-5914030-0421-29-C","Sample-Routine","Water",NA,2022-04-21,"10:56:00","MST",NA,NA,NA,"Bottom","24","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358001","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220421-5914030-0421-29-C/results/966358001/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:39","STORET",7,NA,2022-04-21 17:56:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",24,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4998400-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358012","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4998400-0428-4-C/results/966358012/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:40","STORET",7,NA,2022-04-28 16:45:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4998130-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"10:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358043","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4998130-0428-4-C/results/966358043/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:41","STORET",7,NA,2022-04-28 17:09:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4997330-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"10:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358055","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997330-0428-4-C/results/966358055/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:41","STORET",7,NA,2022-04-28 17:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4997675-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"10:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358067","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997675-0428-4-C/results/966358067/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:42","STORET",7,NA,2022-04-28 17:51:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4997670-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"10:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358098","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997670-0428-4-C/results/966358098/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:42","STORET",7,NA,2022-04-28 17:57:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4997300-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"11:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358129","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997300-0428-4-C/results/966358129/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:43","STORET",7,NA,2022-04-28 18:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4997250-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"11:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358141","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4997250-0428-4-C/results/966358141/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:43","STORET",7,NA,2022-04-28 18:46:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-5910250-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358153","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910250-0428-4-C/results/966358153/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:44","STORET",7,NA,2022-04-28 18:55:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-5910160-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"12:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358165","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910160-0428-4-C/results/966358165/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:44","STORET",7,NA,2022-04-28 19:47:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-5910020-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"13:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910020","LOWER CHARLESTON CANAL AB CNFL / DANIELS CK",NA,NA,NA,NA,"40.4613500000","-111.4715700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358178",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5910020-0428-4-C/results/966358178/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:45","STORET",7,NA,2022-04-28 20:11:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.4613500000","-111.4715700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.46135,-111.47157,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-5913460-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"13:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358190","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5913460-0428-4-C/results/966358190/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:45","STORET",7,NA,2022-04-28 20:26:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4996870-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"13:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358202","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996870-0428-4-C/results/966358202/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:46","STORET",7,NA,2022-04-28 20:57:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-5913210-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"13:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358214","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-5913210-0428-4-C/results/966358214/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:46","STORET",7,NA,2022-04-28 20:59:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4996890-0428-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-04-28,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358226","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996890-0428-4-C/results/966358226/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:47","STORET",7,NA,2022-04-28 21:00:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4996850-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"14:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358238","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996850-0428-4-C/results/966358238/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:47","STORET",7,NA,2022-04-28 21:11:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4996810-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"14:27:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358250","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996810-0428-4-C/results/966358250/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:48","STORET",7,NA,2022-04-28 21:27:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220428-4996780-0428-4-C","Sample-Routine","Water",NA,2022-04-28,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358262","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220428-4996780-0428-4-C/results/966358262/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:48","STORET",7,NA,2022-04-28 21:40:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220505-4936050-0505-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-05,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358274",NA,"as N","Nitrogen","Dissolved","1.4","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-2-C/results/966358274/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:48","STORET",7,NA,2022-05-05 15:40:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220505-4936050-0505-22-C","Sample-Routine","Water",NA,2022-05-05,"08:44:00","MST",NA,NA,NA,"Midwater","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358307","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-22-C/results/966358307/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:49","STORET",7,NA,2022-05-05 15:44:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220505-4936050-0505-23-C","Sample-Routine","Water",NA,2022-05-05,"08:50:00","MST",NA,NA,NA,"AboveThermoclin","6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358338","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-23-C/results/966358338/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:50","STORET",7,NA,2022-05-05 15:50:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220505-4936050-0505-24-C","Sample-Routine","Water",NA,2022-05-05,"08:56:00","MST",NA,NA,NA,"Midwater","13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358369","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-24-C/results/966358369/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:50","STORET",7,NA,2022-05-05 15:56:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220505-4936050-0505-26-C","Sample-Routine","Water",NA,2022-05-05,"09:01:00","MST",NA,NA,NA,"Midwater","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358400","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-26-C/results/966358400/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:51","STORET",7,NA,2022-05-05 16:01:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220505-4936050-0505-27-C","Sample-Routine","Water",NA,2022-05-05,"09:05:00","MST",NA,NA,NA,"BelowThermoclin","25","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358431","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-27-C/results/966358431/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:51","STORET",7,NA,2022-05-05 16:05:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",25,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220505-4936050-0505-29-C","Sample-Routine","Water",NA,2022-05-05,"09:12:00","MST",NA,NA,NA,"Bottom","34.3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358462",NA,"as N","Nitrogen","Dissolved","7.9","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220505-4936050-0505-29-C/results/966358462/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:52","STORET",7,NA,2022-05-05 16:12:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",34.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220505-5937650-0505-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-05,"12:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358493","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220505-5937650-0505-2-C/results/966358493/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:53","STORET",7,NA,2022-05-05 19:13:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220505-5937650-0505-25-C","Sample-Routine","Water",NA,2022-05-05,"12:22:00","MST",NA,NA,NA,"Midwater","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358526","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220505-5937650-0505-25-C/results/966358526/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:53","STORET",7,NA,2022-05-05 19:22:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220505-5937650-0505-29-C","Sample-Routine","Water",NA,2022-05-05,"12:29:00","MST",NA,NA,NA,"Bottom","21.9","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358557","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220505-5937650-0505-29-C/results/966358557/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:54","STORET",7,NA,2022-05-05 19:29:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",21.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-12,"08:11:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358588","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-2-C/results/966358588/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:54","STORET",7,NA,2022-05-12 15:11:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-25-C","Sample-Routine","Water",NA,2022-05-12,"08:30:00","MST",NA,NA,NA,"Midwater","18","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358602","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-25-C/results/966358602/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:55","STORET",7,NA,2022-05-12 15:30:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",18,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-28-C","Sample-Routine","Water",NA,2022-05-12,"08:37:00","MST",NA,NA,NA,"Near Bottom","28","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358614","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-28-C/results/966358614/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:55","STORET",7,NA,2022-05-12 15:37:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",28,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-29-C","Sample-Routine","Water",NA,2022-05-12,"08:42:00","MST",NA,NA,NA,"Bottom","36","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358626","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913220-0512-29-C/results/966358626/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:56","STORET",7,NA,2022-05-12 15:42:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",36,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-12,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358657","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-2-C/results/966358657/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:56","STORET",7,NA,2022-05-12 16:20:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-25-C","Sample-Routine","Water",NA,2022-05-12,"09:27:00","MST",NA,NA,NA,"Midwater","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358671","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-25-C/results/966358671/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:57","STORET",7,NA,2022-05-12 16:27:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-29-C","Sample-Routine","Water",NA,2022-05-12,"09:31:00","MST",NA,NA,NA,"Bottom","23","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358682","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913230-0512-29-C/results/966358682/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:57","STORET",7,NA,2022-05-12 16:31:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913240-0512-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-12,"09:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358693","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913240-0512-2-C/results/966358693/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:58","STORET",7,NA,2022-05-12 16:56:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913240-0512-29-C","Sample-Routine","Water",NA,2022-05-12,"09:58:00","MST",NA,NA,NA,"Bottom","7.1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358707","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913240-0512-29-C/results/966358707/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:58","STORET",7,NA,2022-05-12 16:58:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220512-5913490-0512-2-C","Quality Control Sample-Field Replicate","Water",NA,2022-05-12,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358718","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-05-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220512-5913490-0512-2-C/results/966358718/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:59","STORET",7,NA,2022-05-12 15:10:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4998400-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358732","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4998400-0524-4-C/results/966358732/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:56:59","STORET",7,NA,2022-05-24 17:05:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4998140-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998140","WEBER-PROVO CANAL DIVERSION AT US 189 ALT XING",NA,NA,NA,NA,"40.6099500000","-111.3051800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358746","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4998140-0524-4-C/results/966358746/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:00","STORET",7,NA,2022-05-24 17:22:00,NA,"Canal Transport",NA,"16020203",NA,NA,NA,NA,"40.6099500000","-111.3051800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60995,-111.30518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4998130-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358758","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4998130-0524-4-C/results/966358758/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:00","STORET",7,NA,2022-05-24 17:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4997330-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358789","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997330-0524-4-C/results/966358789/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:01","STORET",7,NA,2022-05-24 17:48:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4997675-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358820","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997675-0524-4-C/results/966358820/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:02","STORET",7,NA,2022-05-24 18:06:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4997670-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358851","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997670-0524-4-C/results/966358851/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:02","STORET",7,NA,2022-05-24 18:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4997300-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358882","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997300-0524-4-C/results/966358882/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:03","STORET",7,NA,2022-05-24 18:26:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4997250-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358894","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4997250-0524-4-C/results/966358894/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:03","STORET",7,NA,2022-05-24 18:52:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-5910250-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358906","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5910250-0524-4-C/results/966358906/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:04","STORET",7,NA,2022-05-24 18:58:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-5910160-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358918","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5910160-0524-4-C/results/966358918/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:04","STORET",7,NA,2022-05-24 19:35:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-5913460-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358933","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5913460-0524-4-C/results/966358933/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:05","STORET",7,NA,2022-05-24 19:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4996870-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358945","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996870-0524-4-C/results/966358945/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:05","STORET",7,NA,2022-05-24 20:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-5913210-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358957","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-5913210-0524-4-C/results/966358957/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:06","STORET",7,NA,2022-05-24 20:16:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4996890-0524-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-05-24,"13:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966358988","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996890-0524-4-C/results/966358988/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:06","STORET",7,NA,2022-05-24 20:17:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4996850-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359019","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996850-0524-4-C/results/966359019/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:07","STORET",7,NA,2022-05-24 20:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4996830-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:39:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359031","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996830-0524-4-C/results/966359031/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:07","STORET",7,NA,2022-05-24 20:39:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4996810-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359043","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996810-0524-4-C/results/966359043/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:08","STORET",7,NA,2022-05-24 20:47:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220524-4996780-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359074","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220524-4996780-0524-4-C/results/966359074/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:08","STORET",7,NA,2022-05-24 20:59:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220531-4995600-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"10:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359086","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220531-4995600-0531-4-C/results/966359086/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:09","STORET",7,NA,2022-05-31 17:28:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220531-4995640-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995640","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING",NA,NA,NA,NA,"40.0269000000","-111.5040800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359117","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220531-4995640-0531-4-C/results/966359117/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:09","STORET",7,NA,2022-05-31 17:55:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0269000000","-111.5040800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0269,-111.50408,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220531-4995790-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"11:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995790","SPANISH FK R AB CNFL / DIAMOND FK CK",NA,NA,NA,NA,"40.0246700000","-111.5029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359148","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220531-4995790-0531-4-C/results/966359148/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:10","STORET",7,NA,2022-05-31 18:04:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0246700000","-111.5029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.02467,-111.50297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220609-4936050-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-09,"09:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359234",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-2-C/results/966359234/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:13","STORET",7,NA,2022-06-09 16:42:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220609-4936050-0609-22-C","Sample-Routine","Water",NA,2022-06-09,"09:43:00","MST",NA,NA,NA,"Midwater","1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359247","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-22-C/results/966359247/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:13","STORET",7,NA,2022-06-09 16:43:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220609-4936050-0609-23-C","Sample-Routine","Water",NA,2022-06-09,"09:50:00","MST",NA,NA,NA,"AboveThermoclin","6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359260","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-23-C/results/966359260/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:14","STORET",7,NA,2022-06-09 16:50:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220609-4936050-0609-24-C","Sample-Routine","Water",NA,2022-06-09,"09:59:00","MST",NA,NA,NA,"Midwater","13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359273","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-24-C/results/966359273/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:14","STORET",7,NA,2022-06-09 16:59:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220609-4936050-0609-26-C","Sample-Routine","Water",NA,2022-06-09,"10:07:00","MST",NA,NA,NA,"Midwater","19","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359286","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-26-C/results/966359286/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:15","STORET",7,NA,2022-06-09 17:07:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220609-4936050-0609-27-C","Sample-Routine","Water",NA,2022-06-09,"10:15:00","MST",NA,NA,NA,"BelowThermoclin","25","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359299","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-27-C/results/966359299/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:15","STORET",7,NA,2022-06-09 17:15:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",25,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220609-4936050-0609-29-C","Sample-Routine","Water",NA,2022-06-09,"10:19:00","MST",NA,NA,NA,"Bottom","26.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359312","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220609-4936050-0609-29-C/results/966359312/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:16","STORET",7,NA,2022-06-09 17:19:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",26.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220609-5937650-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-09,"13:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359325","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220609-5937650-0609-2-C/results/966359325/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:16","STORET",7,NA,2022-06-09 20:57:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220609-5937650-0609-23-C","Sample-Routine","Water",NA,2022-06-09,"13:59:00","MST",NA,NA,NA,"AboveThermoclin","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359338","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220609-5937650-0609-23-C/results/966359338/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:17","STORET",7,NA,2022-06-09 20:59:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220609-5937650-0609-27-C","Sample-Routine","Water",NA,2022-06-09,"14:01:00","MST",NA,NA,NA,"BelowThermoclin","6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359351","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220609-5937650-0609-27-C/results/966359351/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:17","STORET",7,NA,2022-06-09 21:01:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220609-5937650-0609-29-C","Sample-Routine","Water",NA,2022-06-09,"14:08:00","MST",NA,NA,NA,"Bottom","21","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359364","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220609-5937650-0609-29-C/results/966359364/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:18","STORET",7,NA,2022-06-09 21:08:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",21,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-23,"09:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359377","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-2-C/results/966359377/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:18","STORET",7,NA,2022-06-23 16:31:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-22-C","Sample-Routine","Water",NA,2022-06-23,"09:36:00","MST",NA,NA,NA,"Midwater","4","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359391","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-22-C/results/966359391/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:19","STORET",7,NA,2022-06-23 16:36:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-23-C","Sample-Routine","Water",NA,2022-06-23,"09:40:00","MST",NA,NA,NA,"AboveThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359403","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-23-C/results/966359403/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:19","STORET",7,NA,2022-06-23 16:40:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-24-C","Sample-Routine","Water",NA,2022-06-23,"09:43:00","MST",NA,NA,NA,"Midwater","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359415","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-24-C/results/966359415/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:20","STORET",7,NA,2022-06-23 16:43:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-26-C","Sample-Routine","Water",NA,2022-06-23,"09:47:00","MST",NA,NA,NA,"Midwater","21","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359427","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-26-C/results/966359427/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:20","STORET",7,NA,2022-06-23 16:47:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",21,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-27-C","Sample-Routine","Water",NA,2022-06-23,"09:52:00","MST",NA,NA,NA,"BelowThermoclin","26","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359439","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-27-C/results/966359439/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:21","STORET",7,NA,2022-06-23 16:52:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",26,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-28-C","Sample-Routine","Water",NA,2022-06-23,"09:56:00","MST",NA,NA,NA,"Near Bottom","33","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359451","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-28-C/results/966359451/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:21","STORET",7,NA,2022-06-23 16:56:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",33,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-29-C","Sample-Routine","Water",NA,2022-06-23,"10:07:00","MST",NA,NA,NA,"Bottom","69.2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359463","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914010-0623-29-C/results/966359463/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:22","STORET",7,NA,2022-06-23 17:07:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",69.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914040-0623-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-23,"10:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359475","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914040-0623-2-C/results/966359475/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:22","STORET",7,NA,2022-06-23 17:51:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914040-0623-29-C","Sample-Routine","Water",NA,2022-06-23,"11:07:00","MST",NA,NA,NA,"Bottom","37.6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359489","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914040-0623-29-C/results/966359489/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:23","STORET",7,NA,2022-06-23 18:07:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",37.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914030-0623-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-23,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359500","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914030-0623-2-C/results/966359500/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:23","STORET",7,NA,2022-06-23 18:30:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220623-5914030-0623-29-C","Sample-Routine","Water",NA,2022-06-23,"11:47:00","MST",NA,NA,NA,"Bottom","37.7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359515","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220623-5914030-0623-29-C/results/966359515/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:24","STORET",7,NA,2022-06-23 18:47:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",37.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4998400-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"09:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359526","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4998400-0629-4-C/results/966359526/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:24","STORET",7,NA,2022-06-29 16:41:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4998130-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359557","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4998130-0629-4-C/results/966359557/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:25","STORET",7,NA,2022-06-29 17:08:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4997330-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:26:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359569","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997330-0629-4-C/results/966359569/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:25","STORET",7,NA,2022-06-29 17:26:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4997675-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359581","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997675-0629-4-C/results/966359581/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:26","STORET",7,NA,2022-06-29 17:47:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4997670-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:56:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359612","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997670-0629-4-C/results/966359612/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:26","STORET",7,NA,2022-06-29 17:56:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4997300-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359643","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997300-0629-4-C/results/966359643/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:27","STORET",7,NA,2022-06-29 18:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4997250-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359655","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4997250-0629-4-C/results/966359655/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:27","STORET",7,NA,2022-06-29 18:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-5910250-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359667","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5910250-0629-4-C/results/966359667/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:28","STORET",7,NA,2022-06-29 18:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-5910160-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"12:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359679","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5910160-0629-4-C/results/966359679/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:28","STORET",7,NA,2022-06-29 19:33:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-5913630-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"12:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913630","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE",NA,NA,NA,NA,"40.4841200000","-111.4651800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359691","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5913630-0629-4-C/results/966359691/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:29","STORET",7,NA,2022-06-29 19:49:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.48412,-111.46518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-5913460-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359703","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5913460-0629-4-C/results/966359703/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:29","STORET",7,NA,2022-06-29 20:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4996870-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359715","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996870-0629-4-C/results/966359715/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:30","STORET",7,NA,2022-06-29 20:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-5913210-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"13:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359727","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-5913210-0629-4-C/results/966359727/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:30","STORET",7,NA,2022-06-29 20:54:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4996890-0629-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-06-29,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359739","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996890-0629-4-C/results/966359739/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:31","STORET",7,NA,2022-06-29 20:55:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4996850-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"14:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359751","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996850-0629-4-C/results/966359751/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:31","STORET",7,NA,2022-06-29 21:07:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4996830-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359763","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996830-0629-4-C/results/966359763/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:32","STORET",7,NA,2022-06-29 21:20:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4996810-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359775","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996810-0629-4-C/results/966359775/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:32","STORET",7,NA,2022-06-29 21:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220629-4996780-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"14:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359787","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220629-4996780-0629-4-C/results/966359787/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:33","STORET",7,NA,2022-06-29 21:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220707-4936050-0707-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-07,"09:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359799","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-2-C/results/966359799/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:33","STORET",7,NA,2022-07-07 16:51:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220707-4936050-0707-22-C","Sample-Routine","Water",NA,2022-07-07,"09:51:00","MST",NA,NA,NA,"Midwater","1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359819","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-22-C/results/966359819/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:34","STORET",7,NA,2022-07-07 16:51:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220707-4936050-0707-23-C","Sample-Routine","Water",NA,2022-07-07,"09:55:00","MST",NA,NA,NA,"AboveThermoclin","4","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359837","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-23-C/results/966359837/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:34","STORET",7,NA,2022-07-07 16:55:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220707-4936050-0707-24-C","Sample-Routine","Water",NA,2022-07-07,"10:03:00","MST",NA,NA,NA,"Midwater","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359855","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-24-C/results/966359855/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:35","STORET",7,NA,2022-07-07 17:03:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220707-4936050-0707-26-C","Sample-Routine","Water",NA,2022-07-07,"10:07:00","MST",NA,NA,NA,"Midwater","17","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359873","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-26-C/results/966359873/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:35","STORET",7,NA,2022-07-07 17:07:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220707-4936050-0707-27-C","Sample-Routine","Water",NA,2022-07-07,"10:12:00","MST",NA,NA,NA,"BelowThermoclin","23","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359891","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-27-C/results/966359891/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:36","STORET",7,NA,2022-07-07 17:12:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220707-4936050-0707-29-C","Sample-Routine","Water",NA,2022-07-07,"10:22:00","MST",NA,NA,NA,"Bottom","32.7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359909","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220707-4936050-0707-29-C/results/966359909/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:36","STORET",7,NA,2022-07-07 17:22:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",32.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220707-5937650-0707-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-07,"13:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359927","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220707-5937650-0707-2-C/results/966359927/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:37","STORET",7,NA,2022-07-07 20:36:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220707-5937650-0707-23-C","Sample-Routine","Water",NA,2022-07-07,"13:38:00","MST",NA,NA,NA,"AboveThermoclin","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359947","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220707-5937650-0707-23-C/results/966359947/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:38","STORET",7,NA,2022-07-07 20:38:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220707-5937650-0707-27-C","Sample-Routine","Water",NA,2022-07-07,"13:44:00","MST",NA,NA,NA,"BelowThermoclin","11","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359965","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220707-5937650-0707-27-C/results/966359965/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:38","STORET",7,NA,2022-07-07 20:44:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220707-5937650-0707-29-C","Sample-Routine","Water",NA,2022-07-07,"13:47:00","MST",NA,NA,NA,"Bottom","17","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359983","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220707-5937650-0707-29-C/results/966359983/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:39","STORET",7,NA,2022-07-07 20:47:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR220715-4936420-0715-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-15,"10:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966359999","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220715-4936420-0715-2-C/results/966359999/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:39","STORET",7,NA,2022-07-15 17:24:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR220715-4936420-0715-23-C","Sample-Routine","Water",NA,2022-07-15,"10:28:00","MST",NA,NA,NA,"AboveThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360013","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220715-4936420-0715-23-C/results/966360013/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:40","STORET",7,NA,2022-07-15 17:28:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR220715-4936420-0715-27-C","Sample-Routine","Water",NA,2022-07-15,"10:29:00","MST",NA,NA,NA,"BelowThermoclin","14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360024","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220715-4936420-0715-27-C/results/966360024/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:40","STORET",7,NA,2022-07-15 17:29:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR220715-4936420-0715-29-C","Sample-Routine","Water",NA,2022-07-15,"10:41:00","MST",NA,NA,NA,"Bottom","18.7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360035",NA,"as N","Nitrogen","Dissolved","14","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220715-4936420-0715-29-C/results/966360035/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:41","STORET",7,NA,2022-07-15 17:41:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14,"MG/L","Numeric","Not Reviewed","Uncensored",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",18.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-20,"10:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360046","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-2-C/results/966360046/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:41","STORET",7,NA,2022-07-20 17:04:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-22-C","Sample-Routine","Water",NA,2022-07-20,"10:05:00","MST",NA,NA,NA,"Midwater","3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360060","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-22-C/results/966360060/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:41","STORET",7,NA,2022-07-20 17:05:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-23-C","Sample-Routine","Water",NA,2022-07-20,"10:08:00","MST",NA,NA,NA,"AboveThermoclin","8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360072","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-23-C/results/966360072/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:42","STORET",7,NA,2022-07-20 17:08:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-24-C","Sample-Routine","Water",NA,2022-07-20,"10:15:00","MST",NA,NA,NA,"Midwater","14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360084","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-24-C/results/966360084/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:42","STORET",7,NA,2022-07-20 17:15:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-26-C","Sample-Routine","Water",NA,2022-07-20,"10:21:00","MST",NA,NA,NA,"Midwater","20","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360096","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-26-C/results/966360096/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:43","STORET",7,NA,2022-07-20 17:21:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-27-C","Sample-Routine","Water",NA,2022-07-20,"10:29:00","MST",NA,NA,NA,"BelowThermoclin","25","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360108","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-27-C/results/966360108/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:43","STORET",7,NA,2022-07-20 17:29:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",25,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-28-C","Sample-Routine","Water",NA,2022-07-20,"10:35:00","MST",NA,NA,NA,"Near Bottom","32","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360120","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-28-C/results/966360120/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:44","STORET",7,NA,2022-07-20 17:35:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",32,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-29-C","Sample-Routine","Water",NA,2022-07-20,"10:41:00","MST",NA,NA,NA,"Bottom","65","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360132","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914010-0720-29-C/results/966360132/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:44","STORET",7,NA,2022-07-20 17:41:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",65,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914040-0720-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-20,"10:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360144","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914040-0720-2-C/results/966360144/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:45","STORET",7,NA,2022-07-20 17:59:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914040-0720-29-C","Sample-Routine","Water",NA,2022-07-20,"11:17:00","MST",NA,NA,NA,"Bottom","30.8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360158","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914040-0720-29-C/results/966360158/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:45","STORET",7,NA,2022-07-20 18:17:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",30.8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914030-0720-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-20,"11:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360169","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914030-0720-2-C/results/966360169/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:46","STORET",7,NA,2022-07-20 18:32:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220720-5914030-0720-29-C","Sample-Routine","Water",NA,2022-07-20,"11:49:00","MST",NA,NA,NA,"Bottom","36.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360183","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220720-5914030-0720-29-C/results/966360183/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:46","STORET",7,NA,2022-07-20 18:49:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",36.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913490-0721-2-C","Quality Control Sample-Field Replicate","Water",NA,2022-07-21,"09:23:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360194","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913490-0721-2-C/results/966360194/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:47","STORET",7,NA,2022-07-21 16:23:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-21,"09:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360208","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-2-C/results/966360208/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:47","STORET",7,NA,2022-07-21 16:24:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-23-C","Sample-Routine","Water",NA,2022-07-21,"09:35:00","MST",NA,NA,NA,"AboveThermoclin","8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360222","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-23-C/results/966360222/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:48","STORET",7,NA,2022-07-21 16:35:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-27-C","Sample-Routine","Water",NA,2022-07-21,"09:40:00","MST",NA,NA,NA,"BelowThermoclin","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360234","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-27-C/results/966360234/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:48","STORET",7,NA,2022-07-21 16:40:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-28-C","Sample-Routine","Water",NA,2022-07-21,"09:45:00","MST",NA,NA,NA,"Near Bottom","25","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360246","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-28-C/results/966360246/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:49","STORET",7,NA,2022-07-21 16:45:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",25,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-29-C","Sample-Routine","Water",NA,2022-07-21,"09:48:00","MST",NA,NA,NA,"Bottom","33","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360258","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913220-0721-29-C/results/966360258/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:49","STORET",7,NA,2022-07-21 16:48:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",33,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-21,"10:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360270","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-2-C/results/966360270/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:50","STORET",7,NA,2022-07-21 17:13:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-23-C","Sample-Routine","Water",NA,2022-07-21,"10:16:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360284","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-23-C/results/966360284/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:50","STORET",7,NA,2022-07-21 17:16:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-27-C","Sample-Routine","Water",NA,2022-07-21,"10:19:00","MST",NA,NA,NA,"BelowThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360295","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-27-C/results/966360295/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:51","STORET",7,NA,2022-07-21 17:19:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-29-C","Sample-Routine","Water",NA,2022-07-21,"10:34:00","MST",NA,NA,NA,"Bottom","20.6","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360306","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913230-0721-29-C/results/966360306/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:51","STORET",7,NA,2022-07-21 17:34:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20.6,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913240-0721-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-21,"10:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360317","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913240-0721-2-C/results/966360317/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:52","STORET",7,NA,2022-07-21 17:49:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220721-5913240-0721-29-C","Sample-Routine","Water",NA,2022-07-21,"10:52:00","MST",NA,NA,NA,"Bottom","4","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360331","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220721-5913240-0721-29-C/results/966360331/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:52","STORET",7,NA,2022-07-21 17:52:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220726-4995600-0726-4-C","Sample-Routine","Water",NA,2022-07-26,"10:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360342","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220726-4995600-0726-4-C/results/966360342/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:53","STORET",7,NA,2022-07-26 17:17:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220726-4995640-0726-4-C","Sample-Routine","Water",NA,2022-07-26,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995640","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING",NA,NA,NA,NA,"40.0269000000","-111.5040800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360373","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220726-4995640-0726-4-C/results/966360373/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:54","STORET",7,NA,2022-07-26 17:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0269000000","-111.5040800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0269,-111.50408,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220726-4995790-0726-4-C","Sample-Routine","Water",NA,2022-07-26,"10:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995790","SPANISH FK R AB CNFL / DIAMOND FK CK",NA,NA,NA,NA,"40.0246700000","-111.5029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360404","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-09,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220726-4995790-0726-4-C/results/966360404/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:54","STORET",7,NA,2022-07-26 17:38:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0246700000","-111.5029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.02467,-111.50297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4998400-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"09:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360435","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4998400-0728-4-C/results/966360435/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:55","STORET",7,NA,2022-07-28 16:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4998130-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:01:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360466","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4998130-0728-4-C/results/966360466/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:56","STORET",7,NA,2022-07-28 17:01:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4997330-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360478","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997330-0728-4-C/results/966360478/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:56","STORET",7,NA,2022-07-28 17:20:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4997675-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:41:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360490","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997675-0728-4-C/results/966360490/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:57","STORET",7,NA,2022-07-28 17:41:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4997670-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360521","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997670-0728-4-C/results/966360521/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:58","STORET",7,NA,2022-07-28 17:49:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4997300-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360552","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997300-0728-4-C/results/966360552/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:58","STORET",7,NA,2022-07-28 18:05:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4997250-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:36:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360564","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4997250-0728-4-C/results/966360564/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:59","STORET",7,NA,2022-07-28 18:36:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-5910250-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360576","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5910250-0728-4-C/results/966360576/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:57:59","STORET",7,NA,2022-07-28 18:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-5910160-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360588","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5910160-0728-4-C/results/966360588/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:00","STORET",7,NA,2022-07-28 19:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"10999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-5913630-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"12:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913630","PROVO RIVER AB CNFL/ SNAKE CK AT MCKELLER BRIDGE",NA,NA,NA,NA,"40.4841200000","-111.4651800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360603","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5913630-0728-4-C/results/966360603/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:01","STORET",7,NA,2022-07-28 19:28:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4841200000","-111.4651800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.48412,-111.46518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4996870-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"13:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360615","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996870-0728-4-C/results/966360615/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:01","STORET",7,NA,2022-07-28 20:12:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-5913210-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"13:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360627","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-5913210-0728-4-C/results/966360627/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:02","STORET",7,NA,2022-07-28 20:14:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4996890-0728-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-07-28,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360639","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996890-0728-4-C/results/966360639/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:02","STORET",7,NA,2022-07-28 20:15:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4996850-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"13:28:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360651","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996850-0728-4-C/results/966360651/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:03","STORET",7,NA,2022-07-28 20:28:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4996830-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"13:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360663","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996830-0728-4-C/results/966360663/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:03","STORET",7,NA,2022-07-28 20:38:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4996810-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"13:47:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360675","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996810-0728-4-C/results/966360675/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:04","STORET",7,NA,2022-07-28 20:47:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220728-4996780-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"13:59:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360687","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220728-4996780-0728-4-C/results/966360687/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:04","STORET",7,NA,2022-07-28 20:59:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220803-4936050-0803-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-03,"10:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360699","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-2-C/results/966360699/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:05","STORET",7,NA,2022-08-03 17:18:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220803-4936050-0803-23-C","Sample-Routine","Water",NA,2022-08-03,"10:19:00","MST",NA,NA,NA,"AboveThermoclin","3","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360732","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-23-C/results/966360732/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:06","STORET",7,NA,2022-08-03 17:19:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220803-4936050-0803-24-C","Sample-Routine","Water",NA,2022-08-03,"10:21:00","MST",NA,NA,NA,"Midwater","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360763","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-24-C/results/966360763/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:06","STORET",7,NA,2022-08-03 17:21:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220803-4936050-0803-26-C","Sample-Routine","Water",NA,2022-08-03,"10:29:00","MST",NA,NA,NA,"Midwater","16","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360794","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-26-C/results/966360794/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:07","STORET",7,NA,2022-08-03 17:29:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",16,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220803-4936050-0803-27-C","Sample-Routine","Water",NA,2022-08-03,"10:33:00","MST",NA,NA,NA,"BelowThermoclin","22","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360825","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-27-C/results/966360825/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:08","STORET",7,NA,2022-08-03 17:33:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220803-4936050-0803-29-C","Sample-Routine","Water",NA,2022-08-03,"10:38:00","MST",NA,NA,NA,"Bottom","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360856","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220803-4936050-0803-29-C/results/966360856/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:08","STORET",7,NA,2022-08-03 17:38:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220803-5937650-0803-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-03,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360887","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220803-5937650-0803-2-C/results/966360887/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:09","STORET",7,NA,2022-08-03 20:00:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220803-5937650-0803-23-C","Sample-Routine","Water",NA,2022-08-03,"13:03:00","MST",NA,NA,NA,"AboveThermoclin","4","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360920","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220803-5937650-0803-23-C/results/966360920/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:10","STORET",7,NA,2022-08-03 20:03:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220803-5937650-0803-27-C","Sample-Routine","Water",NA,2022-08-03,"13:09:00","MST",NA,NA,NA,"BelowThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360951","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220803-5937650-0803-27-C/results/966360951/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:11","STORET",7,NA,2022-08-03 20:09:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWRF220803-5937650-0803-29-C","Sample-Routine","Water",NA,2022-08-03,"13:20:00","MST",NA,NA,NA,"Bottom","19.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5937650","RED FLEET RES AB DAM 01",NA,NA,NA,NA,"40.5752400000","-109.4226400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966360982","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWRF220803-5937650-0803-29-C/results/966360982/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:11","STORET",7,NA,2022-08-03 20:20:00,NA,"Lake",NA,"14060002",NA,NA,NA,NA,"40.5752400000","-109.4226400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.57524,-109.42264,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",19.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR220812-4936420-0812-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-12,"10:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361013","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220812-4936420-0812-2-C/results/966361013/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:12","STORET",7,NA,2022-08-12 17:18:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR220812-4936420-0812-23-C","Sample-Routine","Water",NA,2022-08-12,"10:22:00","MST",NA,NA,NA,"AboveThermoclin","7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361027","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220812-4936420-0812-23-C/results/966361027/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:12","STORET",7,NA,2022-08-12 17:22:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR220812-4936420-0812-27-C","Sample-Routine","Water",NA,2022-08-12,"10:30:00","MST",NA,NA,NA,"BelowThermoclin","14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361038","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220812-4936420-0812-27-C/results/966361038/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:13","STORET",7,NA,2022-08-12 17:30:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSTR220812-4936420-0812-29-C","Sample-Routine","Water",NA,2022-08-12,"10:41:00","MST",NA,NA,NA,"Bottom","17.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936420","STRAWBERRY RES BRYANTS FK T-2",NA,NA,NA,NA,"40.1666200000","-111.1673900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361049","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSTR220812-4936420-0812-29-C/results/966361049/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:14","STORET",7,NA,2022-08-12 17:41:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1666200000","-111.1673900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.16662,-111.16739,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",17.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"11:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361060","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-2-C/results/966361060/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:14","STORET",7,NA,2022-08-16 18:16:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-22-C","Sample-Routine","Water",NA,2022-08-16,"11:17:00","MST",NA,NA,NA,"Midwater","1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361074","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-22-C/results/966361074/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:15","STORET",7,NA,2022-08-16 18:17:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-23-C","Sample-Routine","Water",NA,2022-08-16,"11:19:00","MST",NA,NA,NA,"AboveThermoclin","7","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361086","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-23-C/results/966361086/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:15","STORET",7,NA,2022-08-16 18:19:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-24-C","Sample-Routine","Water",NA,2022-08-16,"11:27:00","MST",NA,NA,NA,"Midwater","12","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361098","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-24-C/results/966361098/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:16","STORET",7,NA,2022-08-16 18:27:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-26-C","Sample-Routine","Water",NA,2022-08-16,"11:33:00","MST",NA,NA,NA,"Midwater","18","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361110","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-26-C/results/966361110/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:16","STORET",7,NA,2022-08-16 18:33:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",18,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-27-C","Sample-Routine","Water",NA,2022-08-16,"11:37:00","MST",NA,NA,NA,"BelowThermoclin","23","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361122","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-27-C/results/966361122/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:17","STORET",7,NA,2022-08-16 18:37:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-28-C","Sample-Routine","Water",NA,2022-08-16,"11:44:00","MST",NA,NA,NA,"Near Bottom","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361134","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-28-C/results/966361134/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:17","STORET",7,NA,2022-08-16 18:44:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-29-C","Sample-Routine","Water",NA,2022-08-16,"11:52:00","MST",NA,NA,NA,"Bottom","67","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914010","JORDANELLE RES AB DAM 01",NA,NA,NA,NA,"40.6007800000","-111.4157500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361146","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914010-0816-29-C/results/966361146/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:18","STORET",7,NA,2022-08-16 18:52:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6007800000","-111.4157500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60078,-111.41575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",67,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914040-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"12:04:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361177","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914040-0816-2-C/results/966361177/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:18","STORET",7,NA,2022-08-16 19:04:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914040-0816-29-C","Sample-Routine","Water",NA,2022-08-16,"12:15:00","MST",NA,NA,NA,"Bottom","32","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914040","JORDANELLE RES PROVO ARM 04",NA,NA,NA,NA,"40.6030100000","-111.3851800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361191","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914040-0816-29-C/results/966361191/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:19","STORET",7,NA,2022-08-16 19:15:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6030100000","-111.3851800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60301,-111.38518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",32,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914030-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"12:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361202","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914030-0816-2-C/results/966361202/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:19","STORET",7,NA,2022-08-16 19:31:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESJR220816-5914030-0816-29-C","Sample-Routine","Water",NA,2022-08-16,"13:45:00","MST",NA,NA,NA,"Bottom","34","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5914030","JORDANELLE RES NORTH ARM 03",NA,NA,NA,NA,"40.6196800000","-111.4107400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361216","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESJR220816-5914030-0816-29-C/results/966361216/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:20","STORET",7,NA,2022-08-16 20:45:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.6196800000","-111.4107400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61968,-111.41074,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",34,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913490-0817-2-C","Quality Control Sample-Field Replicate","Water",NA,2022-08-17,"10:16:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913490","DEER CREEK RES AB DAM 01 Replicate of 5913220",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361227","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913490-0817-2-C/results/966361227/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:20","STORET",7,NA,2022-08-17 17:16:00,NA,"Lake","Replicate of 5913220","16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-17,"10:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361241","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-2-C/results/966361241/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:21","STORET",7,NA,2022-08-17 17:17:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-23-C","Sample-Routine","Water",NA,2022-08-17,"10:27:00","MST",NA,NA,NA,"AboveThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361255","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-23-C/results/966361255/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:21","STORET",7,NA,2022-08-17 17:27:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-27-C","Sample-Routine","Water",NA,2022-08-17,"10:29:00","MST",NA,NA,NA,"BelowThermoclin","13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361267","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-27-C/results/966361267/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:22","STORET",7,NA,2022-08-17 17:29:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-28-C","Sample-Routine","Water",NA,2022-08-17,"10:35:00","MST",NA,NA,NA,"Near Bottom","22","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361279","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-28-C/results/966361279/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:22","STORET",7,NA,2022-08-17 17:35:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-29-C","Sample-Routine","Water",NA,2022-08-17,"10:42:00","MST",NA,NA,NA,"Bottom","30","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913220","DEER CREEK RES AB DAM 01",NA,NA,NA,NA,"40.4091200000","-111.5235200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361291","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913220-0817-29-C/results/966361291/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:23","STORET",7,NA,2022-08-17 17:42:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4091200000","-111.5235200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40912,-111.52352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-17,"11:06:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361322","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-2-C/results/966361322/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:23","STORET",7,NA,2022-08-17 18:06:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-25-C","Sample-Routine","Water",NA,2022-08-17,"11:12:00","MST",NA,NA,NA,"Midwater","8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361336","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-25-C/results/966361336/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:24","STORET",7,NA,2022-08-17 18:12:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-29-C","Sample-Routine","Water",NA,2022-08-17,"11:22:00","MST",NA,NA,NA,"Bottom","17","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913230","DEER CREEK RES MIDLAKE 02",NA,NA,NA,NA,"40.4252400000","-111.5038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361347","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913230-0817-29-C/results/966361347/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:24","STORET",7,NA,2022-08-17 18:22:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4252400000","-111.5038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.42524,-111.5038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913240-0817-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-17,"11:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361358","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913240-0817-2-C/results/966361358/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:25","STORET",7,NA,2022-08-17 18:37:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJPRESDC220817-5913240-0817-29-C","Sample-Routine","Water",NA,2022-08-17,"11:43:00","MST",NA,NA,NA,"Bottom","2","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913240","DEER CREEK RES UPPER END 03",NA,NA,NA,NA,"40.4632900000","-111.4832400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361372","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJPRESDC220817-5913240-0817-29-C/results/966361372/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:25","STORET",7,NA,2022-08-17 18:43:00,NA,"Lake",NA,"16020203",NA,NA,NA,NA,"40.4632900000","-111.4832400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.46329,-111.48324,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4998400-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"10:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361383","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4998400-0830-4-C/results/966361383/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:26","STORET",7,NA,2022-08-30 17:09:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4998130-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"10:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361397",NA,"as N","Nitrogen","Dissolved","2.2","mg/L",NA,"Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4998130-0830-4-C/results/966361397/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:26","STORET",7,NA,2022-08-30 17:31:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4997330-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"10:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361428","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997330-0830-4-C/results/966361428/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:27","STORET",7,NA,2022-08-30 17:51:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4997675-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"11:13:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361459","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997675-0830-4-C/results/966361459/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:28","STORET",7,NA,2022-08-30 18:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4997670-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"11:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361490","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997670-0830-4-C/results/966361490/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:28","STORET",7,NA,2022-08-30 18:19:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4997300-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"11:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361521","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997300-0830-4-C/results/966361521/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:29","STORET",7,NA,2022-08-30 18:33:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4997250-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"12:03:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361533","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4997250-0830-4-C/results/966361533/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:29","STORET",7,NA,2022-08-30 19:03:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-5910250-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361545","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5910250-0830-4-C/results/966361545/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:30","STORET",7,NA,2022-08-30 19:10:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-5910160-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"12:52:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361557","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5910160-0830-4-C/results/966361557/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:30","STORET",7,NA,2022-08-30 19:52:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-5913460-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"13:29:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913460","MAIN CK AB DEER CK RES AT US 189 XING",NA,NA,NA,NA,"40.4096600000","-111.4785200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361572","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5913460-0830-4-C/results/966361572/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:31","STORET",7,NA,2022-08-30 20:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4096600000","-111.4785200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40966,-111.47852,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4996870-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361584","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996870-0830-4-C/results/966361584/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:31","STORET",7,NA,2022-08-30 20:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-5913210-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"13:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361596","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-5913210-0830-4-C/results/966361596/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:32","STORET",7,NA,2022-08-30 20:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4996890-0830-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-08-30,"13:54:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361627","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996890-0830-4-C/results/966361627/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:32","STORET",7,NA,2022-08-30 20:54:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4996850-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361658","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996850-0830-4-C/results/966361658/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:33","STORET",7,NA,2022-08-30 21:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4996830-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"14:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361670","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996830-0830-4-C/results/966361670/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:34","STORET",7,NA,2022-08-30 21:24:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4996810-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"14:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361682","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996810-0830-4-C/results/966361682/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:34","STORET",7,NA,2022-08-30 21:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220830-4996780-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"14:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361694","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220830-4996780-0830-4-C/results/966361694/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:35","STORET",7,NA,2022-08-30 21:44:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220901-4995600-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"10:17:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361706","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220901-4995600-0901-4-C/results/966361706/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:35","STORET",7,NA,2022-09-01 17:17:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220901-4995640-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"10:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995640","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING",NA,NA,NA,NA,"40.0269000000","-111.5040800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361736","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220901-4995640-0901-4-C/results/966361736/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:36","STORET",7,NA,2022-09-01 17:31:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0269000000","-111.5040800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0269,-111.50408,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220901-4995790-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"10:37:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995790","SPANISH FK R AB CNFL / DIAMOND FK CK",NA,NA,NA,NA,"40.0246700000","-111.5029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361766","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220901-4995790-0901-4-C/results/966361766/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:36","STORET",7,NA,2022-09-01 17:37:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0246700000","-111.5029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.02467,-111.50297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220907-4936050-0907-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-07,"09:53:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361796","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-2-C/results/966361796/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:37","STORET",7,NA,2022-09-07 16:53:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220907-4936050-0907-23-C","Sample-Routine","Water",NA,2022-09-07,"09:55:00","MST",NA,NA,NA,"AboveThermoclin","1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361816","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-23-C/results/966361816/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:38","STORET",7,NA,2022-09-07 16:55:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220907-4936050-0907-24-C","Sample-Routine","Water",NA,2022-09-07,"09:56:00","MST",NA,NA,NA,"Midwater","8","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361834","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-24-C/results/966361834/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:38","STORET",7,NA,2022-09-07 16:56:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220907-4936050-0907-26-C","Sample-Routine","Water",NA,2022-09-07,"09:58:00","MST",NA,NA,NA,"Midwater","14","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361852","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-26-C/results/966361852/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:39","STORET",7,NA,2022-09-07 16:58:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220907-4936050-0907-27-C","Sample-Routine","Water",NA,2022-09-07,"10:06:00","MST",NA,NA,NA,"BelowThermoclin","20","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361870","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-27-C/results/966361870/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:39","STORET",7,NA,2022-09-07 17:06:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",20,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWSR220907-4936050-0907-29-C","Sample-Routine","Water",NA,2022-09-07,"10:11:00","MST",NA,NA,NA,"Bottom","27","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4936050","STARVATION RES AB DAM 01",NA,NA,NA,NA,"40.1921800000","-110.4430700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361888","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-09-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWSR220907-4936050-0907-29-C/results/966361888/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:40","STORET",7,NA,2022-09-07 17:11:00,NA,"Lake",NA,"14060004",NA,NA,NA,NA,"40.1921800000","-110.4430700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.19218,-110.44307,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",27,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4998400-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"10:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998400","PROVO R AB WOODLAND AT USGS GAGE NO.10154200",NA,NA,NA,NA,"40.5577300000","-111.1687800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361906","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4998400-0929-4-C/results/966361906/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:40","STORET",7,NA,2022-09-29 17:21:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5577300000","-111.1687800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55773,-111.16878,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4998130-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"10:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4998130","Provo River ab Jordanelle Reservoir at Rock Cliff Trail Bridge",NA,NA,NA,NA,"40.6019200000","-111.3410100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361937","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4998130-0929-4-C/results/966361937/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:41","STORET",7,NA,2022-09-29 17:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6019200000","-111.3410100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.60192,-111.34101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4997670-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"10:43:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997670","MCHENRY CK BL MAYFLOWER/CUNNINGHAM CANAL",NA,NA,NA,NA,"40.6166200000","-111.4282500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361949","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997670-0929-4-C/results/966361949/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:41","STORET",7,NA,2022-09-29 17:43:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6166200000","-111.4282500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61662,-111.42825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4997330-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"11:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997330","PROVO R BL JORDANELLE RES. ON OLD US4O XING",NA,NA,NA,NA,"40.5949500000","-111.4271400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361961","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997330-0929-4-C/results/966361961/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:42","STORET",7,NA,2022-09-29 18:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5949500000","-111.4271400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.59495,-111.42714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4996780-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"11:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996780","PROVO RIVER AT MURDOCK DIVERSION",NA,NA,NA,NA,"40.3263400000","-111.6421500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361973","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996780-0929-4-C/results/966361973/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:42","STORET",7,NA,2022-09-29 18:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3263400000","-111.6421500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.32634,-111.64215,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4996810-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"11:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996810","PROVO RIVER AT OLMSTEAD DIVERSION",NA,NA,NA,NA,"40.3477300000","-111.5902000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361985","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996810-0929-4-C/results/966361985/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:43","STORET",7,NA,2022-09-29 18:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3477300000","-111.5902000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.34773,-111.5902,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4997675-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"11:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997675","Big Dutch Pete Stream bl Mayflower in Jordanelle State Park",NA,NA,NA,NA,"40.6170800000","-111.4321300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966361997","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997675-0929-4-C/results/966361997/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:43","STORET",7,NA,2022-09-29 18:21:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.6170800000","-111.4321300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.61708,-111.43213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4997300-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"11:42:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997300","PROVO R AT MIDWAY CUTOFF RD XING N OF HEBER",NA,NA,NA,NA,"40.5541200000","-111.4315800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362028","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997300-0929-4-C/results/966362028/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:44","STORET",7,NA,2022-09-29 18:42:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5541200000","-111.4315800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.55412,-111.43158,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4997250-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4997250","SPRING CK AB CNFL / PROVO R NR HEBER",NA,NA,NA,NA,"40.5002400000","-111.4446700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362040","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4997250-0929-4-C/results/966362040/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:44","STORET",7,NA,2022-09-29 19:15:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5002400000","-111.4446700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50024,-111.44467,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-5910250-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"12:21:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910250","PROVO R HEBER-MIDWAY RD (U-113) XING BL BERKENSHAW POND",NA,NA,NA,NA,"40.5071700000","-111.4496300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362052","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-5910250-0929-4-C/results/966362052/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:45","STORET",7,NA,2022-09-29 19:21:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.5071700000","-111.4496300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.50717,-111.44963,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-5910160-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"12:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5910160","SNAKE CK AB CNFL/PROVO R",NA,NA,NA,NA,"40.4821000000","-111.4706000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362064","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-5910160-0929-4-C/results/966362064/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:45","STORET",7,NA,2022-09-29 19:49:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4821000000","-111.4706000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.4821,-111.4706,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4996870-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996870","LITTLE DEER CK AB CNFL / PROVO RIVER",NA,NA,NA,NA,"40.4032900000","-111.5304700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362077","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996870-0929-4-C/results/966362077/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:46","STORET",7,NA,2022-09-29 20:30:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4032900000","-111.5304700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40329,-111.53047,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-5913210-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"13:34:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-5913210","PROVO RIVER BL DEER CREEK RES",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362089","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-5913210-0929-4-C/results/966362089/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:46","STORET",7,NA,2022-09-29 20:34:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4996890-0929-4-C","Quality Control Sample-Field Replicate","Water",NA,2022-09-29,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996890","PROVO RIVER BL DEER CREEK RES CUWCD Replicate of 5913210",NA,NA,NA,NA,"40.4030300000","-111.5296600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362101","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996890-0929-4-C/results/966362101/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:47","STORET",7,NA,2022-09-29 20:35:00,NA,"River/Stream","Replicate of 5913210","16020203",NA,NA,NA,NA,"40.4030300000","-111.5296600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_replicate","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.40303,-111.52966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4996850-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"13:46:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996850","N FK PROVO R AB CNFL / PROVO R AT WILDWOOD",NA,NA,NA,NA,"40.3644000000","-111.5568600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362113","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996850-0929-4-C/results/966362113/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:47","STORET",7,NA,2022-09-29 20:46:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3644000000","-111.5568600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.3644,-111.55686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWJP220929-4996830-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"13:57:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4996830","LOWER S FK PROVO R AT GAGING STATIION",NA,NA,NA,NA,"40.3527300000","-111.5701900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362125","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWJP220929-4996830-0929-4-C/results/966362125/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:48","STORET",7,NA,2022-09-29 20:57:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3527300000","-111.5701900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.35273,-111.57019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220930-4995600-0930-4-C","Sample-Routine","Water",NA,2022-09-30,"10:19:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995600","SPANISH FORK RIVER AT MOARK DIVERSION",NA,NA,NA,NA,"40.0844000000","-111.5968600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362138","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220930-4995600-0930-4-C/results/966362138/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:48","STORET",7,NA,2022-09-30 17:19:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0844000000","-111.5968600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0844,-111.59686,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220930-4995640-0930-4-C","Sample-Routine","Water",NA,2022-09-30,"10:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995640","DIAMOND FK CK AB SPANISH FK R AT US6 89 XING",NA,NA,NA,NA,"40.0269000000","-111.5040800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362169","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220930-4995640-0930-4-C/results/966362169/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:49","STORET",7,NA,2022-09-30 17:31:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0269000000","-111.5040800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.0269,-111.50408,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CUWDF220930-4995790-0930-4-C","Sample-Routine","Water",NA,2022-09-30,"10:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Central Utah Water Conservancy District","UTAHDWQ_WQX-4995790","SPANISH FK R AB CNFL / DIAMOND FK CK",NA,NA,NA,NA,"40.0246700000","-111.5029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-966362200","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Calculated",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"4500-NORG D","APHA","4500 NORG D ~ Block Digestion and Flow Injection Analysis",NA,NA,"Chem-Tech Ford",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CUWDF220930-4995790-0930-4-C/results/966362200/resdetectqntlmts","Lower Reporting Limit","1","mg/L",NA,"2023-01-31T19:58:49","STORET",7,NA,2022-09-30 17:38:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0246700000","-111.5029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.02467,-111.50297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",1,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4900754-0523-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-23,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062219","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4900754-0523-2-C/results/970062219/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:40","STORET",7,NA,2022-05-23 21:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4900754-0523-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-23,"14:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062225","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4900754-0523-2-C/results/970062225/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:40","STORET",7,NA,2022-05-23 21:05:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4900754-0615-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-15,"19:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062228","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4900754-0615-2-C/results/970062228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:40","STORET",7,NA,2022-06-16 02:32:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4900754-0615-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-15,"19:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062233","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4900754-0615-2-C/results/970062233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:41","STORET",7,NA,2022-06-16 02:32:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4900754-0718-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-18,"16:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062245","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4900754-0718-2-C/results/970062245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:41","STORET",7,NA,2022-07-18 23:24:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4900754-0718-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-18,"16:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062246","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4900754-0718-2-C/results/970062246/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:41","STORET",7,NA,2022-07-18 23:24:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4900754-0825-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-25,"13:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062253","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4900754-0825-2-C/results/970062253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:42","STORET",7,NA,2022-08-25 20:18:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4900754-0825-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-25,"13:18:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062254","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4900754-0825-2-C/results/970062254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:42","STORET",7,NA,2022-08-25 20:18:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4900754-0920-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-20,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062267","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4900754-0920-2-C/results/970062267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:43","STORET",7,NA,2022-09-20 20:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4900754-0920-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-20,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900754","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES LAKE BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062270","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4900754-0920-2-C/results/970062270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:43","STORET",7,NA,2022-09-20 20:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4900755-0523-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-23,"15:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062282","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4900755-0523-4-C/results/970062282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:44","STORET",7,NA,2022-05-23 22:51:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4900755-0523-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-23,"15:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062284","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4900755-0523-4-C/results/970062284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:44","STORET",7,NA,2022-05-23 22:51:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4900755-0616-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062294","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4900755-0616-4-C/results/970062294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:45","STORET",7,NA,2022-06-16 20:35:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4900755-0616-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"13:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062302","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4900755-0616-4-C/results/970062302/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:45","STORET",7,NA,2022-06-16 20:35:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4900755-0718-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-18,"15:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062313","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4900755-0718-4-C/results/970062313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:46","STORET",7,NA,2022-07-18 22:31:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4900755-0718-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-18,"15:31:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062316","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4900755-0718-4-C/results/970062316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:46","STORET",7,NA,2022-07-18 22:31:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4900755-0825-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-25,"14:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062320","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4900755-0825-4-C/results/970062320/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:47","STORET",7,NA,2022-08-25 21:51:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4900755-0825-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-25,"14:51:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062321","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4900755-0825-4-C/results/970062321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:47","STORET",7,NA,2022-08-25 21:51:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4900755-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-20,"14:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062329","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4900755-0920-4-C/results/970062329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:48","STORET",7,NA,2022-09-20 21:07:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4900755-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-20,"14:07:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4900755","EQUIPMENT BLANK-BEAR LAKE AND TRIBUTAIRES RIVER/STREAM BLANK",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970062333","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4900755-0920-4-C/results/970062333/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:08:48","STORET",7,NA,2022-09-20 21:07:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4903260-0726-4-C","Sample-Routine","Water",NA,2022-07-26,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065303",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4903260-0726-4-C/results/970065303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:41","STORET",7,NA,2022-07-26 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4903260-0726-4-C","Sample-Routine","Water",NA,2022-07-26,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4903260","BEAR R AB CUTLER RES AT BRIDGE 1 MI W OF BENSON",NA,NA,NA,NA,"41.7977000000","-111.9302300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065317",NA,"as N","Nitrogen","Total","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4903260-0726-4-C/results/970065317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:41","STORET",7,NA,2022-07-26 20:35:00,NA,"River/Stream",NA,"16010202",NA,NA,NA,NA,"41.7977000000","-111.9302300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",41.7977,-111.93023,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4905000-0726-4-C","Sample-Routine","Water",NA,2022-07-26,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065330",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4905000-0726-4-C/results/970065330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:42","STORET",7,NA,2022-07-26 21:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4905000-0726-4-C","Sample-Routine","Water",NA,2022-07-26,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905000","LITTLE BEAR R @ CR376 XING (MENDON RD)",NA,NA,NA,NA,"41.7188900000","-111.9450000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065358",NA,"as N","Nitrogen","Total","0.806","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4905000-0726-4-C/results/970065358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:43","STORET",7,NA,2022-07-26 21:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7188900000","-111.9450000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.806,"MG/L","Numeric","Not Reviewed","Uncensored",41.71889,-111.945,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905040-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065361",NA,"as N","Nitrogen","Total","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905040-0413-4-C/results/970065361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:43","STORET",7,NA,2022-04-13 20:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905040-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065370",NA,"as N","Nitrogen","Total","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905040-0524-4-C/results/970065370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:44","STORET",7,NA,2022-05-24 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4905040-0726-4-C","Sample-Routine","Water",NA,2022-07-26,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065383",NA,"as N","Nitrogen","Dissolved","2.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4905040-0726-4-C/results/970065383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:45","STORET",7,NA,2022-07-26 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4905040-0726-4-C","Sample-Routine","Water",NA,2022-07-26,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065384",NA,"as N","Nitrogen","Total","2.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4905040-0726-4-C/results/970065384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:45","STORET",7,NA,2022-07-26 21:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905040-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065405",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905040-0802-4-C/results/970065405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:46","STORET",7,NA,2022-08-02 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905040-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905040","LOGAN R AB CNFL / LITTLE BEAR R AT CR376 XING",NA,NA,NA,NA,"41.7204900000","-111.8866100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065410",NA,"as N","Nitrogen","Total","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905040-0919-4-C/results/970065410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:47","STORET",7,NA,2022-09-19 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7204900000","-111.8866100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",41.72049,-111.88661,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905135-0413-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-13,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905135","Logan River watershed nonpoint source QA/QC blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065416","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905135-0413-4-C/results/970065416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:48","STORET",7,NA,2022-04-13 20:50:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905135-0524-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-24,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905135","Logan River watershed nonpoint source QA/QC blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065425","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905135-0524-4-C/results/970065425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:49","STORET",7,NA,2022-05-24 17:20:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905135-0802-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-02,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905135","Logan River watershed nonpoint source QA/QC blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065428","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905135-0802-4-C/results/970065428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:49","STORET",7,NA,2022-08-02 19:30:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905135-0919-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-19,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905135","Logan River watershed nonpoint source QA/QC blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065436","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905135-0919-4-C/results/970065436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:50","STORET",7,NA,2022-09-19 19:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905137-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905137","Logan River AB boat launch near SR 30 at 3600 West",NA,NA,NA,NA,"41.7430900000","-111.9198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065439",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905137-0413-4-C/results/970065439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:51","STORET",7,NA,2022-04-13 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",41.74309,-111.91986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905137-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905137","Logan River AB boat launch near SR 30 at 3600 West",NA,NA,NA,NA,"41.7430900000","-111.9198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065445",NA,"as N","Nitrogen","Total","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905137-0524-4-C/results/970065445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:51","STORET",7,NA,2022-05-24 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",41.74309,-111.91986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905137-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905137","Logan River AB boat launch near SR 30 at 3600 West",NA,NA,NA,NA,"41.7430900000","-111.9198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065452",NA,"as N","Nitrogen","Total","0.888","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905137-0802-4-C/results/970065452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:52","STORET",7,NA,2022-08-02 19:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.888,"MG/L","Numeric","Not Reviewed","Uncensored",41.74309,-111.91986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905137-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905137","Logan River AB boat launch near SR 30 at 3600 West",NA,NA,NA,NA,"41.7430900000","-111.9198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065456",NA,"as N","Nitrogen","Total","0.402","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905137-0919-4-C/results/970065456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:53","STORET",7,NA,2022-09-19 19:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7430900000","-111.9198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.402,"MG/L","Numeric","Not Reviewed","Uncensored",41.74309,-111.91986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905140-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065463",NA,"as N","Nitrogen","Total","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905140-0413-4-C/results/970065463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:53","STORET",7,NA,2022-04-13 20:35:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905140-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065468",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905140-0524-4-C/results/970065468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:54","STORET",7,NA,2022-05-24 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905140-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065477",NA,"as N","Nitrogen","Total","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905140-0802-4-C/results/970065477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:55","STORET",7,NA,2022-08-02 18:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905140-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905140","Logan R @ 1000 West",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065481",NA,"as N","Nitrogen","Total","0.241","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905140-0919-4-C/results/970065481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:55","STORET",7,NA,2022-09-19 18:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.241,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905142-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065489",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905142-0413-4-C/results/970065489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:56","STORET",7,NA,2022-04-13 20:45:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905142-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065493",NA,"as N","Nitrogen","Total","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905142-0524-4-C/results/970065493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:57","STORET",7,NA,2022-05-24 16:50:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905142-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065498",NA,"as N","Nitrogen","Total","0.649","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905142-0802-4-C/results/970065498/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:57","STORET",7,NA,2022-08-02 18:05:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.649,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905142-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905142","Logan R @ 1000 West Replicate of 4905140",NA,NA,NA,NA,"41.7064000000","-111.8622200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065506",NA,"as N","Nitrogen","Total","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905142-0919-4-C/results/970065506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:58","STORET",7,NA,2022-09-19 18:50:00,NA,"River/Stream","Replicate of 4905140","16010203",NA,NA,NA,NA,"41.7064000000","-111.8622200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",41.7064,-111.86222,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905188-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065511",NA,"as N","Nitrogen","Total","0.969","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905188-0413-4-C/results/970065511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:10:59","STORET",7,NA,2022-04-13 19:40:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.969,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905188-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065521",NA,"as N","Nitrogen","Total","0.512","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905188-0524-4-C/results/970065521/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:00","STORET",7,NA,2022-05-24 16:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.512,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905188-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065525",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905188-0802-4-C/results/970065525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:00","STORET",7,NA,2022-08-02 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905188-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905188","Spring Creek ab pedestrian bridge and Logan River confluence",NA,NA,NA,NA,"41.7061100000","-111.8485000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065532",NA,"as N","Nitrogen","Total","0.514","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905188-0919-4-C/results/970065532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:01","STORET",7,NA,2022-09-19 17:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7061100000","-111.8485000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.514,"MG/L","Numeric","Not Reviewed","Uncensored",41.70611,-111.8485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905192-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065538",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905192-0413-4-C/results/970065538/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:01","STORET",7,NA,2022-04-13 19:20:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905192-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065543",NA,"as N","Nitrogen","Total","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905192-0524-4-C/results/970065543/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:02","STORET",7,NA,2022-05-24 16:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905192-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065551",NA,"as N","Nitrogen","Total","0.474","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905192-0802-4-C/results/970065551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:03","STORET",7,NA,2022-08-02 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.474,"MG/L","Numeric","Not Reviewed","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905192-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905192","Logan River below bridge on Golf Course Road",NA,NA,NA,NA,"41.7159100000","-111.8399300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065552",NA,"as N","Nitrogen","Total","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905192-0919-4-C/results/970065552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:03","STORET",7,NA,2022-09-19 17:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7159100000","-111.8399300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",41.71591,-111.83993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905195-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065561",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905195-0413-4-C/results/970065561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:04","STORET",7,NA,2022-04-13 19:00:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905195-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065568",NA,"as N","Nitrogen","Total","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905195-0524-4-C/results/970065568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:04","STORET",7,NA,2022-05-24 15:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905195-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065575",NA,"as N","Nitrogen","Total","0.447","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905195-0802-4-C/results/970065575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:05","STORET",7,NA,2022-08-02 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.447,"MG/L","Numeric","Not Reviewed","Uncensored",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905195-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905195","LOGAN R AB US 89 XING BL 1ST DAM",NA,NA,NA,NA,"41.7213200000","-111.8346600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065578","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905195-0919-4-C/results/970065578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:05","STORET",7,NA,2022-09-19 16:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7213200000","-111.8346600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.72132,-111.83466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905198-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065587",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905198-0413-4-C/results/970065587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:06","STORET",7,NA,2022-04-13 18:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905198-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"08:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065589",NA,"as N","Nitrogen","Total","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905198-0524-4-C/results/970065589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:06","STORET",7,NA,2022-05-24 15:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905198-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065596",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905198-0802-4-C/results/970065596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:07","STORET",7,NA,2022-08-02 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905198-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905198","Logan River at Water Lab lower bridge",NA,NA,NA,NA,"41.7391200000","-111.7957700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065601","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905198-0919-4-C/results/970065601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:07","STORET",7,NA,2022-09-19 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7391200000","-111.7957700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.73912,-111.79577,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220413-4905400-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065608",NA,"as N","Nitrogen","Total","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220413-4905400-0413-4-C/results/970065608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:08","STORET",7,NA,2022-04-13 19:45:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220524-4905400-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065615",NA,"as N","Nitrogen","Total","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220524-4905400-0524-4-C/results/970065615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:09","STORET",7,NA,2022-05-24 16:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220802-4905400-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065621",NA,"as N","Nitrogen","Total","0.563","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220802-4905400-0802-4-C/results/970065621/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:09","STORET",7,NA,2022-08-02 17:30:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.563,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LOGANRV220919-4905400-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4905400","BLACKSMITH FK R AB CNFL / LOGAN R AT US89 XING",NA,NA,NA,NA,"41.7043800000","-111.8518900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065628",NA,"as N","Nitrogen","Total","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LOGANRV220919-4905400-0919-4-C/results/970065628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:10","STORET",7,NA,2022-09-19 18:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.7043800000","-111.8518900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",41.70438,-111.85189,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907005-0523-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-23,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065929",NA,"as N","Nitrogen","Dissolved","0.305","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907005-0523-2-C/results/970065929/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:28","STORET",7,NA,2022-05-23 19:05:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.305,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907005-0523-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-23,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065932",NA,"as N","Nitrogen","Total","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907005-0523-2-C/results/970065932/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:28","STORET",7,NA,2022-05-23 19:05:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907005-0523-29-C","Sample-Routine","Water",NA,2022-05-23,"12:20:00","MST",NA,NA,NA,"Bottom","32.235","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065936",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907005-0523-29-C/results/970065936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:29","STORET",7,NA,2022-05-23 19:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",32.235,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907005-0523-29-C","Sample-Routine","Water",NA,2022-05-23,"12:20:00","MST",NA,NA,NA,"Bottom","32.235","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065938",NA,"as N","Nitrogen","Dissolved","0.218","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907005-0523-29-C/results/970065938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:29","STORET",7,NA,2022-05-23 19:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.218,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",32.235,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-16,"10:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065942",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-2-C/results/970065942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:30","STORET",7,NA,2022-06-16 17:09:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-16,"10:09:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065946",NA,"as N","Nitrogen","Dissolved","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-2-C/results/970065946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:30","STORET",7,NA,2022-06-16 17:09:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-PZ-C","Sample-Composite Without Parents","Water",NA,2022-06-16,"10:25:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Licor 1% photic zone sample collected at depths 1, 3, 8, 13, and 24m",NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065955",NA,"as N","Nitrogen","Total","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-PZ-C/results/970065955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:30","STORET",7,NA,2022-06-16 17:25:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-PZ-C","Sample-Composite Without Parents","Water",NA,2022-06-16,"10:25:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Licor 1% photic zone sample collected at depths 1, 3, 8, 13, and 24m",NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065960",NA,"as N","Nitrogen","Dissolved","0.186","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-PZ-C/results/970065960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:30","STORET",7,NA,2022-06-16 17:25:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Pass","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-29-C","Sample-Routine","Water",NA,2022-06-16,"10:35:00","MST",NA,NA,NA,"Bottom","36.135","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065967",NA,"as N","Nitrogen","Dissolved","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-29-C/results/970065967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:31","STORET",7,NA,2022-06-16 17:35:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",36.135,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907005-0616-29-C","Sample-Routine","Water",NA,2022-06-16,"10:35:00","MST",NA,NA,NA,"Bottom","36.135","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065971",NA,"as N","Nitrogen","Total","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907005-0616-29-C/results/970065971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:31","STORET",7,NA,2022-06-16 17:35:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",36.135,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907005-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065979",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907005-0718-2-C/results/970065979/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:32","STORET",7,NA,2022-07-18 20:05:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907005-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"13:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065986",NA,"as N","Nitrogen","Dissolved","0.151","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907005-0718-2-C/results/970065986/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:32","STORET",7,NA,2022-07-18 20:05:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.151,"MG/L","Numeric","Pass","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907005-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"12:55:00","MST",NA,NA,NA,"Bottom","35.068","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065988",NA,"as N","Nitrogen","Total","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907005-0718-29-C/results/970065988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:32","STORET",7,NA,2022-07-18 19:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",35.068,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907005-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"12:55:00","MST",NA,NA,NA,"Bottom","35.068","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065989",NA,"as N","Nitrogen","Dissolved","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907005-0718-29-C/results/970065989/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:32","STORET",7,NA,2022-07-18 19:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",35.068,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-25,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970065999",NA,"as N","Nitrogen","Total","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-2-C/results/970065999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:33","STORET",7,NA,2022-08-25 17:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-25,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066004",NA,"as N","Nitrogen","Dissolved","0.166","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-2-C/results/970066004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:33","STORET",7,NA,2022-08-25 17:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.166,"MG/L","Numeric","Pass","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-PZ-C","Sample-Composite Without Parents","Water",NA,2022-08-25,"10:40:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Licor 1% photic zone sample collected at depths 1.5, 7, 13, 18, 23 and 28m at 12:00",NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066008",NA,"as N","Nitrogen","Dissolved","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-PZ-C/results/970066008/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:34","STORET",7,NA,2022-08-25 17:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-PZ-C","Sample-Composite Without Parents","Water",NA,2022-08-25,"10:40:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp","Licor 1% photic zone sample collected at depths 1.5, 7, 13, 18, 23 and 28m at 12:00",NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066009",NA,"as N","Nitrogen","Total","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-PZ-C/results/970066009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:34","STORET",7,NA,2022-08-25 17:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-29-C","Sample-Routine","Water",NA,2022-08-25,"10:50:00","MST",NA,NA,NA,"Bottom","34.085","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066025",NA,"as N","Nitrogen","Dissolved","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-29-C/results/970066025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:34","STORET",7,NA,2022-08-25 17:50:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",34.085,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907005-0825-29-C","Sample-Routine","Water",NA,2022-08-25,"10:50:00","MST",NA,NA,NA,"Bottom","34.085","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066026",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907005-0825-29-C/results/970066026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:34","STORET",7,NA,2022-08-25 17:50:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",34.085,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907005-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"12:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066028",NA,"as N","Nitrogen","Total","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907005-0920-2-C/results/970066028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:35","STORET",7,NA,2022-09-20 19:02:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907005-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"12:02:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066037",NA,"as N","Nitrogen","Dissolved","0.181","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907005-0920-2-C/results/970066037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:35","STORET",7,NA,2022-09-20 19:02:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.181,"MG/L","Numeric","Pass","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907005-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"12:18:00","MST",NA,NA,NA,"Bottom","34.049","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066042",NA,"as N","Nitrogen","Dissolved","0.178","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907005-0920-29-C/results/970066042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:36","STORET",7,NA,2022-09-20 19:18:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.178,"MG/L","Numeric","Pass","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",34.049,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907005-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"12:18:00","MST",NA,NA,NA,"Bottom","34.049","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907005","Bear Lake 2.8 miles east of Bear Lake State Park boat ramp",NA,NA,NA,NA,"41.9699100000","-111.3440700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066043",NA,"as N","Nitrogen","Total","0.174","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907005-0920-29-C/results/970066043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:36","STORET",7,NA,2022-09-20 19:18:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9699100000","-111.3440700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.174,"MG/L","Numeric","Pass","Uncensored",41.96991,-111.34407,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",34.049,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907058-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:49:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907058","Falula Creek at Cisco Rd culvert crossing southeast side",NA,NA,NA,NA,"41.8489000000","-111.3011200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066052",NA,"as N","Nitrogen","Total","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907058-0718-4-C/results/970066052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:37","STORET",7,NA,2022-07-18 17:49:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8489000000","-111.3011200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",41.8489,-111.30112,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907058-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:49:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907058","Falula Creek at Cisco Rd culvert crossing southeast side",NA,NA,NA,NA,"41.8489000000","-111.3011200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066059",NA,"as N","Nitrogen","Dissolved","0.391","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907058-0718-4-C/results/970066059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:37","STORET",7,NA,2022-07-18 17:49:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8489000000","-111.3011200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.391,"MG/L","Numeric","Not Reviewed","Uncensored",41.8489,-111.30112,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907058-0825-4-C","Sample-Routine","Water",NA,2022-08-25,"09:44:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907058","Falula Creek at Cisco Rd culvert crossing southeast side",NA,NA,NA,NA,"41.8489000000","-111.3011200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066062",NA,"as N","Nitrogen","Total","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907058-0825-4-C/results/970066062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:37","STORET",7,NA,2022-08-25 16:44:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8489000000","-111.3011200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",41.8489,-111.30112,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907058-0825-4-C","Sample-Routine","Water",NA,2022-08-25,"09:44:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907058","Falula Creek at Cisco Rd culvert crossing southeast side",NA,NA,NA,NA,"41.8489000000","-111.3011200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066070",NA,"as N","Nitrogen","Dissolved","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907058-0825-4-C/results/970066070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:37","STORET",7,NA,2022-08-25 16:44:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8489000000","-111.3011200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",41.8489,-111.30112,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907100-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066072",NA,"as N","Nitrogen","Dissolved","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907100-0523-4-C/results/970066072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:38","STORET",7,NA,2022-05-23 18:10:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907100-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066082",NA,"as N","Nitrogen","Total","0.706","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907100-0523-4-C/results/970066082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:38","STORET",7,NA,2022-05-23 18:10:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.706,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907100-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:36:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066086",NA,"as N","Nitrogen","Dissolved","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907100-0616-4-C/results/970066086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:39","STORET",7,NA,2022-06-16 16:36:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907100-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:36:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066093",NA,"as N","Nitrogen","Total","0.672","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907100-0616-4-C/results/970066093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:39","STORET",7,NA,2022-06-16 16:36:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.672,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907100-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066097",NA,"as N","Nitrogen","Total","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907100-0718-4-C/results/970066097/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:39","STORET",7,NA,2022-07-18 18:55:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907100-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066103",NA,"as N","Nitrogen","Dissolved","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907100-0718-4-C/results/970066103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:39","STORET",7,NA,2022-07-18 18:55:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907100-0825-4-C","Sample-Routine","Water",NA,2022-08-25,"10:47:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066115",NA,"as N","Nitrogen","Dissolved","0.418","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907100-0825-4-C/results/970066115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:40","STORET",7,NA,2022-08-25 17:47:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.418,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907100-0825-4-C","Sample-Routine","Water",NA,2022-08-25,"10:47:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066120",NA,"as N","Nitrogen","Total","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907100-0825-4-C/results/970066120/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:40","STORET",7,NA,2022-08-25 17:47:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907100-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:21:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066124",NA,"as N","Nitrogen","Dissolved","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907100-0920-4-C/results/970066124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:41","STORET",7,NA,2022-09-20 18:21:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907100-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:21:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907100","BIG CK AB BEAR LAKE",NA,NA,NA,NA,"41.8391000000","-111.3296400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066131",NA,"as N","Nitrogen","Total","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907100-0920-4-C/results/970066131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:41","STORET",7,NA,2022-09-20 18:21:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.8391000000","-111.3296400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",41.8391,-111.32964,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907180-0523-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-23,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066142",NA,"as N","Nitrogen","Dissolved","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907180-0523-2-C/results/970066142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:42","STORET",7,NA,2022-05-23 19:50:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907180-0523-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-23,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066143",NA,"as N","Nitrogen","Total","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907180-0523-2-C/results/970066143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:42","STORET",7,NA,2022-05-23 19:50:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907180-0523-29-C","Sample-Routine","Water",NA,2022-05-23,"13:15:00","MST",NA,NA,NA,"Bottom","46","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066153",NA,"as N","Nitrogen","Dissolved","0.205","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907180-0523-29-C/results/970066153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:42","STORET",7,NA,2022-05-23 20:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.205,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",46,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907180-0523-29-C","Sample-Routine","Water",NA,2022-05-23,"13:15:00","MST",NA,NA,NA,"Bottom","46","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066157",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907180-0523-29-C/results/970066157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:42","STORET",7,NA,2022-05-23 20:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",46,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-16,"11:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066173",NA,"as N","Nitrogen","Dissolved","0.204","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-2-C/results/970066173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:43","STORET",7,NA,2022-06-16 18:14:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.204,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-16,"11:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066180",NA,"as N","Nitrogen","Total","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-2-C/results/970066180/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:43","STORET",7,NA,2022-06-16 18:14:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-23-C","Sample-Routine","Water",NA,2022-06-16,"11:22:00","MST",NA,NA,NA,"AboveThermoclin","11.172","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066187",NA,"as N","Nitrogen","Dissolved","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-23-C/results/970066187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:44","STORET",7,NA,2022-06-16 18:22:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",11.172,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-23-C","Sample-Routine","Water",NA,2022-06-16,"11:22:00","MST",NA,NA,NA,"AboveThermoclin","11.172","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066188",NA,"as N","Nitrogen","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-23-C/results/970066188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:44","STORET",7,NA,2022-06-16 18:22:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",11.172,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-27-C","Sample-Routine","Water",NA,2022-06-16,"11:35:00","MST",NA,NA,NA,"BelowThermoclin","13.122","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066197",NA,"as N","Nitrogen","Total","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-27-C/results/970066197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:45","STORET",7,NA,2022-06-16 18:35:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13.122,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-27-C","Sample-Routine","Water",NA,2022-06-16,"11:35:00","MST",NA,NA,NA,"BelowThermoclin","13.122","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066198",NA,"as N","Nitrogen","Dissolved","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-27-C/results/970066198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:45","STORET",7,NA,2022-06-16 18:35:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13.122,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-29-C","Sample-Routine","Water",NA,2022-06-16,"11:51:00","MST",NA,NA,NA,"Bottom","46.08","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066207",NA,"as N","Nitrogen","Dissolved","0.289","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-29-C/results/970066207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:45","STORET",7,NA,2022-06-16 18:51:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.289,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",46.08,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907180-0616-29-C","Sample-Routine","Water",NA,2022-06-16,"11:51:00","MST",NA,NA,NA,"Bottom","46.08","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066212",NA,"as N","Nitrogen","Total","0.307","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907180-0616-29-C/results/970066212/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:45","STORET",7,NA,2022-06-16 18:51:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.307,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",46.08,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066231",NA,"as N","Nitrogen","Total","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-2-C/results/970066231/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:46","STORET",7,NA,2022-07-18 18:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066233",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-2-C/results/970066233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:46","STORET",7,NA,2022-07-18 18:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-23-C","Sample-Routine","Water",NA,2022-07-18,"11:25:00","MST",NA,NA,NA,"AboveThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066238",NA,"as N","Nitrogen","Total","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-23-C/results/970066238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:46","STORET",7,NA,2022-07-18 18:25:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-23-C","Sample-Routine","Water",NA,2022-07-18,"11:25:00","MST",NA,NA,NA,"AboveThermoclin","10","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066240",NA,"as N","Nitrogen","Dissolved","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-23-C/results/970066240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:47","STORET",7,NA,2022-07-18 18:25:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-27-C","Sample-Routine","Water",NA,2022-07-18,"11:40:00","MST",NA,NA,NA,"BelowThermoclin","12","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066243",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-27-C/results/970066243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:47","STORET",7,NA,2022-07-18 18:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-27-C","Sample-Routine","Water",NA,2022-07-18,"11:40:00","MST",NA,NA,NA,"BelowThermoclin","12","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066247",NA,"as N","Nitrogen","Total","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-27-C/results/970066247/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:47","STORET",7,NA,2022-07-18 18:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"11:55:00","MST",NA,NA,NA,"Bottom","44","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066248",NA,"as N","Nitrogen","Dissolved","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-29-C/results/970066248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:48","STORET",7,NA,2022-07-18 18:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",44,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907180-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"11:55:00","MST",NA,NA,NA,"Bottom","44","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066254",NA,"as N","Nitrogen","Total","0.418","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907180-0718-29-C/results/970066254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:48","STORET",7,NA,2022-07-18 18:55:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.418,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",44,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-25,"12:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066276",NA,"as N","Nitrogen","Total","0.572","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-2-C/results/970066276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:49","STORET",7,NA,2022-08-25 19:32:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.572,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-25,"12:32:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066281","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-2-C/results/970066281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:49","STORET",7,NA,2022-08-25 19:32:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-23-C","Sample-Routine","Water",NA,2022-08-25,"13:10:00","MST",NA,NA,NA,"AboveThermoclin","12.13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066286",NA,"as N","Nitrogen","Total","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-23-C/results/970066286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:49","STORET",7,NA,2022-08-25 20:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",12.13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-23-C","Sample-Routine","Water",NA,2022-08-25,"13:10:00","MST",NA,NA,NA,"AboveThermoclin","12.13","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066288",NA,"as N","Nitrogen","Dissolved","0.161","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-23-C/results/970066288/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:49","STORET",7,NA,2022-08-25 20:10:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.161,"MG/L","Numeric","Pass","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",12.13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-27-C","Sample-Routine","Water",NA,2022-08-25,"12:56:00","MST",NA,NA,NA,"BelowThermoclin","14.153","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066293","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-27-C/results/970066293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:50","STORET",7,NA,2022-08-25 19:56:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",14.153,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-27-C","Sample-Routine","Water",NA,2022-08-25,"12:56:00","MST",NA,NA,NA,"BelowThermoclin","14.153","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066295",NA,"as N","Nitrogen","Total","0.515","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-27-C/results/970066295/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:50","STORET",7,NA,2022-08-25 19:56:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.515,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",14.153,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-29-C","Sample-Routine","Water",NA,2022-08-25,"12:40:00","MST",NA,NA,NA,"Bottom","46.147","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066301",NA,"as N","Nitrogen","Dissolved","0.156","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-29-C/results/970066301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:50","STORET",7,NA,2022-08-25 19:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.156,"MG/L","Numeric","Pass","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",46.147,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907180-0825-29-C","Sample-Routine","Water",NA,2022-08-25,"12:40:00","MST",NA,NA,NA,"Bottom","46.147","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066308",NA,"as N","Nitrogen","Total","0.179","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907180-0825-29-C/results/970066308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:50","STORET",7,NA,2022-08-25 19:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.179,"MG/L","Numeric","Pass","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",46.147,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"10:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066324",NA,"as N","Nitrogen","Total","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-2-C/results/970066324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:51","STORET",7,NA,2022-09-20 17:14:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"10:14:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066330",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-2-C/results/970066330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:51","STORET",7,NA,2022-09-20 17:14:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-23-C","Sample-Routine","Water",NA,2022-09-20,"10:38:00","MST",NA,NA,NA,"AboveThermoclin","11.141","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066336",NA,"as N","Nitrogen","Total","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-23-C/results/970066336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:52","STORET",7,NA,2022-09-20 17:38:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",11.141,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-23-C","Sample-Routine","Water",NA,2022-09-20,"10:38:00","MST",NA,NA,NA,"AboveThermoclin","11.141","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066339",NA,"as N","Nitrogen","Dissolved","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-23-C/results/970066339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:52","STORET",7,NA,2022-09-20 17:38:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",11.141,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-27-C","Sample-Routine","Water",NA,2022-09-20,"10:45:00","MST",NA,NA,NA,"BelowThermoclin","13.123","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066343",NA,"as N","Nitrogen","Dissolved","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-27-C/results/970066343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:52","STORET",7,NA,2022-09-20 17:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13.123,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-27-C","Sample-Routine","Water",NA,2022-09-20,"10:45:00","MST",NA,NA,NA,"BelowThermoclin","13.123","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066347",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-27-C/results/970066347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:52","STORET",7,NA,2022-09-20 17:45:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13.123,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"10:20:00","MST",NA,NA,NA,"Bottom","45.08","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066355",NA,"as N","Nitrogen","Dissolved","0.172","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-29-C/results/970066355/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:53","STORET",7,NA,2022-09-20 17:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.172,"MG/L","Numeric","Pass","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",45.08,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907180-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"10:20:00","MST",NA,NA,NA,"Bottom","45.08","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907180","BEAR LAKE 1 MI OFF SHORE FROM N EDEN",NA,NA,NA,NA,"41.9838200000","-111.3046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066367",NA,"as N","Nitrogen","Total","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907180-0920-29-C/results/970066367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:53","STORET",7,NA,2022-09-20 17:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9838200000","-111.3046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",41.98382,-111.30465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",45.08,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907200-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:14:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066380",NA,"as N","Nitrogen","Dissolved","0.295","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907200-0523-4-C/results/970066380/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:54","STORET",7,NA,2022-05-23 19:14:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.295,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4907200-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:14:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066384",NA,"as N","Nitrogen","Total","0.336","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4907200-0523-4-C/results/970066384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:54","STORET",7,NA,2022-05-23 19:14:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.336,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907200-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066391",NA,"as N","Nitrogen","Total","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907200-0616-4-C/results/970066391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:54","STORET",7,NA,2022-06-16 17:55:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4907200-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066394",NA,"as N","Nitrogen","Dissolved","0.239","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4907200-0616-4-C/results/970066394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:55","STORET",7,NA,2022-06-16 17:55:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.239,"MG/L","Numeric","Not Reviewed","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907200-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:06:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066406",NA,"as N","Nitrogen","Total","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907200-0718-4-C/results/970066406/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:55","STORET",7,NA,2022-07-18 20:06:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4907200-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:06:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066408",NA,"as N","Nitrogen","Dissolved","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4907200-0718-4-C/results/970066408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:55","STORET",7,NA,2022-07-18 20:06:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907200-0825-4-C","Sample-Routine","Water",NA,2022-08-25,"12:01:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066416",NA,"as N","Nitrogen","Total","0.171","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907200-0825-4-C/results/970066416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:56","STORET",7,NA,2022-08-25 19:01:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.171,"MG/L","Numeric","Pass","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4907200-0825-4-C","Sample-Routine","Water",NA,2022-08-25,"12:01:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066418","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4907200-0825-4-C/results/970066418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:56","STORET",7,NA,2022-08-25 19:01:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907200-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"12:39:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066428",NA,"as N","Nitrogen","Dissolved","0.16","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907200-0920-4-C/results/970066428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:57","STORET",7,NA,2022-09-20 19:39:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.16,"MG/L","Numeric","Pass","Uncensored",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4907200-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"12:39:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4907200","SWAN CK AB BEAR LAKE",NA,NA,NA,NA,"41.9854900000","-111.4118700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066436","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4907200-0920-4-C/results/970066436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:11:57","STORET",7,NA,2022-09-20 19:39:00,NA,"River/Stream",NA,"16010201",NA,NA,NA,NA,"41.9854900000","-111.4118700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.98549,-111.41187,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4910009-0411-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-11,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066692","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4910009-0411-4-C/results/970066692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:11","STORET",7,NA,2022-04-12 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4910009-0411-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-11,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066697","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4910009-0411-4-C/results/970066697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:11","STORET",7,NA,2022-04-12 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4910009-0418-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-18,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066709","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4910009-0418-4-C/results/970066709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:12","STORET",7,NA,2022-04-18 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4910009-0418-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-18,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066731","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4910009-0418-4-C/results/970066731/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:13","STORET",7,NA,2022-04-18 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4910009-0516-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-16,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066757","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0516-4-C/results/970066757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:14","STORET",7,NA,2022-05-17 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4910009-0516-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-16,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066759","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0516-4-C/results/970066759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:14","STORET",7,NA,2022-05-17 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4910009-0517-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-17,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066790","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0517-4-C/results/970066790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:15","STORET",7,NA,2022-05-18 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4910009-0517-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-17,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066796","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0517-4-C/results/970066796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:15","STORET",7,NA,2022-05-18 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4910009-0518-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-18,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066812","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0518-4-C/results/970066812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:16","STORET",7,NA,2022-05-18 19:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4910009-0518-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-18,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066826","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4910009-0518-4-C/results/970066826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:16","STORET",7,NA,2022-05-18 19:15:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4910009-0607-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-07,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066843","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0607-4-C/results/970066843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:16","STORET",7,NA,2022-06-07 20:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4910009-0607-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-07,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066849","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0607-4-C/results/970066849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:17","STORET",7,NA,2022-06-07 20:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4910009-0608-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-08,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066873","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0608-4-C/results/970066873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:17","STORET",7,NA,2022-06-08 21:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4910009-0608-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-08,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066891","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0608-4-C/results/970066891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:18","STORET",7,NA,2022-06-08 21:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4910009-0609-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-09,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066901","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0609-4-C/results/970066901/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:19","STORET",7,NA,2022-06-09 22:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4910009-0609-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-09,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066905",NA,"as N","Nitrogen","Dissolved","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4910009-0609-4-C/results/970066905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:19","STORET",7,NA,2022-06-09 22:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4910009-0718-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-18,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066918","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0718-4-C/results/970066918/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:20","STORET",7,NA,2022-07-19 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4910009-0718-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-18,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066920",NA,"as N","Nitrogen","Dissolved","0.156","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0718-4-C/results/970066920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:20","STORET",7,NA,2022-07-19 00:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.156,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4910009-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066956","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0719-4-C/results/970066956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:21","STORET",7,NA,2022-07-19 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4910009-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-19,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066959","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0719-4-C/results/970066959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:21","STORET",7,NA,2022-07-19 21:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4910009-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-20,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066972","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0720-4-C/results/970066972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:22","STORET",7,NA,2022-07-20 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4910009-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-20,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970066975","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4910009-0720-4-C/results/970066975/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:22","STORET",7,NA,2022-07-20 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4910009-0815-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-15,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067018",NA,"as N","Nitrogen","Dissolved","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0815-4-C/results/970067018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:24","STORET",7,NA,2022-08-15 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4910009-0815-29-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-15,"15:00:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067022","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0815-29-C/results/970067022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:24","STORET",7,NA,2022-08-15 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4910009-0816-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067027","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0816-4-C/results/970067027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:25","STORET",7,NA,2022-08-16 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4910009-0816-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067034","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0816-4-C/results/970067034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:25","STORET",7,NA,2022-08-16 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4910009-0817-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067051","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0817-4-C/results/970067051/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:26","STORET",7,NA,2022-08-17 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4910009-0817-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-17,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067054","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4910009-0817-4-C/results/970067054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:26","STORET",7,NA,2022-08-17 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4910009-0919-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-19,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067065","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0919-4-C/results/970067065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:27","STORET",7,NA,2022-09-19 21:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4910009-0919-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-19,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067073","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0919-4-C/results/970067073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:27","STORET",7,NA,2022-09-19 21:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4910009-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-20,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067108","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0920-4-C/results/970067108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:29","STORET",7,NA,2022-09-20 19:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4910009-0921-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-21,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067113","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0921-4-C/results/970067113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:29","STORET",7,NA,2022-09-21 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4910009-0921-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-21,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4910009","EQUIPMENT BLANK-Utah Lake",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067115","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4910009-0921-4-C/results/970067115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:29","STORET",7,NA,2022-09-21 23:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4915630-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067140",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4915630-0419-4-C/results/970067140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:30","STORET",7,NA,2022-04-19 18:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4915630-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067155",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4915630-0419-4-C/results/970067155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:31","STORET",7,NA,2022-04-19 18:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4915630-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067165",NA,"as N","Nitrogen","Total","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4915630-0517-4-C/results/970067165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:32","STORET",7,NA,2022-05-17 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4915630-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067167",NA,"as N","Nitrogen","Dissolved","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4915630-0517-4-C/results/970067167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:32","STORET",7,NA,2022-05-17 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4915630-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067188",NA,"as N","Nitrogen","Total","0.161","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4915630-0621-4-C/results/970067188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:33","STORET",7,NA,2022-06-21 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.161,"MG/L","Numeric","Pass","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4915630-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067200",NA,"as N","Nitrogen","Dissolved","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4915630-0621-4-C/results/970067200/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:33","STORET",7,NA,2022-06-21 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4915630-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067204",NA,"as N","Nitrogen","Dissolved","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4915630-0719-4-C/results/970067204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:34","STORET",7,NA,2022-07-19 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4915630-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067209",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4915630-0719-4-C/results/970067209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:34","STORET",7,NA,2022-07-19 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4915630-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067224",NA,"as N","Nitrogen","Dissolved","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4915630-0823-4-C/results/970067224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:35","STORET",7,NA,2022-08-23 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4915630-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067248",NA,"as N","Nitrogen","Total","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4915630-0920-4-C/results/970067248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:36","STORET",7,NA,2022-09-20 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4915630-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915630","N FK KAYS CK (HOBS CANYON) AT FOREST BOUNDARY",NA,NA,NA,NA,"41.1065100000","-111.9035500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067260",NA,"as N","Nitrogen","Dissolved","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4915630-0920-4-C/results/970067260/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:36","STORET",7,NA,2022-09-20 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1065100000","-111.9035500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",41.10651,-111.90355,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4915650-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067286",NA,"as N","Nitrogen","Total","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4915650-0517-4-C/results/970067286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:38","STORET",7,NA,2022-05-17 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4915650-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067289",NA,"as N","Nitrogen","Dissolved","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4915650-0517-4-C/results/970067289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:38","STORET",7,NA,2022-05-17 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4915650-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067317",NA,"as N","Nitrogen","Total","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4915650-0621-4-C/results/970067317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:39","STORET",7,NA,2022-06-21 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4915650-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067319",NA,"as N","Nitrogen","Dissolved","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4915650-0621-4-C/results/970067319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:39","STORET",7,NA,2022-06-21 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4915650-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067340",NA,"as N","Nitrogen","Dissolved","0.336","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4915650-0719-4-C/results/970067340/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:40","STORET",7,NA,2022-07-19 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.336,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4915650-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067347",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4915650-0719-4-C/results/970067347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:41","STORET",7,NA,2022-07-19 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4915650-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067352",NA,"as N","Nitrogen","Dissolved","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4915650-0823-4-C/results/970067352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:41","STORET",7,NA,2022-08-23 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4915650-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067379",NA,"as N","Nitrogen","Dissolved","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4915650-0920-4-C/results/970067379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:42","STORET",7,NA,2022-09-20 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4915650-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4915650","SO FK KAYS CK AB FERNWOOD CMP",NA,NA,NA,NA,"41.0860100000","-111.9003200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067382",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4915650-0920-4-C/results/970067382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:42","STORET",7,NA,2022-09-20 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0860100000","-111.9003200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",41.08601,-111.90032,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4917190-0523-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-23,"10:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067394",NA,"as N","Nitrogen","Total","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4917190-0523-2-C/results/970067394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:43","STORET",7,NA,2022-05-23 17:48:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4917190-0523-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-23,"10:48:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067395",NA,"as N","Nitrogen","Dissolved","0.295","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4917190-0523-2-C/results/970067395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:43","STORET",7,NA,2022-05-23 17:48:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.295,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4917190-0523-29-C","Sample-Routine","Water",NA,2022-05-23,"11:15:00","MST",NA,NA,NA,"Bottom","30.064","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067406",NA,"as N","Nitrogen","Dissolved","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4917190-0523-29-C/results/970067406/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:44","STORET",7,NA,2022-05-23 18:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",30.064,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220523-4917190-0523-29-C","Sample-Routine","Water",NA,2022-05-23,"11:15:00","MST",NA,NA,NA,"Bottom","30.064","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067407",NA,"as N","Nitrogen","Total","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220523-4917190-0523-29-C/results/970067407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:44","STORET",7,NA,2022-05-23 18:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",30.064,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-16,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067413",NA,"as N","Nitrogen","Total","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-2-C/results/970067413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:45","STORET",7,NA,2022-06-16 16:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-16,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067425",NA,"as N","Nitrogen","Dissolved","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-2-C/results/970067425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:45","STORET",7,NA,2022-06-16 16:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-PZ-C","Sample-Composite Without Parents","Water",NA,2022-06-16,"09:20:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Licor 1% photic zone sample collected at depths 1, 6, 12, 17, 22 and 27 m",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067428",NA,"as N","Nitrogen","Dissolved","0.221","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-PZ-C/results/970067428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:46","STORET",7,NA,2022-06-16 16:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.221,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-PZ-C","Sample-Composite Without Parents","Water",NA,2022-06-16,"09:20:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Licor 1% photic zone sample collected at depths 1, 6, 12, 17, 22 and 27 m",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067434",NA,"as N","Nitrogen","Total","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-PZ-C/results/970067434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:46","STORET",7,NA,2022-06-16 16:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-29-C","Sample-Routine","Water",NA,2022-06-16,"09:40:00","MST",NA,NA,NA,"Bottom","32.009","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067440",NA,"as N","Nitrogen","Dissolved","0.173","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-29-C/results/970067440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:47","STORET",7,NA,2022-06-16 16:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.173,"MG/L","Numeric","Pass","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",32.009,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220615-4917190-0616-29-C","Sample-Routine","Water",NA,2022-06-16,"09:40:00","MST",NA,NA,NA,"Bottom","32.009","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067444",NA,"as N","Nitrogen","Total","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220615-4917190-0616-29-C/results/970067444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:47","STORET",7,NA,2022-06-16 16:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",32.009,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4917190-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"12:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067451",NA,"as N","Nitrogen","Dissolved","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4917190-0718-2-C/results/970067451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:47","STORET",7,NA,2022-07-18 19:22:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4917190-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"12:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067454",NA,"as N","Nitrogen","Total","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4917190-0718-2-C/results/970067454/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:47","STORET",7,NA,2022-07-18 19:22:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4917190-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"12:15:00","MST",NA,NA,NA,"Bottom","30.191","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067462",NA,"as N","Nitrogen","Dissolved","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4917190-0718-29-C/results/970067462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:48","STORET",7,NA,2022-07-18 19:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",30.191,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220718-4917190-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"12:15:00","MST",NA,NA,NA,"Bottom","30.191","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067463",NA,"as N","Nitrogen","Total","0.241","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220718-4917190-0718-29-C/results/970067463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:48","STORET",7,NA,2022-07-18 19:15:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.241,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",30.191,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-25,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067468","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-2-C/results/970067468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:49","STORET",7,NA,2022-08-25 18:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-25,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067476",NA,"as N","Nitrogen","Total","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-2-C/results/970067476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:49","STORET",7,NA,2022-08-25 18:30:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-PZ-C","Sample-Composite Without Parents","Water",NA,2022-08-25,"12:00:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Licor 1% photic zone sample collected at depths 1.5, 7, 13, 18, 23 and 28 m; sample taken at 12:00.",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067489",NA,"as N","Nitrogen","Total","0.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-PZ-C/results/970067489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:50","STORET",7,NA,2022-08-25 19:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-PZ-C","Sample-Composite Without Parents","Water",NA,2022-08-25,"12:00:00","MST",NA,NA,NA,"Photic zone",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point","Licor 1% photic zone sample collected at depths 1.5, 7, 13, 18, 23 and 28 m; sample taken at 12:00.",NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067490",NA,"as N","Nitrogen","Dissolved","0.156","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-PZ-C/results/970067490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:50","STORET",7,NA,2022-08-25 19:00:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.156,"MG/L","Numeric","Pass","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-29-C","Sample-Routine","Water",NA,2022-08-25,"11:40:00","MST",NA,NA,NA,"Bottom","32.042","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067495",NA,"as N","Nitrogen","Total","0.151","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-29-C/results/970067495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:50","STORET",7,NA,2022-08-25 18:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.151,"MG/L","Numeric","Pass","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",32.042,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220824-4917190-0825-29-C","Sample-Routine","Water",NA,2022-08-25,"11:40:00","MST",NA,NA,NA,"Bottom","32.042","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067496",NA,"as N","Nitrogen","Dissolved","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220824-4917190-0825-29-C/results/970067496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:50","STORET",7,NA,2022-08-25 18:40:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",32.042,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4917190-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067501",NA,"as N","Nitrogen","Total","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4917190-0920-2-C/results/970067501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:51","STORET",7,NA,2022-09-20 18:12:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4917190-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"11:12:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067504",NA,"as N","Nitrogen","Dissolved","0.179","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4917190-0920-2-C/results/970067504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:51","STORET",7,NA,2022-09-20 18:12:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.179,"MG/L","Numeric","Pass","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4917190-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"11:20:00","MST",NA,NA,NA,"Bottom","34.017","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067514",NA,"as N","Nitrogen","Total","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4917190-0920-29-C/results/970067514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:52","STORET",7,NA,2022-09-20 18:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",34.017,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-IDEQBL220920-4917190-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"11:20:00","MST",NA,NA,NA,"Bottom","34.017","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Other","UTAHDWQ_WQX-4917190","Bear Lake USGS Platform 1.6 miles East of Gus Rich Point",NA,NA,NA,NA,"41.9030800000","-111.3378100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067518",NA,"as N","Nitrogen","Dissolved","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-IDEQBL220920-4917190-0920-29-C/results/970067518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:52","STORET",7,NA,2022-09-20 18:20:00,NA,"Lake",NA,"16010201",NA,NA,NA,NA,"41.9030800000","-111.3378100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",33,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",41.90308,-111.33781,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",34.017,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917305-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067530",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917305-0418-2-C/results/970067530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:53","STORET",7,NA,2022-04-18 17:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917305-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067536",NA,"as N","Nitrogen","Total","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917305-0418-2-C/results/970067536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:53","STORET",7,NA,2022-04-18 17:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917305-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067546",NA,"as N","Nitrogen","Dissolved","0.707","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917305-0516-2-C/results/970067546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:53","STORET",7,NA,2022-05-16 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.707,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917305-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067557",NA,"as N","Nitrogen","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917305-0516-2-C/results/970067557/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:54","STORET",7,NA,2022-05-16 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917305-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"09:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067559",NA,"as N","Nitrogen","Total","0.867","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917305-0608-2-C/results/970067559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:54","STORET",7,NA,2022-06-08 16:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.867,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917305-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067582",NA,"as N","Nitrogen","Dissolved","0.947","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917305-0718-2-C/results/970067582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:55","STORET",7,NA,2022-07-18 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.947,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917305-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067587",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917305-0718-2-C/results/970067587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:56","STORET",7,NA,2022-07-18 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917305-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067605",NA,"as N","Nitrogen","Dissolved","0.915","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917305-0815-2-C/results/970067605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:57","STORET",7,NA,2022-08-15 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.915,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917305-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067607",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917305-0815-2-C/results/970067607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:57","STORET",7,NA,2022-08-15 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917305-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067622",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917305-0919-2-C/results/970067622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:58","STORET",7,NA,2022-09-19 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917305-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917305","Utah Lake at American Fork Marina near boat ramp",NA,NA,NA,NA,"40.3423800000","-111.8008400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067633",NA,"as N","Nitrogen","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917305-0919-2-C/results/970067633/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:58","STORET",7,NA,2022-09-19 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3423800000","-111.8008400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.34238,-111.80084,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917310-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067639",NA,"as N","Nitrogen","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917310-0418-2-C/results/970067639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:59","STORET",7,NA,2022-04-18 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917310-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067647",NA,"as N","Nitrogen","Dissolved","0.873","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917310-0418-2-C/results/970067647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:59","STORET",7,NA,2022-04-18 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.873,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917310-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"11:05:00","MST",NA,NA,NA,"Bottom","1.792","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067653",NA,"as N","Nitrogen","Total","0.944","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917310-0418-29-C/results/970067653/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:59","STORET",7,NA,2022-04-18 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.944,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.792,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917310-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"11:05:00","MST",NA,NA,NA,"Bottom","1.792","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067670",NA,"as N","Nitrogen","Dissolved","0.892","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917310-0418-29-C/results/970067670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:12:59","STORET",7,NA,2022-04-18 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.892,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.792,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917310-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067704",NA,"as N","Nitrogen","Total","0.848","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917310-0516-2-C/results/970067704/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:00","STORET",7,NA,2022-05-16 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.848,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917310-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067705",NA,"as N","Nitrogen","Dissolved","0.591","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917310-0516-2-C/results/970067705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:00","STORET",7,NA,2022-05-16 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.591,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917310-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"11:10:00","MST",NA,NA,NA,"Bottom","1.794","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067727",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917310-0516-29-C/results/970067727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:01","STORET",7,NA,2022-05-16 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.794,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917310-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"11:10:00","MST",NA,NA,NA,"Bottom","1.794","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067728",NA,"as N","Nitrogen","Total","0.781","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917310-0516-29-C/results/970067728/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:01","STORET",7,NA,2022-05-16 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.781,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.794,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917310-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067745",NA,"as N","Nitrogen","Total","0.719","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917310-0608-2-C/results/970067745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:02","STORET",7,NA,2022-06-08 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.719,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917310-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067758",NA,"as N","Nitrogen","Dissolved","0.627","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917310-0608-2-C/results/970067758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:02","STORET",7,NA,2022-06-08 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.627,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917310-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"10:15:00","MST",NA,NA,NA,"Bottom","1.375","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067772",NA,"as N","Nitrogen","Total","0.821","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917310-0608-29-C/results/970067772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:03","STORET",7,NA,2022-06-08 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.821,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.375,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917310-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"10:15:00","MST",NA,NA,NA,"Bottom","1.375","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067778",NA,"as N","Nitrogen","Dissolved","0.583","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917310-0608-29-C/results/970067778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:03","STORET",7,NA,2022-06-08 17:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.583,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.375,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917310-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067812",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917310-0718-2-C/results/970067812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:04","STORET",7,NA,2022-07-18 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917310-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067815",NA,"as N","Nitrogen","Dissolved","0.991","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917310-0718-2-C/results/970067815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:04","STORET",7,NA,2022-07-18 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.991,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917310-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"10:40:00","MST",NA,NA,NA,"Bottom","1.225","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067821",NA,"as N","Nitrogen","Dissolved","0.954","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917310-0718-29-C/results/970067821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:04","STORET",7,NA,2022-07-18 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.954,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.225,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917310-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"10:40:00","MST",NA,NA,NA,"Bottom","1.225","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067853",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917310-0718-29-C/results/970067853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:05","STORET",7,NA,2022-07-18 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.225,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917310-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067863",NA,"as N","Nitrogen","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917310-0815-2-C/results/970067863/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:05","STORET",7,NA,2022-08-15 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917310-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067867",NA,"as N","Nitrogen","Dissolved","1.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917310-0815-2-C/results/970067867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:05","STORET",7,NA,2022-08-15 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.73,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917310-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067874",NA,"as N","Nitrogen","Dissolved","0.917","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917310-0919-2-C/results/970067874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:06","STORET",7,NA,2022-09-19 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.917,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917310-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917310","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067886",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917310-0919-2-C/results/970067886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:06","STORET",7,NA,2022-09-19 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917320-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067895",NA,"as N","Nitrogen","Total","0.909","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917320-0418-2-C/results/970067895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:07","STORET",7,NA,2022-04-18 18:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.909,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917320-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067903",NA,"as N","Nitrogen","Dissolved","0.912","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917320-0418-2-C/results/970067903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:07","STORET",7,NA,2022-04-18 18:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.912,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917320-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"11:15:00","MST",NA,NA,NA,"Bottom","1.677","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067911",NA,"as N","Nitrogen","Dissolved","0.916","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917320-0418-29-C/results/970067911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:07","STORET",7,NA,2022-04-18 18:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.916,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.677,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917320-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"11:15:00","MST",NA,NA,NA,"Bottom","1.677","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067935",NA,"as N","Nitrogen","Total","0.963","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917320-0418-29-C/results/970067935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:08","STORET",7,NA,2022-04-18 18:15:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.963,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.677,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917320-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067947",NA,"as N","Nitrogen","Dissolved","0.705","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917320-0516-2-C/results/970067947/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:08","STORET",7,NA,2022-05-16 18:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.705,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917320-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067953",NA,"as N","Nitrogen","Total","0.841","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917320-0516-2-C/results/970067953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:08","STORET",7,NA,2022-05-16 18:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.841,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917320-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"11:20:00","MST",NA,NA,NA,"Bottom","1.65","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067968",NA,"as N","Nitrogen","Total","0.777","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917320-0516-29-C/results/970067968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:09","STORET",7,NA,2022-05-16 18:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.777,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.65,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917320-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"11:20:00","MST",NA,NA,NA,"Bottom","1.65","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970067992",NA,"as N","Nitrogen","Dissolved","0.579","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917320-0516-29-C/results/970067992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:09","STORET",7,NA,2022-05-16 18:20:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.579,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.65,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917320-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068010",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917320-0608-2-C/results/970068010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:10","STORET",7,NA,2022-06-08 17:05:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917320-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068011",NA,"as N","Nitrogen","Total","0.944","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917320-0608-2-C/results/970068011/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:10","STORET",7,NA,2022-06-08 17:05:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.944,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917320-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"10:10:00","MST",NA,NA,NA,"Bottom","1.369","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068034",NA,"as N","Nitrogen","Total","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917320-0608-29-C/results/970068034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:11","STORET",7,NA,2022-06-08 17:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.369,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917320-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"10:10:00","MST",NA,NA,NA,"Bottom","1.369","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068037",NA,"as N","Nitrogen","Dissolved","0.782","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917320-0608-29-C/results/970068037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:11","STORET",7,NA,2022-06-08 17:10:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.782,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.369,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917320-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068056",NA,"as N","Nitrogen","Dissolved","0.887","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917320-0718-2-C/results/970068056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:12","STORET",7,NA,2022-07-18 17:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.887,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917320-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068061",NA,"as N","Nitrogen","Total","0.936","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917320-0718-2-C/results/970068061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:12","STORET",7,NA,2022-07-18 17:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.936,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917320-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"10:45:00","MST",NA,NA,NA,"Bottom","1.208","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068076",NA,"as N","Nitrogen","Dissolved","0.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917320-0718-29-C/results/970068076/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:13","STORET",7,NA,2022-07-18 17:45:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.208,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917320-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"10:45:00","MST",NA,NA,NA,"Bottom","1.208","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068096",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917320-0718-29-C/results/970068096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:13","STORET",7,NA,2022-07-18 17:45:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.208,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917320-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068117",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917320-0815-2-C/results/970068117/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:14","STORET",7,NA,2022-08-15 17:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917320-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068123",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917320-0815-2-C/results/970068123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:14","STORET",7,NA,2022-08-15 17:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917320-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068136",NA,"as N","Nitrogen","Dissolved","0.894","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917320-0919-2-C/results/970068136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:14","STORET",7,NA,2022-09-19 20:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.894,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917320-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917320","UTAH LAKE 0.5 MI W OF GENEVA DISCHARGE #15-A Replicate of 4917310",NA,NA,NA,NA,"40.3208700000","-111.7775400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068143",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917320-0919-2-C/results/970068143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:14","STORET",7,NA,2022-09-19 20:30:00,NA,"Lake","Replicate of 4917310","16020201",NA,NA,NA,NA,"40.3208700000","-111.7775400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.32087,-111.77754,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917335-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068152",NA,"as N","Nitrogen","Dissolved","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917335-0418-2-C/results/970068152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:15","STORET",7,NA,2022-04-18 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917335-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068159",NA,"as N","Nitrogen","Total","1.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917335-0418-2-C/results/970068159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:15","STORET",7,NA,2022-04-18 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917335-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068172",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917335-0516-2-C/results/970068172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:16","STORET",7,NA,2022-05-16 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917335-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068177",NA,"as N","Nitrogen","Total","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917335-0516-2-C/results/970068177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:16","STORET",7,NA,2022-05-16 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917335-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068203",NA,"as N","Nitrogen","Total","2.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917335-0608-2-C/results/970068203/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:16","STORET",7,NA,2022-06-08 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917335-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068205",NA,"as N","Nitrogen","Dissolved","0.721","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917335-0608-2-C/results/970068205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:16","STORET",7,NA,2022-06-08 16:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.721,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917335-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068213",NA,"as N","Nitrogen","Dissolved","0.944","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917335-0718-2-C/results/970068213/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:17","STORET",7,NA,2022-07-18 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.944,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917335-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917335","Utah Lake at Lindon Marina Beach NE of launch ramps",NA,NA,NA,NA,"40.3270800000","-111.7642900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068214",NA,"as N","Nitrogen","Total","1.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917335-0718-2-C/results/970068214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:17","STORET",7,NA,2022-07-18 17:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3270800000","-111.7642900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.32708,-111.76429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917365-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068232",NA,"as N","Nitrogen","Total","0.825","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917365-0418-2-C/results/970068232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:17","STORET",7,NA,2022-04-18 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.825,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917365-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068237",NA,"as N","Nitrogen","Dissolved","0.725","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917365-0418-2-C/results/970068237/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:18","STORET",7,NA,2022-04-18 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.725,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917365-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"11:35:00","MST",NA,NA,NA,"Bottom","2.409","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068245",NA,"as N","Nitrogen","Dissolved","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917365-0418-29-C/results/970068245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:18","STORET",7,NA,2022-04-18 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.409,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917365-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"11:35:00","MST",NA,NA,NA,"Bottom","2.409","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068267",NA,"as N","Nitrogen","Total","0.879","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917365-0418-29-C/results/970068267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:18","STORET",7,NA,2022-04-18 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.879,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.409,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917365-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068296",NA,"as N","Nitrogen","Dissolved","0.652","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917365-0516-2-C/results/970068296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:19","STORET",7,NA,2022-05-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.652,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917365-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068297",NA,"as N","Nitrogen","Total","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917365-0516-2-C/results/970068297/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:19","STORET",7,NA,2022-05-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917365-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"11:40:00","MST",NA,NA,NA,"Bottom","2.432","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068305",NA,"as N","Nitrogen","Dissolved","0.715","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917365-0516-29-C/results/970068305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:20","STORET",7,NA,2022-05-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.715,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.432,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917365-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"11:40:00","MST",NA,NA,NA,"Bottom","2.432","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068316",NA,"as N","Nitrogen","Total","0.738","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917365-0516-29-C/results/970068316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:20","STORET",7,NA,2022-05-16 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.738,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.432,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917365-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068345",NA,"as N","Nitrogen","Total","0.832","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917365-0608-2-C/results/970068345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:21","STORET",7,NA,2022-06-08 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.832,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917365-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068353",NA,"as N","Nitrogen","Dissolved","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917365-0608-2-C/results/970068353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:21","STORET",7,NA,2022-06-08 17:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917365-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"10:40:00","MST",NA,NA,NA,"Bottom","2.15","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068386",NA,"as N","Nitrogen","Total","0.866","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917365-0608-29-C/results/970068386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:22","STORET",7,NA,2022-06-08 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.866,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917365-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"10:40:00","MST",NA,NA,NA,"Bottom","2.15","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068387",NA,"as N","Nitrogen","Dissolved","0.691","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917365-0608-29-C/results/970068387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:22","STORET",7,NA,2022-06-08 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.691,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917365-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068406",NA,"as N","Nitrogen","Dissolved","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917365-0718-2-C/results/970068406/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:23","STORET",7,NA,2022-07-18 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917365-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068408",NA,"as N","Nitrogen","Total","2.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917365-0718-2-C/results/970068408/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:23","STORET",7,NA,2022-07-18 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917365-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"11:10:00","MST",NA,NA,NA,"Bottom","1.82","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068416",NA,"as N","Nitrogen","Dissolved","0.674","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917365-0718-29-C/results/970068416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:23","STORET",7,NA,2022-07-18 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.674,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.82,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917365-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"11:10:00","MST",NA,NA,NA,"Bottom","1.82","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068440",NA,"as N","Nitrogen","Total","0.807","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917365-0718-29-C/results/970068440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:24","STORET",7,NA,2022-07-18 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.807,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.82,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917365-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068448",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917365-0815-2-C/results/970068448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:24","STORET",7,NA,2022-08-15 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917365-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068458",NA,"as N","Nitrogen","Total","0.916","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917365-0815-2-C/results/970068458/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:25","STORET",7,NA,2022-08-15 17:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.916,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917365-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"10:45:00","MST",NA,NA,NA,"Bottom","1.646","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068468",NA,"as N","Nitrogen","Total","0.936","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917365-0815-29-C/results/970068468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:26","STORET",7,NA,2022-08-15 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.936,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.646,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917365-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"10:45:00","MST",NA,NA,NA,"Bottom","1.646","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068500",NA,"as N","Nitrogen","Dissolved","0.965","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917365-0815-29-C/results/970068500/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:26","STORET",7,NA,2022-08-15 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.965,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.646,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917365-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068507",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917365-0919-2-C/results/970068507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:27","STORET",7,NA,2022-09-19 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917365-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068516",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917365-0919-2-C/results/970068516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:27","STORET",7,NA,2022-09-19 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917365-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"13:50:00","MST",NA,NA,NA,"Bottom","1.846","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068530",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917365-0919-29-C/results/970068530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:28","STORET",7,NA,2022-09-19 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.846,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917365-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"13:50:00","MST",NA,NA,NA,"Bottom","1.846","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917365","Utah Lake 2 miles west of Vineyard",NA,NA,NA,NA,"40.2956900000","-111.8028200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068555",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917365-0919-29-C/results/970068555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:28","STORET",7,NA,2022-09-19 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2956900000","-111.8028200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.29569,-111.80282,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.846,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917370-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068557",NA,"as N","Nitrogen","Dissolved","0.717","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917370-0418-2-C/results/970068557/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:28","STORET",7,NA,2022-04-18 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.717,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917370-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068566",NA,"as N","Nitrogen","Total","0.816","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917370-0418-2-C/results/970068566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:29","STORET",7,NA,2022-04-18 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.816,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917370-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"13:55:00","MST",NA,NA,NA,"Bottom","2.421","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068586",NA,"as N","Nitrogen","Total","0.718","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917370-0418-29-C/results/970068586/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:30","STORET",7,NA,2022-04-18 20:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.718,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.421,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917370-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"13:55:00","MST",NA,NA,NA,"Bottom","2.421","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068606",NA,"as N","Nitrogen","Dissolved","0.721","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917370-0418-29-C/results/970068606/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:30","STORET",7,NA,2022-04-18 20:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.721,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.421,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917370-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068625",NA,"as N","Nitrogen","Dissolved","0.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917370-0516-2-C/results/970068625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:31","STORET",7,NA,2022-05-16 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917370-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068626",NA,"as N","Nitrogen","Total","0.755","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917370-0516-2-C/results/970068626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:31","STORET",7,NA,2022-05-16 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.755,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917370-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"14:20:00","MST",NA,NA,NA,"Bottom","2.478","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068631",NA,"as N","Nitrogen","Total","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917370-0516-29-C/results/970068631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:32","STORET",7,NA,2022-05-16 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.478,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917370-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"14:20:00","MST",NA,NA,NA,"Bottom","2.478","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068661",NA,"as N","Nitrogen","Dissolved","0.694","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917370-0516-29-C/results/970068661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:32","STORET",7,NA,2022-05-16 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.694,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.478,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917370-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068681",NA,"as N","Nitrogen","Dissolved","0.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917370-0608-2-C/results/970068681/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:33","STORET",7,NA,2022-06-08 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917370-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068683",NA,"as N","Nitrogen","Total","0.874","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917370-0608-2-C/results/970068683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:33","STORET",7,NA,2022-06-08 19:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.874,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917370-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"12:55:00","MST",NA,NA,NA,"Bottom","1.952","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068692",NA,"as N","Nitrogen","Dissolved","0.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917370-0608-29-C/results/970068692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:34","STORET",7,NA,2022-06-08 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.952,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917370-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"12:55:00","MST",NA,NA,NA,"Bottom","1.952","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068696",NA,"as N","Nitrogen","Total","0.831","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917370-0608-29-C/results/970068696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:34","STORET",7,NA,2022-06-08 19:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.831,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.952,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917370-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068726",NA,"as N","Nitrogen","Total","0.803","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917370-0718-2-C/results/970068726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:35","STORET",7,NA,2022-07-18 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.803,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917370-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068733",NA,"as N","Nitrogen","Dissolved","0.906","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917370-0718-2-C/results/970068733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:35","STORET",7,NA,2022-07-18 21:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.906,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917370-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"14:20:00","MST",NA,NA,NA,"Bottom","1.625","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068744",NA,"as N","Nitrogen","Dissolved","0.736","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917370-0718-29-C/results/970068744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:36","STORET",7,NA,2022-07-18 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.736,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.625,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917370-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"14:20:00","MST",NA,NA,NA,"Bottom","1.625","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068765",NA,"as N","Nitrogen","Total","0.661","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917370-0718-29-C/results/970068765/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:36","STORET",7,NA,2022-07-18 21:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.661,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.625,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917370-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068782",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917370-0815-2-C/results/970068782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:37","STORET",7,NA,2022-08-15 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917370-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068792",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917370-0815-2-C/results/970068792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:37","STORET",7,NA,2022-08-15 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917370-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"13:00:00","MST",NA,NA,NA,"Bottom","1.466","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068815",NA,"as N","Nitrogen","Dissolved","0.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917370-0815-29-C/results/970068815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:38","STORET",7,NA,2022-08-15 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.466,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917370-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"13:00:00","MST",NA,NA,NA,"Bottom","1.466","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068826",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917370-0815-29-C/results/970068826/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:38","STORET",7,NA,2022-08-15 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.466,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917370-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068836",NA,"as N","Nitrogen","Dissolved","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917370-0919-2-C/results/970068836/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:39","STORET",7,NA,2022-09-19 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917370-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068842",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917370-0919-2-C/results/970068842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:39","STORET",7,NA,2022-09-19 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917370-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"12:40:00","MST",NA,NA,NA,"Bottom","1.406","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068866",NA,"as N","Nitrogen","Dissolved","0.957","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917370-0919-29-C/results/970068866/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:39","STORET",7,NA,2022-09-19 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.957,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.406,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917370-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"12:40:00","MST",NA,NA,NA,"Bottom","1.406","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917370","UTAH LAKE 1 MI EAST OF PELICAN POINT",NA,NA,NA,NA,"40.2682800000","-111.8299300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068869",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917370-0919-29-C/results/970068869/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:39","STORET",7,NA,2022-09-19 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2682800000","-111.8299300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.26828,-111.82993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.406,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917390-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068894",NA,"as N","Nitrogen","Total","0.778","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917390-0418-2-C/results/970068894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:40","STORET",7,NA,2022-04-18 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.778,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917390-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068903",NA,"as N","Nitrogen","Dissolved","0.758","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917390-0418-2-C/results/970068903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:40","STORET",7,NA,2022-04-18 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.758,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917390-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"12:15:00","MST",NA,NA,NA,"Bottom","2.984","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068921",NA,"as N","Nitrogen","Total","0.743","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917390-0418-29-C/results/970068921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:41","STORET",7,NA,2022-04-18 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.743,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.984,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917390-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"12:15:00","MST",NA,NA,NA,"Bottom","2.984","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068926",NA,"as N","Nitrogen","Dissolved","0.777","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917390-0418-29-C/results/970068926/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:41","STORET",7,NA,2022-04-18 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.777,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.984,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917390-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068946",NA,"as N","Nitrogen","Total","0.796","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917390-0516-2-C/results/970068946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:42","STORET",7,NA,2022-05-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.796,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917390-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068955",NA,"as N","Nitrogen","Dissolved","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917390-0516-2-C/results/970068955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:42","STORET",7,NA,2022-05-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917390-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"12:30:00","MST",NA,NA,NA,"Bottom","2.744","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068972",NA,"as N","Nitrogen","Dissolved","0.579","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917390-0516-29-C/results/970068972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:43","STORET",7,NA,2022-05-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.579,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.744,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917390-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"12:30:00","MST",NA,NA,NA,"Bottom","2.744","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068981",NA,"as N","Nitrogen","Total","0.707","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917390-0516-29-C/results/970068981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:43","STORET",7,NA,2022-05-16 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.707,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.744,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917390-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970068997",NA,"as N","Nitrogen","Total","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917390-0608-2-C/results/970068997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:44","STORET",7,NA,2022-06-08 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917390-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069009",NA,"as N","Nitrogen","Dissolved","0.795","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917390-0608-2-C/results/970069009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:44","STORET",7,NA,2022-06-08 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.795,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917390-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"11:05:00","MST",NA,NA,NA,"Bottom","2.395","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069022",NA,"as N","Nitrogen","Dissolved","0.735","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917390-0608-29-C/results/970069022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:45","STORET",7,NA,2022-06-08 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.735,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.395,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917390-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"11:05:00","MST",NA,NA,NA,"Bottom","2.395","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069050",NA,"as N","Nitrogen","Total","0.817","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917390-0608-29-C/results/970069050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:46","STORET",7,NA,2022-06-08 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.817,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.395,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917390-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069054",NA,"as N","Nitrogen","Total","2.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917390-0718-2-C/results/970069054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:46","STORET",7,NA,2022-07-18 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917390-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069058",NA,"as N","Nitrogen","Dissolved","0.623","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917390-0718-2-C/results/970069058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:46","STORET",7,NA,2022-07-18 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.623,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917390-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"12:10:00","MST",NA,NA,NA,"Bottom","2.137","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069085",NA,"as N","Nitrogen","Total","0.855","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917390-0718-29-C/results/970069085/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:47","STORET",7,NA,2022-07-18 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.855,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.137,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917390-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"12:10:00","MST",NA,NA,NA,"Bottom","2.137","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069099",NA,"as N","Nitrogen","Dissolved","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917390-0718-29-C/results/970069099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:47","STORET",7,NA,2022-07-18 19:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.137,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917390-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069107",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917390-0815-2-C/results/970069107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:48","STORET",7,NA,2022-08-15 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917390-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069123",NA,"as N","Nitrogen","Total","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917390-0815-2-C/results/970069123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:48","STORET",7,NA,2022-08-15 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917390-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"11:35:00","MST",NA,NA,NA,"Bottom","1.958","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069135",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917390-0815-29-C/results/970069135/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:49","STORET",7,NA,2022-08-15 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.958,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917390-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"11:35:00","MST",NA,NA,NA,"Bottom","1.958","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069151",NA,"as N","Nitrogen","Dissolved","0.854","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917390-0815-29-C/results/970069151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:49","STORET",7,NA,2022-08-15 18:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.854,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.958,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917390-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069161",NA,"as N","Nitrogen","Total","0.935","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917390-0919-2-C/results/970069161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:50","STORET",7,NA,2022-09-19 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.935,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917390-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069170",NA,"as N","Nitrogen","Dissolved","0.759","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917390-0919-2-C/results/970069170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:50","STORET",7,NA,2022-09-19 18:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.759,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917390-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"11:15:00","MST",NA,NA,NA,"Bottom","1.711","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069201",NA,"as N","Nitrogen","Dissolved","0.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917390-0919-29-C/results/970069201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:51","STORET",7,NA,2022-09-19 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.77,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.711,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917390-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"11:15:00","MST",NA,NA,NA,"Bottom","1.711","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917390","UTAH LAKE 1 MI WEST OF PROVO BOAT HARBOR",NA,NA,NA,NA,"40.2371700000","-111.7646500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069214",NA,"as N","Nitrogen","Total","0.882","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917390-0919-29-C/results/970069214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:51","STORET",7,NA,2022-09-19 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2371700000","-111.7646500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.882,"MG/L","Numeric","Not Reviewed","Uncensored",40.23717,-111.76465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.711,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917414-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069218",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917414-0418-2-C/results/970069218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:52","STORET",7,NA,2022-04-18 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917414-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069232",NA,"as N","Nitrogen","Total","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917414-0418-2-C/results/970069232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:52","STORET",7,NA,2022-04-18 21:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917414-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069239",NA,"as N","Nitrogen","Dissolved","0.654","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917414-0516-2-C/results/970069239/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:53","STORET",7,NA,2022-05-16 21:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.654,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917414-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069245",NA,"as N","Nitrogen","Total","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917414-0516-2-C/results/970069245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:53","STORET",7,NA,2022-05-16 21:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917414-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069263",NA,"as N","Nitrogen","Dissolved","0.849","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917414-0608-2-C/results/970069263/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:54","STORET",7,NA,2022-06-08 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.849,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917414-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069267",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917414-0608-2-C/results/970069267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:54","STORET",7,NA,2022-06-08 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917414-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069276",NA,"as N","Nitrogen","Total","0.93","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917414-0718-2-C/results/970069276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:54","STORET",7,NA,2022-07-18 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.93,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917414-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069291",NA,"as N","Nitrogen","Dissolved","0.772","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917414-0718-2-C/results/970069291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:55","STORET",7,NA,2022-07-18 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.772,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917414-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069296",NA,"as N","Nitrogen","Dissolved","0.971","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917414-0815-2-C/results/970069296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:55","STORET",7,NA,2022-08-15 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.971,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917414-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917414","Utah Lake Saratoga Springs Marina Boat Ramp",NA,NA,NA,NA,"40.2898700000","-111.8699600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069305",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917414-0815-2-C/results/970069305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:55","STORET",7,NA,2022-08-15 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2898700000","-111.8699600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.28987,-111.86996,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917433-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069328",NA,"as N","Nitrogen","Dissolved","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917433-0418-2-C/results/970069328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:56","STORET",7,NA,2022-04-18 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917433-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069331",NA,"as N","Nitrogen","Total","0.914","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917433-0418-2-C/results/970069331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:56","STORET",7,NA,2022-04-18 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.914,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917433-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069341",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917433-0516-2-C/results/970069341/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:57","STORET",7,NA,2022-05-16 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917433-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069342",NA,"as N","Nitrogen","Dissolved","0.601","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917433-0516-2-C/results/970069342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:57","STORET",7,NA,2022-05-16 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.601,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917433-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069362",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917433-0608-2-C/results/970069362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:57","STORET",7,NA,2022-06-08 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917433-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069368",NA,"as N","Nitrogen","Dissolved","0.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917433-0608-2-C/results/970069368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:57","STORET",7,NA,2022-06-08 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917433-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069379",NA,"as N","Nitrogen","Total","0.954","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917433-0718-2-C/results/970069379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:58","STORET",7,NA,2022-07-18 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.954,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917433-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069390",NA,"as N","Nitrogen","Dissolved","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917433-0718-2-C/results/970069390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:58","STORET",7,NA,2022-07-18 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917433-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069404",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917433-0815-2-C/results/970069404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:59","STORET",7,NA,2022-08-15 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917433-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069412",NA,"as N","Nitrogen","Dissolved","0.851","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917433-0815-2-C/results/970069412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:13:59","STORET",7,NA,2022-08-15 18:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.851,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917433-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069424",NA,"as N","Nitrogen","Dissolved","0.837","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917433-0919-2-C/results/970069424/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:00","STORET",7,NA,2022-09-19 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.837,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917433-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917433","Utah Lake SP @ Marina",NA,NA,NA,NA,"40.2384300000","-111.7388300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069428",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917433-0919-2-C/results/970069428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:00","STORET",7,NA,2022-09-19 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.2384300000","-111.7388300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.23843,-111.73883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917450-0419-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-19,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069451",NA,"as N","Nitrogen","Dissolved","0.816","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917450-0419-2-C/results/970069451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:01","STORET",7,NA,2022-04-19 16:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.816,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917450-0419-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-19,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069452",NA,"as N","Nitrogen","Total","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917450-0419-2-C/results/970069452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:01","STORET",7,NA,2022-04-19 16:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917450-0518-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-18,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069458",NA,"as N","Nitrogen","Dissolved","0.374","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917450-0518-2-C/results/970069458/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:01","STORET",7,NA,2022-05-18 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.374,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917450-0518-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-18,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069461",NA,"as N","Nitrogen","Total","0.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917450-0518-2-C/results/970069461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:01","STORET",7,NA,2022-05-18 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917450-0607-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069485",NA,"as N","Nitrogen","Dissolved","0.509","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917450-0607-2-C/results/970069485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:02","STORET",7,NA,2022-06-07 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.509,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917450-0607-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-07,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069487",NA,"as N","Nitrogen","Total","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917450-0607-2-C/results/970069487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:02","STORET",7,NA,2022-06-07 18:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917450-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069491",NA,"as N","Nitrogen","Total","3.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917450-0719-2-C/results/970069491/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:03","STORET",7,NA,2022-07-19 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.76,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917450-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069499",NA,"as N","Nitrogen","Dissolved","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917450-0719-2-C/results/970069499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:03","STORET",7,NA,2022-07-19 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917450-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069514",NA,"as N","Nitrogen","Dissolved","0.731","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917450-0816-2-C/results/970069514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:03","STORET",7,NA,2022-08-16 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.731,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917450-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069518",NA,"as N","Nitrogen","Total","0.688","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917450-0816-2-C/results/970069518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:03","STORET",7,NA,2022-08-16 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.688,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917450-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069526",NA,"as N","Nitrogen","Dissolved","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917450-0920-2-C/results/970069526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:04","STORET",7,NA,2022-09-20 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917450-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917450","UTAH LAKE AT MIDDLE OF PROVO BAY",NA,NA,NA,NA,"40.1891400000","-111.6999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069541",NA,"as N","Nitrogen","Total","1.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917450-0920-2-C/results/970069541/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:04","STORET",7,NA,2022-09-20 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1891400000","-111.6999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.97,"MG/L","Numeric","Not Reviewed","Uncensored",40.18914,-111.69993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917500-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069554",NA,"as N","Nitrogen","Dissolved","0.839","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917500-0418-2-C/results/970069554/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:05","STORET",7,NA,2022-04-18 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.839,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917500-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069555",NA,"as N","Nitrogen","Total","0.858","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917500-0418-2-C/results/970069555/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:05","STORET",7,NA,2022-04-18 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.858,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917500-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"13:35:00","MST",NA,NA,NA,"Bottom","2.603","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069567",NA,"as N","Nitrogen","Dissolved","0.837","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917500-0418-29-C/results/970069567/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:06","STORET",7,NA,2022-04-18 20:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.837,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.603,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917500-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"13:35:00","MST",NA,NA,NA,"Bottom","2.603","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069589",NA,"as N","Nitrogen","Total","0.878","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917500-0418-29-C/results/970069589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:06","STORET",7,NA,2022-04-18 20:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.878,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.603,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917500-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069599",NA,"as N","Nitrogen","Dissolved","0.786","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917500-0516-2-C/results/970069599/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:07","STORET",7,NA,2022-05-16 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.786,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917500-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069610",NA,"as N","Nitrogen","Total","0.792","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917500-0516-2-C/results/970069610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:07","STORET",7,NA,2022-05-16 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.792,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917500-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"13:50:00","MST",NA,NA,NA,"Bottom","2.79","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069623",NA,"as N","Nitrogen","Dissolved","0.725","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917500-0516-29-C/results/970069623/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:08","STORET",7,NA,2022-05-16 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.725,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.79,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917500-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"13:50:00","MST",NA,NA,NA,"Bottom","2.79","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069642",NA,"as N","Nitrogen","Total","0.718","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917500-0516-29-C/results/970069642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:08","STORET",7,NA,2022-05-16 20:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.718,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.79,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917500-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069659",NA,"as N","Nitrogen","Total","0.805","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917500-0608-2-C/results/970069659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:09","STORET",7,NA,2022-06-08 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.805,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917500-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069663",NA,"as N","Nitrogen","Dissolved","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917500-0608-2-C/results/970069663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:09","STORET",7,NA,2022-06-08 19:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917500-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"12:25:00","MST",NA,NA,NA,"Bottom","2.1","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069685",NA,"as N","Nitrogen","Total","0.823","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917500-0608-29-C/results/970069685/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:10","STORET",7,NA,2022-06-08 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.823,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917500-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"12:25:00","MST",NA,NA,NA,"Bottom","2.1","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069696",NA,"as N","Nitrogen","Dissolved","0.766","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917500-0608-29-C/results/970069696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:11","STORET",7,NA,2022-06-08 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.766,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917500-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069711",NA,"as N","Nitrogen","Dissolved","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917500-0718-2-C/results/970069711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:12","STORET",7,NA,2022-07-18 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917500-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069717",NA,"as N","Nitrogen","Total","0.659","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917500-0718-2-C/results/970069717/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:12","STORET",7,NA,2022-07-18 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.659,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917500-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"13:45:00","MST",NA,NA,NA,"Bottom","2.047","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069744",NA,"as N","Nitrogen","Total","0.907","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917500-0718-29-C/results/970069744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:13","STORET",7,NA,2022-07-18 20:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.907,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.047,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917500-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"13:45:00","MST",NA,NA,NA,"Bottom","2.047","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069756",NA,"as N","Nitrogen","Dissolved","0.746","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917500-0718-29-C/results/970069756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:14","STORET",7,NA,2022-07-18 20:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.746,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.047,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917500-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069765",NA,"as N","Nitrogen","Dissolved","0.989","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917500-0815-2-C/results/970069765/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:14","STORET",7,NA,2022-08-15 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.989,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917500-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069769",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917500-0815-2-C/results/970069769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:14","STORET",7,NA,2022-08-15 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917500-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"12:30:00","MST",NA,NA,NA,"Bottom","1.561","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069789",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917500-0815-29-C/results/970069789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:15","STORET",7,NA,2022-08-15 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.561,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917500-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"12:30:00","MST",NA,NA,NA,"Bottom","1.561","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069795",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917500-0815-29-C/results/970069795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:16","STORET",7,NA,2022-08-15 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.561,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917500-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069828",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917500-0919-2-C/results/970069828/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:17","STORET",7,NA,2022-09-19 19:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917500-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069830",NA,"as N","Nitrogen","Dissolved","0.944","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917500-0919-2-C/results/970069830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:17","STORET",7,NA,2022-09-19 19:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.944,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917500-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"12:15:00","MST",NA,NA,NA,"Bottom","1.429","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069865",NA,"as N","Nitrogen","Dissolved","0.901","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917500-0919-29-C/results/970069865/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:18","STORET",7,NA,2022-09-19 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.901,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.429,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917500-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"12:15:00","MST",NA,NA,NA,"Bottom","1.429","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917500","UTAH LAKE 3 MI WNW OF LINCOLN BEACH",NA,NA,NA,NA,"40.1696800000","-111.8716100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069868",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917500-0919-29-C/results/970069868/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:19","STORET",7,NA,2022-09-19 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1696800000","-111.8716100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.16968,-111.87161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.429,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917520-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069883",NA,"as N","Nitrogen","Total","0.782","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917520-0418-2-C/results/970069883/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:19","STORET",7,NA,2022-04-18 21:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.782,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917520-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"14:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069884",NA,"as N","Nitrogen","Dissolved","0.806","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917520-0418-2-C/results/970069884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:19","STORET",7,NA,2022-04-18 21:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.806,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917520-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"14:30:00","MST",NA,NA,NA,"Bottom","2.411","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069908",NA,"as N","Nitrogen","Total","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917520-0418-29-C/results/970069908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:20","STORET",7,NA,2022-04-18 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.411,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917520-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"14:30:00","MST",NA,NA,NA,"Bottom","2.411","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069926",NA,"as N","Nitrogen","Dissolved","0.754","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917520-0418-29-C/results/970069926/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:21","STORET",7,NA,2022-04-18 21:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.754,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.411,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917520-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069932",NA,"as N","Nitrogen","Dissolved","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917520-0516-2-C/results/970069932/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:22","STORET",7,NA,2022-05-16 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917520-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069938",NA,"as N","Nitrogen","Total","0.712","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917520-0516-2-C/results/970069938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:22","STORET",7,NA,2022-05-16 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.712,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917520-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"15:30:00","MST",NA,NA,NA,"Bottom","2.263","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069980",NA,"as N","Nitrogen","Dissolved","0.636","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917520-0516-29-C/results/970069980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:23","STORET",7,NA,2022-05-16 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.636,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.263,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917520-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"15:30:00","MST",NA,NA,NA,"Bottom","2.263","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069982",NA,"as N","Nitrogen","Total","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917520-0516-29-C/results/970069982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:23","STORET",7,NA,2022-05-16 22:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.263,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917520-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069988",NA,"as N","Nitrogen","Dissolved","0.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917520-0608-2-C/results/970069988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:24","STORET",7,NA,2022-06-08 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917520-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970069992",NA,"as N","Nitrogen","Total","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917520-0608-2-C/results/970069992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:24","STORET",7,NA,2022-06-08 20:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917520-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"13:25:00","MST",NA,NA,NA,"Bottom","1.548","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070014",NA,"as N","Nitrogen","Dissolved","0.648","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917520-0608-29-C/results/970070014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:25","STORET",7,NA,2022-06-08 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.648,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.548,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917520-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"13:25:00","MST",NA,NA,NA,"Bottom","1.548","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070034",NA,"as N","Nitrogen","Total","0.804","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917520-0608-29-C/results/970070034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:26","STORET",7,NA,2022-06-08 20:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.804,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.548,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917520-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070042",NA,"as N","Nitrogen","Total","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917520-0718-2-C/results/970070042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:26","STORET",7,NA,2022-07-18 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917520-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070046",NA,"as N","Nitrogen","Dissolved","0.654","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917520-0718-2-C/results/970070046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:26","STORET",7,NA,2022-07-18 21:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.654,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917520-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"15:00:00","MST",NA,NA,NA,"Bottom","1.438","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070074",NA,"as N","Nitrogen","Total","0.705","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917520-0718-29-C/results/970070074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:27","STORET",7,NA,2022-07-18 22:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.705,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.438,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917520-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"15:00:00","MST",NA,NA,NA,"Bottom","1.438","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070080",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917520-0718-29-C/results/970070080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:28","STORET",7,NA,2022-07-18 22:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.438,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917520-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070100",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917520-0815-2-C/results/970070100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:29","STORET",7,NA,2022-08-15 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917520-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070103",NA,"as N","Nitrogen","Dissolved","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917520-0815-2-C/results/970070103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:29","STORET",7,NA,2022-08-15 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917520-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"13:40:00","MST",NA,NA,NA,"Bottom","1.217","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070137",NA,"as N","Nitrogen","Dissolved","0.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917520-0815-29-C/results/970070137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:31","STORET",7,NA,2022-08-15 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.94,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.217,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917520-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"13:40:00","MST",NA,NA,NA,"Bottom","1.217","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070139",NA,"as N","Nitrogen","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917520-0815-29-C/results/970070139/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:31","STORET",7,NA,2022-08-15 20:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.217,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917520-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070149",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917520-0919-2-C/results/970070149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:31","STORET",7,NA,2022-09-19 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917520-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070160",NA,"as N","Nitrogen","Dissolved","0.857","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917520-0919-2-C/results/970070160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:32","STORET",7,NA,2022-09-19 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.857,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917520-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"13:10:00","MST",NA,NA,NA,"Bottom","1.3","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070167",NA,"as N","Nitrogen","Dissolved","0.792","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917520-0919-29-C/results/970070167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:33","STORET",7,NA,2022-09-19 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.792,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917520-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"13:10:00","MST",NA,NA,NA,"Bottom","1.3","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917520","UTAH LAKE 2 MI E OF SARATOGA SPRINGS #12",NA,NA,NA,NA,"40.3421700000","-111.8713300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070201",NA,"as N","Nitrogen","Total","0.975","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917520-0919-29-C/results/970070201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:34","STORET",7,NA,2022-09-19 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.3421700000","-111.8713300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.975,"MG/L","Numeric","Not Reviewed","Uncensored",40.34217,-111.87133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917600-0518-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-18,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070208",NA,"as N","Nitrogen","Dissolved","0.743","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917600-0518-2-C/results/970070208/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:34","STORET",7,NA,2022-05-18 16:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.743,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917600-0518-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-18,"09:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070218",NA,"as N","Nitrogen","Total","0.957","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917600-0518-2-C/results/970070218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:35","STORET",7,NA,2022-05-18 16:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.957,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917600-0607-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-07,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070227",NA,"as N","Nitrogen","Total","0.845","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917600-0607-2-C/results/970070227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:35","STORET",7,NA,2022-06-07 17:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.845,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917600-0607-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-07,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070231",NA,"as N","Nitrogen","Dissolved","0.708","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917600-0607-2-C/results/970070231/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:36","STORET",7,NA,2022-06-07 17:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.708,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917600-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070249",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917600-0719-2-C/results/970070249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:37","STORET",7,NA,2022-07-19 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917600-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070250",NA,"as N","Nitrogen","Total","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917600-0719-2-C/results/970070250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:37","STORET",7,NA,2022-07-19 17:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917600-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070273",NA,"as N","Nitrogen","Total","1.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917600-0816-2-C/results/970070273/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:38","STORET",7,NA,2022-08-16 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917600-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070275",NA,"as N","Nitrogen","Dissolved","2.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917600-0816-2-C/results/970070275/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:38","STORET",7,NA,2022-08-16 17:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917600-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070278",NA,"as N","Nitrogen","Total","2.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917600-0920-2-C/results/970070278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:39","STORET",7,NA,2022-09-20 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.76,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917600-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917600","UTAH LAKE GOSHEN BAY SOUTHWEST END",NA,NA,NA,NA,"40.0602400000","-111.8743800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070281",NA,"as N","Nitrogen","Dissolved","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917600-0920-2-C/results/970070281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:39","STORET",7,NA,2022-09-20 17:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.0602400000","-111.8743800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.06024,-111.87438,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917708-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070306",NA,"as N","Nitrogen","Total","0.863","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917708-0418-2-C/results/970070306/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:40","STORET",7,NA,2022-04-18 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.863,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917708-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070313",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917708-0418-2-C/results/970070313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:40","STORET",7,NA,2022-04-18 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917708-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070327",NA,"as N","Nitrogen","Total","0.859","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917708-0516-2-C/results/970070327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:41","STORET",7,NA,2022-05-16 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.859,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917708-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070329",NA,"as N","Nitrogen","Dissolved","0.555","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917708-0516-2-C/results/970070329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:41","STORET",7,NA,2022-05-16 20:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.555,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917708-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070334",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917708-0608-2-C/results/970070334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:41","STORET",7,NA,2022-06-08 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917708-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070335",NA,"as N","Nitrogen","Dissolved","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917708-0608-2-C/results/970070335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:41","STORET",7,NA,2022-06-08 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917708-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070362",NA,"as N","Nitrogen","Dissolved","1.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917708-0718-2-C/results/970070362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:43","STORET",7,NA,2022-07-18 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917708-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070370",NA,"as N","Nitrogen","Total","0.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917708-0718-2-C/results/970070370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:43","STORET",7,NA,2022-07-18 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.95,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917708-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070380",NA,"as N","Nitrogen","Dissolved","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917708-0816-2-C/results/970070380/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:44","STORET",7,NA,2022-08-16 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917708-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917708","Utah Lake at Lincoln Marina (Beach)",NA,NA,NA,NA,"40.1426000000","-111.8020300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070393",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917708-0816-2-C/results/970070393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:44","STORET",7,NA,2022-08-16 18:20:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1426000000","-111.8020300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.1426,-111.80203,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917710-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070409",NA,"as N","Nitrogen","Dissolved","0.831","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917710-0418-2-C/results/970070409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:45","STORET",7,NA,2022-04-18 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.831,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917710-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070410",NA,"as N","Nitrogen","Total","0.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917710-0418-2-C/results/970070410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:45","STORET",7,NA,2022-04-18 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917710-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"13:05:00","MST",NA,NA,NA,"Bottom","2.597","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070420",NA,"as N","Nitrogen","Total","0.911","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917710-0418-29-C/results/970070420/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:46","STORET",7,NA,2022-04-18 20:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.911,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.597,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917710-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"13:05:00","MST",NA,NA,NA,"Bottom","2.597","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070445",NA,"as N","Nitrogen","Dissolved","0.835","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917710-0418-29-C/results/970070445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:47","STORET",7,NA,2022-04-18 20:05:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.835,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.597,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917710-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070459",NA,"as N","Nitrogen","Dissolved","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917710-0516-2-C/results/970070459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:47","STORET",7,NA,2022-05-16 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917710-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070463",NA,"as N","Nitrogen","Total","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917710-0516-2-C/results/970070463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:48","STORET",7,NA,2022-05-16 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917710-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"13:15:00","MST",NA,NA,NA,"Bottom","2.645","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070474",NA,"as N","Nitrogen","Dissolved","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917710-0516-29-C/results/970070474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:48","STORET",7,NA,2022-05-16 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.645,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917710-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"13:15:00","MST",NA,NA,NA,"Bottom","2.645","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070498",NA,"as N","Nitrogen","Total","0.734","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917710-0516-29-C/results/970070498/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:49","STORET",7,NA,2022-05-16 20:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.734,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.645,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917710-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070505",NA,"as N","Nitrogen","Dissolved","0.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917710-0608-2-C/results/970070505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:50","STORET",7,NA,2022-06-08 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917710-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070511",NA,"as N","Nitrogen","Total","0.828","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917710-0608-2-C/results/970070511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:50","STORET",7,NA,2022-06-08 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.828,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917710-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"11:45:00","MST",NA,NA,NA,"Bottom","2.322","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070546",NA,"as N","Nitrogen","Total","0.839","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917710-0608-29-C/results/970070546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:51","STORET",7,NA,2022-06-08 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.839,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.322,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917710-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"11:45:00","MST",NA,NA,NA,"Bottom","2.322","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070551",NA,"as N","Nitrogen","Dissolved","0.777","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917710-0608-29-C/results/970070551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:51","STORET",7,NA,2022-06-08 18:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.777,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.322,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917710-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070559",NA,"as N","Nitrogen","Dissolved","0.718","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917710-0718-2-C/results/970070559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:51","STORET",7,NA,2022-07-18 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.718,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917710-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070563",NA,"as N","Nitrogen","Total","0.828","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917710-0718-2-C/results/970070563/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:51","STORET",7,NA,2022-07-18 20:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.828,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917710-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"13:10:00","MST",NA,NA,NA,"Bottom","2.066","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070597",NA,"as N","Nitrogen","Dissolved","0.772","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917710-0718-29-C/results/970070597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:53","STORET",7,NA,2022-07-18 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.772,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.066,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917710-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"13:10:00","MST",NA,NA,NA,"Bottom","2.066","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070612",NA,"as N","Nitrogen","Total","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917710-0718-29-C/results/970070612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:53","STORET",7,NA,2022-07-18 20:10:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.066,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917710-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070617",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917710-0815-2-C/results/970070617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:54","STORET",7,NA,2022-08-15 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917710-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070630",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917710-0815-2-C/results/970070630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:54","STORET",7,NA,2022-08-15 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917710-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"12:25:00","MST",NA,NA,NA,"Bottom","1.85","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070652",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917710-0815-29-C/results/970070652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:55","STORET",7,NA,2022-08-15 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.85,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917710-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"12:25:00","MST",NA,NA,NA,"Bottom","1.85","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070668",NA,"as N","Nitrogen","Total","0.877","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917710-0815-29-C/results/970070668/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:55","STORET",7,NA,2022-08-15 19:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.877,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.85,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917710-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070672",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917710-0919-2-C/results/970070672/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:56","STORET",7,NA,2022-09-19 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917710-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070681",NA,"as N","Nitrogen","Dissolved","0.853","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917710-0919-2-C/results/970070681/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:56","STORET",7,NA,2022-09-19 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.853,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917710-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"11:55:00","MST",NA,NA,NA,"Bottom","1.608","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070715",NA,"as N","Nitrogen","Dissolved","0.863","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917710-0919-29-C/results/970070715/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:57","STORET",7,NA,2022-09-19 18:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.863,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.608,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917710-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"11:55:00","MST",NA,NA,NA,"Bottom","1.608","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917710","UTAH LAKE 1 MI NE OF LINCOLN POINT #03",NA,NA,NA,NA,"40.1577300000","-111.7913300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070719",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917710-0919-29-C/results/970070719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:57","STORET",7,NA,2022-09-19 18:55:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1577300000","-111.7913300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.15773,-111.79133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.608,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917715-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070724",NA,"as N","Nitrogen","Total","0.865","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917715-0418-2-C/results/970070724/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:58","STORET",7,NA,2022-04-18 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.865,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917715-0418-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-04-18,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070730",NA,"as N","Nitrogen","Dissolved","0.814","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917715-0418-2-C/results/970070730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:58","STORET",7,NA,2022-04-18 19:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.814,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917715-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"12:35:00","MST",NA,NA,NA,"Bottom","2.814","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070762",NA,"as N","Nitrogen","Total","0.848","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917715-0418-29-C/results/970070762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:59","STORET",7,NA,2022-04-18 19:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.848,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.814,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4917715-0418-29-C","Sample-Routine","Water",NA,2022-04-18,"12:35:00","MST",NA,NA,NA,"Bottom","2.814","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070767",NA,"as N","Nitrogen","Dissolved","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4917715-0418-29-C/results/970070767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:14:59","STORET",7,NA,2022-04-18 19:35:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.814,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917715-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070786",NA,"as N","Nitrogen","Dissolved","0.733","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917715-0516-2-C/results/970070786/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:00","STORET",7,NA,2022-05-16 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.733,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917715-0516-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-16,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070792",NA,"as N","Nitrogen","Total","0.835","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917715-0516-2-C/results/970070792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:00","STORET",7,NA,2022-05-16 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.835,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917715-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"12:45:00","MST",NA,NA,NA,"Bottom","3.42","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070821",NA,"as N","Nitrogen","Dissolved","0.684","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917715-0516-29-C/results/970070821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:01","STORET",7,NA,2022-05-16 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.684,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.42,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917715-0516-29-C","Sample-Routine","Water",NA,2022-05-16,"12:45:00","MST",NA,NA,NA,"Bottom","3.42","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070823",NA,"as N","Nitrogen","Total","0.734","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917715-0516-29-C/results/970070823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:01","STORET",7,NA,2022-05-16 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.734,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.42,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917715-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070837",NA,"as N","Nitrogen","Dissolved","0.914","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917715-0608-2-C/results/970070837/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:02","STORET",7,NA,2022-06-08 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.914,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917715-0608-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-08,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070851",NA,"as N","Nitrogen","Total","0.801","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917715-0608-2-C/results/970070851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:02","STORET",7,NA,2022-06-08 18:25:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.801,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917715-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"11:30:00","MST",NA,NA,NA,"Bottom","2.422","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070879",NA,"as N","Nitrogen","Dissolved","0.751","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917715-0608-29-C/results/970070879/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:03","STORET",7,NA,2022-06-08 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.751,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.422,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917715-0608-29-C","Sample-Routine","Water",NA,2022-06-08,"11:30:00","MST",NA,NA,NA,"Bottom","2.422","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070887",NA,"as N","Nitrogen","Total","0.856","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917715-0608-29-C/results/970070887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:03","STORET",7,NA,2022-06-08 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.856,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.422,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917715-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070896",NA,"as N","Nitrogen","Dissolved","0.678","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917715-0718-2-C/results/970070896/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:04","STORET",7,NA,2022-07-18 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.678,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917715-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070903",NA,"as N","Nitrogen","Total","0.756","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917715-0718-2-C/results/970070903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:04","STORET",7,NA,2022-07-18 19:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.756,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917715-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"12:45:00","MST",NA,NA,NA,"Bottom","2.069","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070910",NA,"as N","Nitrogen","Dissolved","0.823","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917715-0718-29-C/results/970070910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:04","STORET",7,NA,2022-07-18 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.823,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.069,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917715-0718-29-C","Sample-Routine","Water",NA,2022-07-18,"12:45:00","MST",NA,NA,NA,"Bottom","2.069","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070943",NA,"as N","Nitrogen","Total","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917715-0718-29-C/results/970070943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:05","STORET",7,NA,2022-07-18 19:45:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.069,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917715-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070955",NA,"as N","Nitrogen","Dissolved","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917715-0815-2-C/results/970070955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:06","STORET",7,NA,2022-08-15 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917715-0815-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-15,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070960",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917715-0815-2-C/results/970070960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:06","STORET",7,NA,2022-08-15 18:50:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917715-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"12:00:00","MST",NA,NA,NA,"Bottom","1.879","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070969",NA,"as N","Nitrogen","Total","0.876","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917715-0815-29-C/results/970070969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:06","STORET",7,NA,2022-08-15 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.876,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.879,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917715-0815-29-C","Sample-Routine","Water",NA,2022-08-15,"12:00:00","MST",NA,NA,NA,"Bottom","1.879","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970070994",NA,"as N","Nitrogen","Dissolved","0.967","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917715-0815-29-C/results/970070994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:07","STORET",7,NA,2022-08-15 19:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.967,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.879,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917715-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071005",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917715-0919-2-C/results/970071005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:07","STORET",7,NA,2022-09-19 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917715-0919-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-19,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071010",NA,"as N","Nitrogen","Dissolved","0.939","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917715-0919-2-C/results/970071010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:07","STORET",7,NA,2022-09-19 18:30:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.939,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917715-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"11:40:00","MST",NA,NA,NA,"Bottom","1.604","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071019",NA,"as N","Nitrogen","Dissolved","0.953","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917715-0919-29-C/results/970071019/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:08","STORET",7,NA,2022-09-19 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.953,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.604,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917715-0919-29-C","Sample-Routine","Water",NA,2022-09-19,"11:40:00","MST",NA,NA,NA,"Bottom","1.604","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917715","Utah Lake 1 mile southeast of Bird Island",NA,NA,NA,NA,"40.1691600000","-111.7772900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071031",NA,"as N","Nitrogen","Total","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917715-0919-29-C/results/970071031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:08","STORET",7,NA,2022-09-19 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1691600000","-111.7772900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.16916,-111.77729,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.604,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917770-0518-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071054",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917770-0518-2-C/results/970071054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:09","STORET",7,NA,2022-05-18 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917770-0518-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-18,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071065",NA,"as N","Nitrogen","Dissolved","0.601","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917770-0518-2-C/results/970071065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:09","STORET",7,NA,2022-05-18 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.601,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917770-0518-29-C","Sample-Routine","Water",NA,2022-05-18,"11:00:00","MST",NA,NA,NA,"Bottom","1.2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071074",NA,"as N","Nitrogen","Dissolved","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917770-0518-29-C/results/970071074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:10","STORET",7,NA,2022-05-18 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4917770-0518-29-C","Sample-Routine","Water",NA,2022-05-18,"11:00:00","MST",NA,NA,NA,"Bottom","1.2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071103",NA,"as N","Nitrogen","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4917770-0518-29-C/results/970071103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:10","STORET",7,NA,2022-05-18 18:00:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917770-0607-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071116",NA,"as N","Nitrogen","Dissolved","0.724","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917770-0607-2-C/results/970071116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:11","STORET",7,NA,2022-06-07 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.724,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4917770-0607-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-07,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071120",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4917770-0607-2-C/results/970071120/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:11","STORET",7,NA,2022-06-07 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917770-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071128",NA,"as N","Nitrogen","Dissolved","0.813","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917770-0718-2-C/results/970071128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:12","STORET",7,NA,2022-07-18 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.813,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4917770-0718-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-18,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071134",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4917770-0718-2-C/results/970071134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:12","STORET",7,NA,2022-07-18 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071149",NA,"as N","Nitrogen","Total","3.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920010-0913-4-C/results/970071149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:12","STORET",7,NA,2022-09-13 19:45:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920010","IRRIGATION CANAL AB WEBER R",NA,NA,NA,NA,"41.2835800000","-112.0896600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071167",NA,"as N","Nitrogen","Dissolved","3.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920010-0913-4-C/results/970071167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:13","STORET",7,NA,2022-09-13 19:45:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.2835800000","-112.0896600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.28358,-112.08966,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917770-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071381",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917770-0816-2-C/results/970071381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:21","STORET",7,NA,2022-08-16 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4917770-0816-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-08-16,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071387",NA,"as N","Nitrogen","Total","0.793","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4917770-0816-2-C/results/970071387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:21","STORET",7,NA,2022-08-16 19:15:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.793,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917770-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071400",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917770-0920-2-C/results/970071400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:22","STORET",7,NA,2022-09-20 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4917770-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4917770","UTAH LAKE OUTSIDE ENTRANCE TO PROVO BAY",NA,NA,NA,NA,"40.1885700000","-111.7313100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071405",NA,"as N","Nitrogen","Dissolved","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4917770-0920-2-C/results/970071405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:22","STORET",7,NA,2022-09-20 18:40:00,NA,"Lake",NA,"16020201",NA,NA,NA,NA,"40.1885700000","-111.7313100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",40.18857,-111.73131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920030-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071416",NA,"as N","Nitrogen","Dissolved","17.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920030-0523-4-C/results/970071416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:23","STORET",7,NA,2022-05-23 19:55:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920030-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071423",NA,"as N","Nitrogen","Total","18.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920030-0523-4-C/results/970071423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:23","STORET",7,NA,2022-05-23 19:55:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920030-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"12:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071430",NA,"as N","Nitrogen","Dissolved","4.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920030-0711-4-C/results/970071430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:23","STORET",7,NA,2022-07-11 19:35:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.74,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920030-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"12:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071433",NA,"as N","Nitrogen","Total","7.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920030-0711-4-C/results/970071433/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:23","STORET",7,NA,2022-07-11 19:35:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920030-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071438",NA,"as N","Nitrogen","Total","8.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920030-0913-4-C/results/970071438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:24","STORET",7,NA,2022-09-13 20:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.77,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920030-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920030","PLAIN CITY LAGOONS",NA,NA,NA,NA,"41.3105500000","-112.1013500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071442",NA,"as N","Nitrogen","Dissolved","7.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920030-0913-4-C/results/970071442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:24","STORET",7,NA,2022-09-13 20:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.3105500000","-112.1013500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.31055,-112.10135,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920048-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071523",NA,"as N","Nitrogen","Dissolved","8.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920048-0404-4-C/results/970071523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:27","STORET",7,NA,2022-04-04 19:10:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920048-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071545",NA,"as N","Nitrogen","Total","8.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920048-0404-4-C/results/970071545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:27","STORET",7,NA,2022-04-04 19:10:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920048-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071565",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920048-0523-4-C/results/970071565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:28","STORET",7,NA,2022-05-23 19:30:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920048-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071579",NA,"as N","Nitrogen","Dissolved","0.665","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920048-0523-4-C/results/970071579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:28","STORET",7,NA,2022-05-23 19:30:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.665,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920048-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071607",NA,"as N","Nitrogen","Total","0.738","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920048-0613-4-C/results/970071607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:29","STORET",7,NA,2022-06-13 22:00:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.738,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920048-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071617",NA,"as N","Nitrogen","Dissolved","0.697","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920048-0613-4-C/results/970071617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:29","STORET",7,NA,2022-06-13 22:00:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.697,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920048-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071639",NA,"as N","Nitrogen","Total","0.559","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920048-0711-4-C/results/970071639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:30","STORET",7,NA,2022-07-11 19:10:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.559,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920048-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071652",NA,"as N","Nitrogen","Dissolved","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920048-0711-4-C/results/970071652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:30","STORET",7,NA,2022-07-11 19:10:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920048-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071684",NA,"as N","Nitrogen","Dissolved","0.751","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920048-0801-4-C/results/970071684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:31","STORET",7,NA,2022-08-01 18:50:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.751,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920048-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071721",NA,"as N","Nitrogen","Total","0.693","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920048-0801-4-C/results/970071721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:31","STORET",7,NA,2022-08-01 18:50:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.693,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920048-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071735",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920048-0913-4-C/results/970071735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:32","STORET",7,NA,2022-09-13 19:30:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920048-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920048","WEBER R S OF PLAIN CITY Replicate of 4920050",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071747",NA,"as N","Nitrogen","Dissolved","1.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920048-0913-4-C/results/970071747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:32","STORET",7,NA,2022-09-13 19:30:00,NA,"River/Stream","Replicate of 4920050","16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.27,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920050-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071764",NA,"as N","Nitrogen","Total","8.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920050-0404-4-C/results/970071764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:33","STORET",7,NA,2022-04-04 19:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920050-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071772",NA,"as N","Nitrogen","Dissolved","8.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920050-0404-4-C/results/970071772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:33","STORET",7,NA,2022-04-04 19:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920050-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071830",NA,"as N","Nitrogen","Total","0.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920050-0523-4-C/results/970071830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:35","STORET",7,NA,2022-05-23 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920050-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071834",NA,"as N","Nitrogen","Dissolved","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920050-0523-4-C/results/970071834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:35","STORET",7,NA,2022-05-23 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920050-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071883",NA,"as N","Nitrogen","Total","0.754","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920050-0613-4-C/results/970071883/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:36","STORET",7,NA,2022-06-13 21:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.754,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920050-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071888",NA,"as N","Nitrogen","Dissolved","0.894","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920050-0613-4-C/results/970071888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:36","STORET",7,NA,2022-06-13 21:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.894,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920050-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071904",NA,"as N","Nitrogen","Dissolved","2.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920050-0711-4-C/results/970071904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:37","STORET",7,NA,2022-07-11 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920050-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071922",NA,"as N","Nitrogen","Total","1.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920050-0711-4-C/results/970071922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:37","STORET",7,NA,2022-07-11 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.65,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920050-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071937",NA,"as N","Nitrogen","Total","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920050-0801-4-C/results/970071937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:38","STORET",7,NA,2022-08-01 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920050-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071966",NA,"as N","Nitrogen","Dissolved","0.584","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920050-0801-4-C/results/970071966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:38","STORET",7,NA,2022-08-01 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.584,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920050-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970071998",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920050-0913-4-C/results/970071998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:39","STORET",7,NA,2022-09-13 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920050-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920050","WEBER R S OF PLAIN CITY",NA,NA,NA,NA,"41.2780000000","-112.0924500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072010",NA,"as N","Nitrogen","Dissolved","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920050-0913-4-C/results/970072010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:40","STORET",7,NA,2022-09-13 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2780000000","-112.0924500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.278,-112.09245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920062-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072154",NA,"as N","Nitrogen","Total","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920062-0404-4-C/results/970072154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:45","STORET",7,NA,2022-04-04 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920062-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072171",NA,"as N","Nitrogen","Dissolved","0.757","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920062-0404-4-C/results/970072171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:45","STORET",7,NA,2022-04-04 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.757,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920062-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072181",NA,"as N","Nitrogen","Total","0.533","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920062-0523-4-C/results/970072181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:46","STORET",7,NA,2022-05-23 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.533,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920062-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072182",NA,"as N","Nitrogen","Dissolved","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920062-0523-4-C/results/970072182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:46","STORET",7,NA,2022-05-23 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920062-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072187",NA,"as N","Nitrogen","Total","0.831","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920062-0613-4-C/results/970072187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:46","STORET",7,NA,2022-06-13 23:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.831,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920062-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072204",NA,"as N","Nitrogen","Dissolved","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920062-0613-4-C/results/970072204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:47","STORET",7,NA,2022-06-13 23:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920062-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072214",NA,"as N","Nitrogen","Total","0.537","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920062-0711-4-C/results/970072214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:47","STORET",7,NA,2022-07-11 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.537,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920062-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072215",NA,"as N","Nitrogen","Dissolved","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920062-0711-4-C/results/970072215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:47","STORET",7,NA,2022-07-11 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920062-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072226",NA,"as N","Nitrogen","Dissolved","0.698","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920062-0801-4-C/results/970072226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:48","STORET",7,NA,2022-08-01 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.698,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920062-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072246",NA,"as N","Nitrogen","Total","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920062-0801-4-C/results/970072246/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:48","STORET",7,NA,2022-08-01 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920062-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072249",NA,"as N","Nitrogen","Total","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920062-0913-4-C/results/970072249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:49","STORET",7,NA,2022-09-13 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920062-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920062","Four Mile Creek below 2100 West (SR 126) Marriot-Slaterville",NA,NA,NA,NA,"41.2692500000","-112.0284500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072252",NA,"as N","Nitrogen","Dissolved","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920062-0913-4-C/results/970072252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:49","STORET",7,NA,2022-09-13 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2692500000","-112.0284500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.26925,-112.02845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920097-0405-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-05,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072269","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0405-4-C/results/970072269/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:50","STORET",7,NA,2022-04-05 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920097-0405-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-05,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072293",NA,"as N","Nitrogen","Dissolved","0.495","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0405-4-C/results/970072293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:51","STORET",7,NA,2022-04-05 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.495,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920097-0405-4/1-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-05,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072303","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0405-4%2F1-C/results/970072303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:52","STORET",7,NA,2022-04-05 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920097-0405-4/1-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-05,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072313","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0405-4%2F1-C/results/970072313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:52","STORET",7,NA,2022-04-05 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920097-0406-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-06,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072332","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0406-4-C/results/970072332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:53","STORET",7,NA,2022-04-06 21:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920097-0406-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-06,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072345","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920097-0406-4-C/results/970072345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:53","STORET",7,NA,2022-04-06 21:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920097-0523-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-23,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072371","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0523-4-C/results/970072371/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:54","STORET",7,NA,2022-05-23 22:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920097-0523-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-23,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072391","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0523-4-C/results/970072391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:54","STORET",7,NA,2022-05-23 22:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920097-0524-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-24,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072397","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0524-4-C/results/970072397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:55","STORET",7,NA,2022-05-24 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920097-0524-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-24,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072398","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0524-4-C/results/970072398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:55","STORET",7,NA,2022-05-24 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920097-0525-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-25,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072403","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0525-4-C/results/970072403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:55","STORET",7,NA,2022-05-25 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920097-0525-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-25,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072410","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920097-0525-4-C/results/970072410/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:56","STORET",7,NA,2022-05-25 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920097-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072431","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0614-4-C/results/970072431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:57","STORET",7,NA,2022-06-14 15:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920097-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072451","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0614-4-C/results/970072451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:57","STORET",7,NA,2022-06-14 15:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920097-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-15,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072457","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0615-4-C/results/970072457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:58","STORET",7,NA,2022-06-16 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920097-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-15,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072459","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0615-4-C/results/970072459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:58","STORET",7,NA,2022-06-16 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920097-0616-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072483","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0616-4-C/results/970072483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:59","STORET",7,NA,2022-06-17 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920097-0616-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072492","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0616-4-C/results/970072492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:15:59","STORET",7,NA,2022-06-17 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920097-0623-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-23,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072517","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0623-4-C/results/970072517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:00","STORET",7,NA,2022-06-23 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920097-0623-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-23,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072522","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920097-0623-4-C/results/970072522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:00","STORET",7,NA,2022-06-23 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4920097-0629-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-29,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072537","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920097-0629-4-C/results/970072537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:01","STORET",7,NA,2022-06-29 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4920097-0629-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-29,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072543","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920097-0629-4-C/results/970072543/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:01","STORET",7,NA,2022-06-29 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4920097-0630-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-30,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072562",NA,"as N","Nitrogen","Dissolved","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Results verified by reanalysis",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920097-0630-4-C/results/970072562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:02","STORET",7,NA,2022-06-30 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4920097-0630-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-30,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072578","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920097-0630-4-C/results/970072578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:02","STORET",7,NA,2022-06-30 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920097-0711-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-11,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072596","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0711-4-C/results/970072596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:03","STORET",7,NA,2022-07-11 22:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920097-0711-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-11,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072608","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0711-4-C/results/970072608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:03","STORET",7,NA,2022-07-11 22:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920097-0712-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-12,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072629","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0712-4-C/results/970072629/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:04","STORET",7,NA,2022-07-12 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920097-0712-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-12,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072635","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0712-4-C/results/970072635/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:04","STORET",7,NA,2022-07-12 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920097-0713-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-13,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072637","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0713-4-C/results/970072637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:04","STORET",7,NA,2022-07-13 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920097-0713-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-13,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072638","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920097-0713-4-C/results/970072638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:04","STORET",7,NA,2022-07-13 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920097-0801-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072662","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0801-4-C/results/970072662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:05","STORET",7,NA,2022-08-01 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920097-0801-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-01,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072672",NA,"as N","Nitrogen","Dissolved","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0801-4-C/results/970072672/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:05","STORET",7,NA,2022-08-01 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920097-0802-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-02,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072688","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0802-4-C/results/970072688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:06","STORET",7,NA,2022-08-02 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920097-0802-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-02,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072703","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0802-4-C/results/970072703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:06","STORET",7,NA,2022-08-02 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920097-0803-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-03,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072731","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0803-4-C/results/970072731/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:07","STORET",7,NA,2022-08-03 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920097-0803-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-03,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072733",NA,"as N","Nitrogen","Dissolved","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920097-0803-4-C/results/970072733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:07","STORET",7,NA,2022-08-03 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4920097-0822-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-22,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072748","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4920097-0822-4-C/results/970072748/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:08","STORET",7,NA,2022-08-22 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4920097-0822-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-22,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072763","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4920097-0822-4-C/results/970072763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:08","STORET",7,NA,2022-08-22 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4920097-0823-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-23,"18:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072770","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4920097-0823-4-C/results/970072770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:09","STORET",7,NA,2022-08-24 01:20:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4920097-0823-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-23,"18:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072789","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4920097-0823-4-C/results/970072789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:09","STORET",7,NA,2022-08-24 01:20:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920097-0913-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-13,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072793",NA,"as N","Nitrogen","Dissolved","0.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0913-4-C/results/970072793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:10","STORET",7,NA,2022-09-13 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.35,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920097-0913-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-13,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072828","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0913-4-C/results/970072828/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:11","STORET",7,NA,2022-09-13 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920097-0914-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072835","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0914-4-C/results/970072835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:11","STORET",7,NA,2022-09-14 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920097-0914-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-14,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072843","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0914-4-C/results/970072843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:11","STORET",7,NA,2022-09-14 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920097-0915-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-15,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072845","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0915-4-C/results/970072845/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:12","STORET",7,NA,2022-09-15 22:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920097-0915-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-15,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072850","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920097-0915-4-C/results/970072850/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:12","STORET",7,NA,2022-09-15 22:05:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-20,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072896","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0920-4-C/results/970072896/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:13","STORET",7,NA,2022-09-21 00:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-20,"17:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072900","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0920-4-C/results/970072900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:14","STORET",7,NA,2022-09-21 00:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0921-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-21,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072935","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0921-4-C/results/970072935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:15","STORET",7,NA,2022-09-21 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0921-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-21,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072950","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0921-4-C/results/970072950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:15","STORET",7,NA,2022-09-21 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0926-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-26,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072958",NA,"as N","Nitrogen","Dissolved","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0926-4-C/results/970072958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:16","STORET",7,NA,2022-09-26 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0926-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-26,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072966","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0926-4-C/results/970072966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:16","STORET",7,NA,2022-09-26 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0927-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072976","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0927-4-C/results/970072976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:17","STORET",7,NA,2022-09-27 19:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0927-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-27,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072978","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0927-4-C/results/970072978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:17","STORET",7,NA,2022-09-27 19:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0928-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-28,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072981",NA,"as N","Nitrogen","Dissolved","0.688","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0928-4-C/results/970072981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:17","STORET",7,NA,2022-09-28 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.688,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4920097-0928-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-28,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072988","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4920097-0928-4-C/results/970072988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:17","STORET",7,NA,2022-09-28 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4920097-0929-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-29,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970072995",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4920097-0929-4-C/results/970072995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:18","STORET",7,NA,2022-09-29 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4920097-0929-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-29,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920097","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 1)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073003","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4920097-0929-4-C/results/970073003/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:18","STORET",7,NA,2022-09-29 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920098-0404-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-04,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073043","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0404-4-C/results/970073043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:20","STORET",7,NA,2022-04-04 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920098-0404-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-04,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073054","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0404-4-C/results/970073054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:20","STORET",7,NA,2022-04-04 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920098-0405-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-05,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073082","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0405-4-C/results/970073082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:22","STORET",7,NA,2022-04-05 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920098-0405-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-05,"16:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073096","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0405-4-C/results/970073096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:22","STORET",7,NA,2022-04-05 23:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920098-0406-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-06,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073104","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0406-4-C/results/970073104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:23","STORET",7,NA,2022-04-06 20:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920098-0406-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-06,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073105","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920098-0406-4-C/results/970073105/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:23","STORET",7,NA,2022-04-06 20:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920098-0509-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-09,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073130","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0509-4-C/results/970073130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:24","STORET",7,NA,2022-05-09 23:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920098-0509-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-09,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073137","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0509-4-C/results/970073137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:25","STORET",7,NA,2022-05-09 23:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920098-0510-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-10,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073170","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0510-4-C/results/970073170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:26","STORET",7,NA,2022-05-10 23:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920098-0510-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-10,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073179","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0510-4-C/results/970073179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:26","STORET",7,NA,2022-05-10 23:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920098-0511-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-11,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073182","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0511-4-C/results/970073182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:27","STORET",7,NA,2022-05-11 21:20:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920098-0511-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-11,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073185","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920098-0511-4-C/results/970073185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:27","STORET",7,NA,2022-05-11 21:20:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920098-0613-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073223",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0613-4-C/results/970073223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:29","STORET",7,NA,2022-06-13 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920098-0613-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073224","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0613-4-C/results/970073224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:29","STORET",7,NA,2022-06-13 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920098-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073269","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0614-4-C/results/970073269/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:31","STORET",7,NA,2022-06-14 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920098-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073285","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0614-4-C/results/970073285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:31","STORET",7,NA,2022-06-14 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920098-0616-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073316","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0616-4-C/results/970073316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:33","STORET",7,NA,2022-06-16 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920098-0616-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073322","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920098-0616-4-C/results/970073322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:33","STORET",7,NA,2022-06-16 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920098-0718-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-18,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073357",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0718-4-C/results/970073357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:34","STORET",7,NA,2022-07-18 23:50:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920098-0718-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-18,"16:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073369",NA,"as N","Nitrogen","Dissolved","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0718-4-C/results/970073369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:34","STORET",7,NA,2022-07-18 23:50:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920098-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-19,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073378","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0719-4-C/results/970073378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:35","STORET",7,NA,2022-07-19 23:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920098-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-19,"16:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073390","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0719-4-C/results/970073390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:35","STORET",7,NA,2022-07-19 23:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920098-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-20,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073417","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0720-4-C/results/970073417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:37","STORET",7,NA,2022-07-20 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920098-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-20,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073425","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920098-0720-4-C/results/970073425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:37","STORET",7,NA,2022-07-20 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920098-0808-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-08,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073454","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0808-4-C/results/970073454/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:38","STORET",7,NA,2022-08-08 23:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920098-0808-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-08,"16:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073463",NA,"as N","Nitrogen","Dissolved","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0808-4-C/results/970073463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:39","STORET",7,NA,2022-08-08 23:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920098-0809-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-09,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073468",NA,"as N","Nitrogen","Dissolved","0.652","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0809-4-C/results/970073468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:39","STORET",7,NA,2022-08-09 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.652,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920098-0809-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-09,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073493","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0809-4-C/results/970073493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:41","STORET",7,NA,2022-08-09 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920098-0810-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073517",NA,"as N","Nitrogen","Dissolved","0.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0810-4-C/results/970073517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:42","STORET",7,NA,2022-08-10 19:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920098-0810-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-10,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073520","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920098-0810-4-C/results/970073520/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:42","STORET",7,NA,2022-08-10 19:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920098-0912-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-12,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073537","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0912-4-C/results/970073537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:43","STORET",7,NA,2022-09-12 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920098-0912-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-12,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073559","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0912-4-C/results/970073559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:43","STORET",7,NA,2022-09-12 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920098-0913-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-13,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073580","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0913-4-C/results/970073580/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:44","STORET",7,NA,2022-09-13 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920098-0913-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-13,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073586","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0913-4-C/results/970073586/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:45","STORET",7,NA,2022-09-13 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920098-0914-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-14,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073622","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0914-4-C/results/970073622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:46","STORET",7,NA,2022-09-14 21:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920098-0914-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-14,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920098","EQUIPMENT BLANK-WEBER RIVER INTENSIVE (CREW 2)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073627","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920098-0914-4-C/results/970073627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:46","STORET",7,NA,2022-09-14 21:40:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920110-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073637",NA,"as N","Nitrogen","Dissolved","10.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920110-0404-4-C/results/970073637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:47","STORET",7,NA,2022-04-04 19:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920110-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073647",NA,"as N","Nitrogen","Total","10.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920110-0404-4-C/results/970073647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:47","STORET",7,NA,2022-04-04 19:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920110-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073687",NA,"as N","Nitrogen","Total","8.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920110-0523-4-C/results/970073687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:49","STORET",7,NA,2022-05-23 20:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920110-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073711",NA,"as N","Nitrogen","Dissolved","8.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920110-0523-4-C/results/970073711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:49","STORET",7,NA,2022-05-23 20:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920110-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"15:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073719",NA,"as N","Nitrogen","Dissolved","8.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920110-0613-4-C/results/970073719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:50","STORET",7,NA,2022-06-13 22:50:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920110-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"15:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073732",NA,"as N","Nitrogen","Total","7.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920110-0613-4-C/results/970073732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:50","STORET",7,NA,2022-06-13 22:50:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920110-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073796",NA,"as N","Nitrogen","Dissolved","8.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920110-0711-4-C/results/970073796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:52","STORET",7,NA,2022-07-11 20:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920110-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073799",NA,"as N","Nitrogen","Total","9.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920110-0711-4-C/results/970073799/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:52","STORET",7,NA,2022-07-11 20:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920110-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073811",NA,"as N","Nitrogen","Total","8.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920110-0801-4-C/results/970073811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:53","STORET",7,NA,2022-08-01 19:25:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920110-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073813",NA,"as N","Nitrogen","Dissolved","8.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920110-0801-4-C/results/970073813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:53","STORET",7,NA,2022-08-01 19:25:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920110-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073849",NA,"as N","Nitrogen","Total","7.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920110-0913-4-C/results/970073849/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:55","STORET",7,NA,2022-09-13 20:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920110-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920110","CENTRAL WEBER WWTP 002",NA,NA,NA,NA,"41.2724400000","-112.0459600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073886",NA,"as N","Nitrogen","Dissolved","6.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920110-0913-4-C/results/970073886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:56","STORET",7,NA,2022-09-13 20:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.2724400000","-112.0459600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.98,"MG/L","Numeric","Not Reviewed","Uncensored",41.27244,-112.04596,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920120-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073952",NA,"as N","Nitrogen","Dissolved","0.696","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920120-0404-4-C/results/970073952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:58","STORET",7,NA,2022-04-04 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.696,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920120-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970073959",NA,"as N","Nitrogen","Total","0.883","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920120-0404-4-C/results/970073959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:16:58","STORET",7,NA,2022-04-04 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.883,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920120-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074002",NA,"as N","Nitrogen","Total","0.493","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920120-0523-4-C/results/970074002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:00","STORET",7,NA,2022-05-23 19:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.493,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920120-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"12:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074009",NA,"as N","Nitrogen","Dissolved","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920120-0523-4-C/results/970074009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:00","STORET",7,NA,2022-05-23 19:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920120-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074070",NA,"as N","Nitrogen","Dissolved","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920120-0613-4-C/results/970074070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:02","STORET",7,NA,2022-06-13 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920120-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074079",NA,"as N","Nitrogen","Total","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920120-0613-4-C/results/970074079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:02","STORET",7,NA,2022-06-13 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920120-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074096",NA,"as N","Nitrogen","Total","0.399","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920120-0711-4-C/results/970074096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:04","STORET",7,NA,2022-07-11 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.399,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920120-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074132",NA,"as N","Nitrogen","Dissolved","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920120-0801-4-C/results/970074132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:05","STORET",7,NA,2022-08-01 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920120-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074154",NA,"as N","Nitrogen","Total","0.838","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920120-0801-4-C/results/970074154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:05","STORET",7,NA,2022-08-01 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.838,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920120-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074168",NA,"as N","Nitrogen","Total","0.477","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920120-0913-4-C/results/970074168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:06","STORET",7,NA,2022-09-13 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.477,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920120-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920120","WEBER R AB CENTRAL WEBER WWTP",NA,NA,NA,NA,"41.2513300000","-112.0457800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074202",NA,"as N","Nitrogen","Dissolved","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920120-0913-4-C/results/970074202/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:06","STORET",7,NA,2022-09-13 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2513300000","-112.0457800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",41.25133,-112.04578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920350-0705-4-C","Sample-Routine","Water",NA,2022-07-05,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074397",NA,"as N","Nitrogen","Dissolved","0.353","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920350-0705-4-C/results/970074397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:12","STORET",7,NA,2022-07-05 20:30:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.353,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920350-0705-4-C","Sample-Routine","Water",NA,2022-07-05,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920350","WILLARD CANAL AB WILLARD BAY RES",NA,NA,NA,NA,"41.3505000000","-112.0680000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074401",NA,"as N","Nitrogen","Total","0.394","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920350-0705-4-C/results/970074401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:12","STORET",7,NA,2022-07-05 20:30:00,NA,"Canal Transport",NA,"16020102",NA,NA,NA,NA,"41.3505000000","-112.0680000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.394,"MG/L","Numeric","Not Reviewed","Uncensored",41.3505,-112.068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920440-0705-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-05,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074432",NA,"as N","Nitrogen","Dissolved","0.703","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920440-0705-2-C/results/970074432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:13","STORET",7,NA,2022-07-05 17:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.703,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920440-0705-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-05,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074436",NA,"as N","Nitrogen","Total","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920440-0705-2-C/results/970074436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:13","STORET",7,NA,2022-07-05 17:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920440-0705-29-C","Sample-Routine","Water",NA,2022-07-05,"10:35:00","MST",NA,NA,NA,"Bottom","2.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074444",NA,"as N","Nitrogen","Dissolved","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920440-0705-29-C/results/970074444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:14","STORET",7,NA,2022-07-05 17:35:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920440-0705-29-C","Sample-Routine","Water",NA,2022-07-05,"10:35:00","MST",NA,NA,NA,"Bottom","2.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920440","WILLARD BAY RES 100M W OF S MARINA HARBOR MOUTH 01",NA,NA,NA,NA,"41.3574400000","-112.0832800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074446",NA,"as N","Nitrogen","Total","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920440-0705-29-C/results/970074446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:14","STORET",7,NA,2022-07-05 17:35:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3574400000","-112.0832800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",41.35744,-112.08328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920450-0705-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-05,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074457",NA,"as N","Nitrogen","Total","0.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920450-0705-2-C/results/970074457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:15","STORET",7,NA,2022-07-05 18:25:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920450-0705-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-05,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074460",NA,"as N","Nitrogen","Dissolved","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920450-0705-2-C/results/970074460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:15","STORET",7,NA,2022-07-05 18:25:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920450-0705-29-C","Sample-Routine","Water",NA,2022-07-05,"11:40:00","MST",NA,NA,NA,"Bottom","2.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074466",NA,"as N","Nitrogen","Total","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920450-0705-29-C/results/970074466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:15","STORET",7,NA,2022-07-05 18:40:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920450-0705-29-C","Sample-Routine","Water",NA,2022-07-05,"11:40:00","MST",NA,NA,NA,"Bottom","2.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920450","WILLARD BAY RES IN S W CORNER .25MI FROM SHORE 02",NA,NA,NA,NA,"41.3513300000","-112.1188300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074469",NA,"as N","Nitrogen","Dissolved","0.513","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920450-0705-29-C/results/970074469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:15","STORET",7,NA,2022-07-05 18:40:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3513300000","-112.1188300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.513,"MG/L","Numeric","Not Reviewed","Uncensored",41.35133,-112.11883,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920460-0705-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-05,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074473",NA,"as N","Nitrogen","Total","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920460-0705-2-C/results/970074473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:16","STORET",7,NA,2022-07-05 19:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920460-0705-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-05,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074478",NA,"as N","Nitrogen","Dissolved","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920460-0705-2-C/results/970074478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:16","STORET",7,NA,2022-07-05 19:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920460-0705-29-C","Sample-Routine","Water",NA,2022-07-05,"12:20:00","MST",NA,NA,NA,"Bottom","3.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074487",NA,"as N","Nitrogen","Dissolved","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920460-0705-29-C/results/970074487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:16","STORET",7,NA,2022-07-05 19:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920460-0705-29-C","Sample-Routine","Water",NA,2022-07-05,"12:20:00","MST",NA,NA,NA,"Bottom","3.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920460","WILLARD BAY RES MIDWAY ALONG NW DIKE 100M OFFSHORE 03",NA,NA,NA,NA,"41.3943800000","-112.0960600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074490",NA,"as N","Nitrogen","Total","0.364","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920460-0705-29-C/results/970074490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:16","STORET",7,NA,2022-07-05 19:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3943800000","-112.0960600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.364,"MG/L","Numeric","Not Reviewed","Uncensored",41.39438,-112.09606,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920470-0705-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-05,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074497",NA,"as N","Nitrogen","Dissolved","0.804","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920470-0705-2-C/results/970074497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:17","STORET",7,NA,2022-07-05 19:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.804,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920470-0705-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-05,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074503",NA,"as N","Nitrogen","Total","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920470-0705-2-C/results/970074503/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:17","STORET",7,NA,2022-07-05 19:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920470-0705-29-C","Sample-Routine","Water",NA,2022-07-05,"12:55:00","MST",NA,NA,NA,"Bottom","2.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074524",NA,"as N","Nitrogen","Dissolved","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920470-0705-29-C/results/970074524/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:18","STORET",7,NA,2022-07-05 19:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4920470-0705-29-C","Sample-Routine","Water",NA,2022-07-05,"12:55:00","MST",NA,NA,NA,"Bottom","2.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920470","WILLARD BAY RES 100M OFF N END OF SE DIKE 04",NA,NA,NA,NA,"41.4068800000","-112.0602200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074531",NA,"as N","Nitrogen","Total","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4920470-0705-29-C/results/970074531/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:18","STORET",7,NA,2022-07-05 19:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.4068800000","-112.0602200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",41.40688,-112.06022,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920973-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074545",NA,"as N","Nitrogen","Dissolved","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920973-0404-4-C/results/970074545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:18","STORET",7,NA,2022-04-04 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920973-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074552",NA,"as N","Nitrogen","Total","0.318","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920973-0404-4-C/results/970074552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:19","STORET",7,NA,2022-04-04 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.318,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920973-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074561",NA,"as N","Nitrogen","Total","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920973-0523-4-C/results/970074561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:19","STORET",7,NA,2022-05-23 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920973-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074563",NA,"as N","Nitrogen","Dissolved","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920973-0523-4-C/results/970074563/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:19","STORET",7,NA,2022-05-23 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920973-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074568",NA,"as N","Nitrogen","Dissolved","0.779","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920973-0613-4-C/results/970074568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:20","STORET",7,NA,2022-06-13 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.779,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920973-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074572",NA,"as N","Nitrogen","Total","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920973-0613-4-C/results/970074572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:20","STORET",7,NA,2022-06-13 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4920973-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"08:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074596",NA,"as N","Nitrogen","Dissolved","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920973-0629-4-C/results/970074596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:21","STORET",7,NA,2022-06-29 15:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4920973-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"08:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074610",NA,"as N","Nitrogen","Total","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4920973-0629-4-C/results/970074610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:21","STORET",7,NA,2022-06-29 15:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920973-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"10:03:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074624",NA,"as N","Nitrogen","Total","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920973-0711-4-C/results/970074624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:22","STORET",7,NA,2022-07-11 17:03:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920973-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"10:03:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074627",NA,"as N","Nitrogen","Dissolved","0.633","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920973-0711-4-C/results/970074627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:22","STORET",7,NA,2022-07-11 17:03:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.633,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920973-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074650",NA,"as N","Nitrogen","Dissolved","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920973-0801-4-C/results/970074650/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:23","STORET",7,NA,2022-08-01 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920973-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074653",NA,"as N","Nitrogen","Total","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920973-0801-4-C/results/970074653/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:23","STORET",7,NA,2022-08-01 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920973-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074658",NA,"as N","Nitrogen","Total","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920973-0913-4-C/results/970074658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:23","STORET",7,NA,2022-09-13 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920973-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920973","Spring Creek at Bybee Dr Xing",NA,NA,NA,NA,"41.1466200000","-111.9090000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074662",NA,"as N","Nitrogen","Dissolved","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920973-0913-4-C/results/970074662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:23","STORET",7,NA,2022-09-13 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1466200000","-111.9090000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",41.14662,-111.909,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920990-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074666",NA,"as N","Nitrogen","Dissolved","0.748","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920990-0405-4-C/results/970074666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:24","STORET",7,NA,2022-04-05 20:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.748,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4920990-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074683",NA,"as N","Nitrogen","Total","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4920990-0405-4-C/results/970074683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:24","STORET",7,NA,2022-04-05 20:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920990-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074697",NA,"as N","Nitrogen","Total","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920990-0524-4-C/results/970074697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:25","STORET",7,NA,2022-05-24 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4920990-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074700",NA,"as N","Nitrogen","Dissolved","0.684","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4920990-0524-4-C/results/970074700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:25","STORET",7,NA,2022-05-24 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.684,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920990-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"16:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074706",NA,"as N","Nitrogen","Dissolved","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920990-0615-4-C/results/970074706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:25","STORET",7,NA,2022-06-15 23:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4920990-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"16:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074723",NA,"as N","Nitrogen","Total","0.661","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4920990-0615-4-C/results/970074723/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:25","STORET",7,NA,2022-06-15 23:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.661,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920990-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074728",NA,"as N","Nitrogen","Total","0.675","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920990-0712-4-C/results/970074728/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:26","STORET",7,NA,2022-07-12 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.675,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4920990-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074732",NA,"as N","Nitrogen","Dissolved","0.907","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4920990-0712-4-C/results/970074732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:26","STORET",7,NA,2022-07-12 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.907,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920990-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074743",NA,"as N","Nitrogen","Dissolved","0.798","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920990-0802-4-C/results/970074743/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:26","STORET",7,NA,2022-08-02 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.798,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4920990-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074755",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4920990-0802-4-C/results/970074755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:27","STORET",7,NA,2022-08-02 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920990-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074764",NA,"as N","Nitrogen","Dissolved","0.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920990-0914-4-C/results/970074764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:27","STORET",7,NA,2022-09-14 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4920990-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4920990","WEBER R AT GATEWAY TO POWER HOUSE 4921000 Duplicate",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074773",NA,"as N","Nitrogen","Total","0.699","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4920990-0914-4-C/results/970074773/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:27","STORET",7,NA,2022-09-14 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.699,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921000-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074783",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921000-0405-4-C/results/970074783/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:28","STORET",7,NA,2022-04-05 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921000-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074789",NA,"as N","Nitrogen","Total","0.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921000-0405-4-C/results/970074789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:28","STORET",7,NA,2022-04-05 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921000-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074801",NA,"as N","Nitrogen","Total","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921000-0524-4-C/results/970074801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:29","STORET",7,NA,2022-05-24 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921000-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074810",NA,"as N","Nitrogen","Dissolved","0.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921000-0524-4-C/results/970074810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:29","STORET",7,NA,2022-05-24 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.94,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921000-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074818",NA,"as N","Nitrogen","Total","0.657","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921000-0615-4-C/results/970074818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:29","STORET",7,NA,2022-06-15 23:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.657,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921000-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074828",NA,"as N","Nitrogen","Dissolved","0.928","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921000-0615-4-C/results/970074828/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:29","STORET",7,NA,2022-06-15 23:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.928,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921000-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074840",NA,"as N","Nitrogen","Total","0.831","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921000-0712-4-C/results/970074840/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:30","STORET",7,NA,2022-07-12 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.831,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921000-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074843",NA,"as N","Nitrogen","Dissolved","0.927","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921000-0712-4-C/results/970074843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:30","STORET",7,NA,2022-07-12 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.927,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921000-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074866",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921000-0802-4-C/results/970074866/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:31","STORET",7,NA,2022-08-02 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921000-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074867",NA,"as N","Nitrogen","Dissolved","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921000-0802-4-C/results/970074867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:31","STORET",7,NA,2022-08-02 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921000-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074879",NA,"as N","Nitrogen","Total","0.799","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921000-0914-4-C/results/970074879/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:32","STORET",7,NA,2022-09-14 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.799,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921000-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074883",NA,"as N","Nitrogen","Dissolved","0.732","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921000-0914-4-C/results/970074883/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:32","STORET",7,NA,2022-09-14 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.732,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921000-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074900",NA,"as N","Nitrogen","Total","0.889","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0920-4-C/results/970074900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:32","STORET",7,NA,2022-09-20 23:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.889,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921000-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074906",NA,"as N","Nitrogen","Dissolved","0.826","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0920-4-C/results/970074906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:33","STORET",7,NA,2022-09-20 23:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.826,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921000-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"15:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074939",NA,"as N","Nitrogen","Total","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0926-4-C/results/970074939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:34","STORET",7,NA,2022-09-26 22:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921000-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"15:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074940",NA,"as N","Nitrogen","Dissolved","0.746","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0926-4-C/results/970074940/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:34","STORET",7,NA,2022-09-26 22:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.746,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921000-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074952",NA,"as N","Nitrogen","Dissolved","0.876","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0928-4-C/results/970074952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:34","STORET",7,NA,2022-09-28 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.876,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921000-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921000","WEBER R AT GATEWAY TO POWER HOUSE",NA,NA,NA,NA,"41.1368900000","-111.8271700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074965",NA,"as N","Nitrogen","Total","0.905","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921000-0928-4-C/results/970074965/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:35","STORET",7,NA,2022-09-28 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1368900000","-111.8271700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.905,"MG/L","Numeric","Not Reviewed","Uncensored",41.13689,-111.82717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921010-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074978",NA,"as N","Nitrogen","Dissolved","41.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921010-0405-4-C/results/970074978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:35","STORET",7,NA,2022-04-05 19:50:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",41.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921010-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074979",NA,"as N","Nitrogen","Total","44.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921010-0405-4-C/results/970074979/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:35","STORET",7,NA,2022-04-05 19:50:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",44.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921010-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074993",NA,"as N","Nitrogen","Dissolved","31.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921010-0524-4-C/results/970074993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:36","STORET",7,NA,2022-05-24 19:20:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",31.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921010-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970074995",NA,"as N","Nitrogen","Total","33.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921010-0524-4-C/results/970074995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:36","STORET",7,NA,2022-05-24 19:20:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",33.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921010-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"15:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075016",NA,"as N","Nitrogen","Total","36.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921010-0615-4-C/results/970075016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:37","STORET",7,NA,2022-06-15 22:35:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",36.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921010-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"15:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075017",NA,"as N","Nitrogen","Dissolved","35.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921010-0615-4-C/results/970075017/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:37","STORET",7,NA,2022-06-15 22:35:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",35.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921010-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075035",NA,"as N","Nitrogen","Dissolved","39.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921010-0712-4-C/results/970075035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:38","STORET",7,NA,2022-07-12 19:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",39.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921010-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075037",NA,"as N","Nitrogen","Total","39.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921010-0712-4-C/results/970075037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:38","STORET",7,NA,2022-07-12 19:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",39.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921010-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075054",NA,"as N","Nitrogen","Total","43.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921010-0802-4-C/results/970075054/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:39","STORET",7,NA,2022-08-02 19:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",43.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921010-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075063",NA,"as N","Nitrogen","Dissolved","40.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921010-0802-4-C/results/970075063/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:39","STORET",7,NA,2022-08-02 19:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",40.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921010-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075076",NA,"as N","Nitrogen","Total","10.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921010-0914-4-C/results/970075076/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:39","STORET",7,NA,2022-09-14 19:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921010-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075077",NA,"as N","Nitrogen","Dissolved","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921010-0914-4-C/results/970075077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:40","STORET",7,NA,2022-09-14 19:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921010-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075084",NA,"as N","Nitrogen","Total","11.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921010-0920-4-C/results/970075084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:40","STORET",7,NA,2022-09-20 22:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921010-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075096",NA,"as N","Nitrogen","Dissolved","10.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921010-0920-4-C/results/970075096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:40","STORET",7,NA,2022-09-20 22:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921010-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075130",NA,"as N","Nitrogen","Total","9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921010-0928-4-C/results/970075130/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:41","STORET",7,NA,2022-09-28 20:15:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921010-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921010","MOUNTAIN GREEN LAGOON EFFLUENT",NA,NA,NA,NA,"41.1392300000","-111.8109000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075140",NA,"as N","Nitrogen","Dissolved","8.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921010-0928-4-C/results/970075140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:41","STORET",7,NA,2022-09-28 20:15:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.1392300000","-111.8109000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.13923,-111.8109,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921113-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075147",NA,"as N","Nitrogen","Dissolved","0.375","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921113-0405-4-C/results/970075147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:42","STORET",7,NA,2022-04-05 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.375,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921113-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075168",NA,"as N","Nitrogen","Total","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921113-0405-4-C/results/970075168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:42","STORET",7,NA,2022-04-05 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921113-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075169",NA,"as N","Nitrogen","Dissolved","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921113-0510-4-C/results/970075169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:42","STORET",7,NA,2022-05-10 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921113-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075177",NA,"as N","Nitrogen","Total","0.428","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921113-0510-4-C/results/970075177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:42","STORET",7,NA,2022-05-10 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.428,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921113-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075179",NA,"as N","Nitrogen","Total","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921113-0614-4-C/results/970075179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:43","STORET",7,NA,2022-06-14 21:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921113-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075197",NA,"as N","Nitrogen","Dissolved","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921113-0614-4-C/results/970075197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:43","STORET",7,NA,2022-06-14 21:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4921113-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075205",NA,"as N","Nitrogen","Total","0.988","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4921113-0630-4-C/results/970075205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:44","STORET",7,NA,2022-06-30 21:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.988,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4921113-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075214",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4921113-0630-4-C/results/970075214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:44","STORET",7,NA,2022-06-30 21:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921113-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075235",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921113-0719-4-C/results/970075235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:44","STORET",7,NA,2022-07-19 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921113-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075240",NA,"as N","Nitrogen","Total","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Relative Percentage difference (RPD) criteria not within quality control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921113-0719-4-C/results/970075240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:44","STORET",7,NA,2022-07-19 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921113-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075254",NA,"as N","Nitrogen","Total","0.565","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921113-0809-4-C/results/970075254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:45","STORET",7,NA,2022-08-09 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.565,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921113-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075266",NA,"as N","Nitrogen","Dissolved","0.477","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921113-0809-4-C/results/970075266/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:45","STORET",7,NA,2022-08-09 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.477,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921113-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075267",NA,"as N","Nitrogen","Total","0.804","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921113-0913-4-C/results/970075267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:46","STORET",7,NA,2022-09-13 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.804,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921113-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921113","South Fork Weber River Ab Weber River (UT09ST-513)",NA,NA,NA,NA,"40.7489700000","-111.2215300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075276",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921113-0913-4-C/results/970075276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:46","STORET",7,NA,2022-09-13 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7489700000","-111.2215300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.74897,-111.22153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921124-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075283",NA,"as N","Nitrogen","Dissolved","0.333","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921124-0510-4-C/results/970075283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:46","STORET",7,NA,2022-05-10 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.333,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921124-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075286",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921124-0510-4-C/results/970075286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:46","STORET",7,NA,2022-05-10 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4921124-0610-4-C","Sample-Routine","Water",NA,2022-06-10,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075292",NA,"as N","Nitrogen","Total","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4921124-0610-4-C/results/970075292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:47","STORET",7,NA,2022-06-10 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921124-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075320",NA,"as N","Nitrogen","Dissolved","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921124-0614-4-C/results/970075320/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:48","STORET",7,NA,2022-06-14 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921124-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075337",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921124-0614-4-C/results/970075337/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:48","STORET",7,NA,2022-06-14 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4921124-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075352",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4921124-0630-4-C/results/970075352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:48","STORET",7,NA,2022-06-30 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4921124-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075360",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4921124-0630-4-C/results/970075360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:49","STORET",7,NA,2022-06-30 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921124-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075377",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921124-0719-4-C/results/970075377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:49","STORET",7,NA,2022-07-19 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921124-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075390",NA,"as N","Nitrogen","Total","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921124-0719-4-C/results/970075390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:50","STORET",7,NA,2022-07-19 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921124-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075407",NA,"as N","Nitrogen","Dissolved","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921124-0809-4-C/results/970075407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:50","STORET",7,NA,2022-08-09 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921124-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075418",NA,"as N","Nitrogen","Total","0.333","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921124-0809-4-C/results/970075418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:51","STORET",7,NA,2022-08-09 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.333,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921124-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075442",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921124-0913-4-C/results/970075442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:51","STORET",7,NA,2022-09-13 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921124-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921124","Smith-Morehouse Creek Ab USFS boundary (UT09ST-558)",NA,NA,NA,NA,"40.7706500000","-111.1047700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075443",NA,"as N","Nitrogen","Total","0.402","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921124-0913-4-C/results/970075443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:51","STORET",7,NA,2022-09-13 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7706500000","-111.1047700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.402,"MG/L","Numeric","Not Reviewed","Uncensored",40.77065,-111.10477,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921133-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075454",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921133-0405-4-C/results/970075454/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:52","STORET",7,NA,2022-04-05 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921133-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075461",NA,"as N","Nitrogen","Total","0.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921133-0405-4-C/results/970075461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:52","STORET",7,NA,2022-04-05 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921133-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075490",NA,"as N","Nitrogen","Dissolved","0.826","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921133-0616-4-C/results/970075490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:53","STORET",7,NA,2022-06-16 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.826,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921133-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075494",NA,"as N","Nitrogen","Total","0.734","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921133-0616-4-C/results/970075494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:53","STORET",7,NA,2022-06-16 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.734,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921133-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075504",NA,"as N","Nitrogen","Total","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921133-0712-4-C/results/970075504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:54","STORET",7,NA,2022-07-12 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921133-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075509",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921133-0712-4-C/results/970075509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:54","STORET",7,NA,2022-07-12 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921133-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075515",NA,"as N","Nitrogen","Total","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921133-0802-4-C/results/970075515/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:54","STORET",7,NA,2022-08-02 20:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921133-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075524",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921133-0802-4-C/results/970075524/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:54","STORET",7,NA,2022-08-02 20:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921133-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075537",NA,"as N","Nitrogen","Dissolved","0.826","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921133-0914-4-C/results/970075537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:55","STORET",7,NA,2022-09-14 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.826,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921133-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075542",NA,"as N","Nitrogen","Total","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921133-0914-4-C/results/970075542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:55","STORET",7,NA,2022-09-14 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921133-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075551",NA,"as N","Nitrogen","Total","0.773","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0920-4-C/results/970075551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:56","STORET",7,NA,2022-09-20 21:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.773,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921133-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075574",NA,"as N","Nitrogen","Dissolved","0.741","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0920-4-C/results/970075574/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:56","STORET",7,NA,2022-09-20 21:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.741,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921133-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075606",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0926-4-C/results/970075606/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:57","STORET",7,NA,2022-09-26 21:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921133-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075610",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0926-4-C/results/970075610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:57","STORET",7,NA,2022-09-26 21:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921133-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075618",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0928-4-C/results/970075618/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:57","STORET",7,NA,2022-09-28 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4921133-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921133","Weber River Bl bridge at Peterson I-84 interchange (UT09ST-567)",NA,NA,NA,NA,"41.1154300000","-111.7670900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075622",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4921133-0928-4-C/results/970075622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:57","STORET",7,NA,2022-09-28 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1154300000","-111.7670900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.11543,-111.76709,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921143-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075634",NA,"as N","Nitrogen","Dissolved","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921143-0406-4-C/results/970075634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:58","STORET",7,NA,2022-04-06 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921143-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075641",NA,"as N","Nitrogen","Total","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921143-0406-4-C/results/970075641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:58","STORET",7,NA,2022-04-06 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921143-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075654",NA,"as N","Nitrogen","Total","0.216","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921143-0525-4-C/results/970075654/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:59","STORET",7,NA,2022-05-25 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.216,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921143-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075658",NA,"as N","Nitrogen","Dissolved","0.633","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921143-0525-4-C/results/970075658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:59","STORET",7,NA,2022-05-25 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.633,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921143-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075668",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921143-0616-4-C/results/970075668/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:59","STORET",7,NA,2022-06-16 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921143-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075671",NA,"as N","Nitrogen","Total","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921143-0616-4-C/results/970075671/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:17:59","STORET",7,NA,2022-06-16 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921143-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075690",NA,"as N","Nitrogen","Total","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921143-0713-4-C/results/970075690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:00","STORET",7,NA,2022-07-13 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4921143-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075691",NA,"as N","Nitrogen","Dissolved","0.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4921143-0713-4-C/results/970075691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:00","STORET",7,NA,2022-07-13 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921143-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075702",NA,"as N","Nitrogen","Dissolved","0.418","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921143-0803-4-C/results/970075702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:01","STORET",7,NA,2022-08-03 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.418,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4921143-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075705",NA,"as N","Nitrogen","Total","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4921143-0803-4-C/results/970075705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:01","STORET",7,NA,2022-08-03 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921143-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075726",NA,"as N","Nitrogen","Total","0.317","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921143-0915-4-C/results/970075726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:02","STORET",7,NA,2022-09-15 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.317,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4921143-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921143","East Canyon Creek Ab SR-66 xing at Porterville (UT09ST-543)",NA,NA,NA,NA,"40.9806700000","-111.6771300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075732",NA,"as N","Nitrogen","Dissolved","0.343","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4921143-0915-4-C/results/970075732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:02","STORET",7,NA,2022-09-15 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9806700000","-111.6771300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.343,"MG/L","Numeric","Not Reviewed","Uncensored",40.98067,-111.67713,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921149-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075745",NA,"as N","Nitrogen","Dissolved","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921149-0405-4-C/results/970075745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:03","STORET",7,NA,2022-04-05 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4921149-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075753",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4921149-0405-4-C/results/970075753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:03","STORET",7,NA,2022-04-05 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921149-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075763",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921149-0511-4-C/results/970075763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:03","STORET",7,NA,2022-05-11 15:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4921149-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075765",NA,"as N","Nitrogen","Total","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4921149-0511-4-C/results/970075765/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:03","STORET",7,NA,2022-05-11 15:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921149-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"08:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075773",NA,"as N","Nitrogen","Total","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921149-0616-4-C/results/970075773/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:04","STORET",7,NA,2022-06-16 15:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4921149-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"08:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4921149","Lost Creek Ab SR-32 at Rockport Reservoir (UT09ST-549)",NA,NA,NA,NA,"40.7544200000","-111.3821300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075777",NA,"as N","Nitrogen","Dissolved","0.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4921149-0616-4-C/results/970075777/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:04","STORET",7,NA,2022-06-16 15:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7544200000","-111.3821300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.75442,-111.38213,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922736-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075806",NA,"as N","Nitrogen","Total","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922736-0404-4-C/results/970075806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:05","STORET",7,NA,2022-04-04 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922736-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075815",NA,"as N","Nitrogen","Dissolved","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922736-0404-4-C/results/970075815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:05","STORET",7,NA,2022-04-04 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922736-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075822",NA,"as N","Nitrogen","Total","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922736-0523-4-C/results/970075822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:05","STORET",7,NA,2022-05-23 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922736-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075824",NA,"as N","Nitrogen","Dissolved","0.475","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922736-0523-4-C/results/970075824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:05","STORET",7,NA,2022-05-23 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.475,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922736-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075839",NA,"as N","Nitrogen","Dissolved","0.988","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922736-0613-4-C/results/970075839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:06","STORET",7,NA,2022-06-13 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.988,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922736-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075852",NA,"as N","Nitrogen","Total","0.992","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922736-0613-4-C/results/970075852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:06","STORET",7,NA,2022-06-13 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.992,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4922736-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075861",NA,"as N","Nitrogen","Total","0.537","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4922736-0629-4-C/results/970075861/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:06","STORET",7,NA,2022-06-29 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.537,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4922736-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075881",NA,"as N","Nitrogen","Dissolved","0.516","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4922736-0629-4-C/results/970075881/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:07","STORET",7,NA,2022-06-29 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.516,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4922736-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075887",NA,"as N","Nitrogen","Dissolved","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922736-0711-4-C/results/970075887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:07","STORET",7,NA,2022-07-11 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4922736-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075893",NA,"as N","Nitrogen","Total","0.788","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922736-0711-4-C/results/970075893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:07","STORET",7,NA,2022-07-11 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.788,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922736-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075896",NA,"as N","Nitrogen","Dissolved","0.713","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922736-0801-4-C/results/970075896/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:08","STORET",7,NA,2022-08-01 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.713,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922736-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075910",NA,"as N","Nitrogen","Total","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922736-0801-4-C/results/970075910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:08","STORET",7,NA,2022-08-01 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4922736-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075921",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922736-0822-4-C/results/970075921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:08","STORET",7,NA,2022-08-22 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4922736-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075931",NA,"as N","Nitrogen","Dissolved","0.991","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922736-0822-4-C/results/970075931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:09","STORET",7,NA,2022-08-22 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.991,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922736-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075946",NA,"as N","Nitrogen","Total","2.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922736-0913-4-C/results/970075946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:09","STORET",7,NA,2022-09-13 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.47,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922736-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075949",NA,"as N","Nitrogen","Dissolved","2.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922736-0913-4-C/results/970075949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:09","STORET",7,NA,2022-09-13 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4922736-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075957",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4922736-0928-4-C/results/970075957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:10","STORET",7,NA,2022-09-28 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4922736-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922736","Sullivan Hollow at about 725 E Patterson Street, Ogden",NA,NA,NA,NA,"41.2089600000","-111.9616500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075980",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4922736-0928-4-C/results/970075980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:10","STORET",7,NA,2022-09-28 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2089600000","-111.9616500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.20896,-111.96165,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922744-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970075993",NA,"as N","Nitrogen","Total","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922744-0404-4-C/results/970075993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:11","STORET",7,NA,2022-04-04 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922744-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076002",NA,"as N","Nitrogen","Dissolved","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922744-0404-4-C/results/970076002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:11","STORET",7,NA,2022-04-04 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922744-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076010",NA,"as N","Nitrogen","Dissolved","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922744-0523-4-C/results/970076010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:11","STORET",7,NA,2022-05-23 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922744-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076013",NA,"as N","Nitrogen","Total","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922744-0523-4-C/results/970076013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:11","STORET",7,NA,2022-05-23 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922744-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076022",NA,"as N","Nitrogen","Dissolved","0.956","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922744-0613-4-C/results/970076022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:12","STORET",7,NA,2022-06-13 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.956,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922744-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076036",NA,"as N","Nitrogen","Total","0.445","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922744-0613-4-C/results/970076036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:12","STORET",7,NA,2022-06-13 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.445,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922744-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076053",NA,"as N","Nitrogen","Total","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922744-0801-4-C/results/970076053/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:13","STORET",7,NA,2022-08-01 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922744-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076069",NA,"as N","Nitrogen","Dissolved","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922744-0801-4-C/results/970076069/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:13","STORET",7,NA,2022-08-01 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4922744-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076076",NA,"as N","Nitrogen","Total","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922744-0822-4-C/results/970076076/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:14","STORET",7,NA,2022-08-22 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4922744-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076088",NA,"as N","Nitrogen","Dissolved","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922744-0822-4-C/results/970076088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:14","STORET",7,NA,2022-08-22 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922744-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076100",NA,"as N","Nitrogen","Dissolved","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922744-0913-4-C/results/970076100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:14","STORET",7,NA,2022-09-13 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922744-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076104",NA,"as N","Nitrogen","Total","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922744-0913-4-C/results/970076104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:14","STORET",7,NA,2022-09-13 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4922744-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076119",NA,"as N","Nitrogen","Dissolved","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4922744-0928-4-C/results/970076119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:15","STORET",7,NA,2022-09-28 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4922744-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922744","Strongs Canyon Creek at Bonneville Shoreline Trail Xing",NA,NA,NA,NA,"41.1972300000","-111.9284800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076125",NA,"as N","Nitrogen","Total","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4922744-0928-4-C/results/970076125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:15","STORET",7,NA,2022-09-28 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1972300000","-111.9284800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",41.19723,-111.92848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922756-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076133",NA,"as N","Nitrogen","Dissolved","0.947","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922756-0404-4-C/results/970076133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:15","STORET",7,NA,2022-04-04 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.947,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922756-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076136",NA,"as N","Nitrogen","Total","0.849","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922756-0404-4-C/results/970076136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:15","STORET",7,NA,2022-04-04 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.849,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922756-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"10:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076164",NA,"as N","Nitrogen","Total","0.769","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922756-0523-4-C/results/970076164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:16","STORET",7,NA,2022-05-23 17:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.769,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922756-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"10:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076167",NA,"as N","Nitrogen","Dissolved","0.811","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922756-0523-4-C/results/970076167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:16","STORET",7,NA,2022-05-23 17:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.811,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922756-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076185",NA,"as N","Nitrogen","Dissolved","2.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922756-0613-4-C/results/970076185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:17","STORET",7,NA,2022-06-13 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922756-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076193",NA,"as N","Nitrogen","Total","2.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922756-0613-4-C/results/970076193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:17","STORET",7,NA,2022-06-13 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.76,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4922756-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076194",NA,"as N","Nitrogen","Total","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922756-0711-4-C/results/970076194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:17","STORET",7,NA,2022-07-11 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4922756-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076202",NA,"as N","Nitrogen","Dissolved","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922756-0711-4-C/results/970076202/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:17","STORET",7,NA,2022-07-11 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922756-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076213",NA,"as N","Nitrogen","Dissolved","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922756-0801-4-C/results/970076213/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:18","STORET",7,NA,2022-08-01 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922756-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076214",NA,"as N","Nitrogen","Total","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922756-0801-4-C/results/970076214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:18","STORET",7,NA,2022-08-01 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922756-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076231",NA,"as N","Nitrogen","Total","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922756-0913-4-C/results/970076231/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:19","STORET",7,NA,2022-09-13 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922756-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922756","Burch Creek at Burch Creek Dr Xing",NA,NA,NA,NA,"41.1779100000","-111.9670000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076234",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922756-0913-4-C/results/970076234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:19","STORET",7,NA,2022-09-13 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1779100000","-111.9670000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.17791,-111.967,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922760-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076251",NA,"as N","Nitrogen","Total","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922760-0404-4-C/results/970076251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:19","STORET",7,NA,2022-04-04 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922760-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076252",NA,"as N","Nitrogen","Dissolved","0.684","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922760-0404-4-C/results/970076252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:19","STORET",7,NA,2022-04-04 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.684,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922760-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"10:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076266",NA,"as N","Nitrogen","Total","0.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922760-0523-4-C/results/970076266/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:20","STORET",7,NA,2022-05-23 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.5,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922760-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"10:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076270",NA,"as N","Nitrogen","Dissolved","0.501","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922760-0523-4-C/results/970076270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:20","STORET",7,NA,2022-05-23 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.501,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922760-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076277",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922760-0613-4-C/results/970076277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:20","STORET",7,NA,2022-06-13 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922760-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076287",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922760-0613-4-C/results/970076287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:21","STORET",7,NA,2022-06-13 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4922760-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076304",NA,"as N","Nitrogen","Dissolved","0.755","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4922760-0629-4-C/results/970076304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:21","STORET",7,NA,2022-06-29 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.755,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4922760-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076305",NA,"as N","Nitrogen","Total","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4922760-0629-4-C/results/970076305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:21","STORET",7,NA,2022-06-29 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4922760-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076331",NA,"as N","Nitrogen","Total","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922760-0711-4-C/results/970076331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:22","STORET",7,NA,2022-07-11 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4922760-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076332",NA,"as N","Nitrogen","Dissolved","0.855","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922760-0711-4-C/results/970076332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:22","STORET",7,NA,2022-07-11 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.855,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922760-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076347",NA,"as N","Nitrogen","Total","0.526","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922760-0801-4-C/results/970076347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:23","STORET",7,NA,2022-08-01 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.526,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922760-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076357",NA,"as N","Nitrogen","Dissolved","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922760-0801-4-C/results/970076357/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:23","STORET",7,NA,2022-08-01 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4922760-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076368",NA,"as N","Nitrogen","Total","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922760-0822-4-C/results/970076368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:23","STORET",7,NA,2022-08-22 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4922760-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076373",NA,"as N","Nitrogen","Dissolved","0.514","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4922760-0822-4-C/results/970076373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:23","STORET",7,NA,2022-08-22 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.514,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922760-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076395",NA,"as N","Nitrogen","Total","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922760-0913-4-C/results/970076395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:24","STORET",7,NA,2022-09-13 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922760-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922760","Burch Creek at Old Post Rd Xing",NA,NA,NA,NA,"41.1663400000","-111.9400000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076396",NA,"as N","Nitrogen","Dissolved","0.594","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922760-0913-4-C/results/970076396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:24","STORET",7,NA,2022-09-13 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1663400000","-111.9400000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.594,"MG/L","Numeric","Not Reviewed","Uncensored",41.16634,-111.94,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922990-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076403",NA,"as N","Nitrogen","Total","0.741","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922990-0404-4-C/results/970076403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:25","STORET",7,NA,2022-04-04 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.741,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4922990-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076412",NA,"as N","Nitrogen","Dissolved","0.693","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4922990-0404-4-C/results/970076412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:25","STORET",7,NA,2022-04-04 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.693,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922990-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076428",NA,"as N","Nitrogen","Total","0.577","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922990-0523-4-C/results/970076428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:25","STORET",7,NA,2022-05-23 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.577,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4922990-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076432",NA,"as N","Nitrogen","Dissolved","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4922990-0523-4-C/results/970076432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:25","STORET",7,NA,2022-05-23 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922990-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076447",NA,"as N","Nitrogen","Total","0.591","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922990-0615-4-C/results/970076447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:26","STORET",7,NA,2022-06-15 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.591,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4922990-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076456",NA,"as N","Nitrogen","Dissolved","0.662","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4922990-0615-4-C/results/970076456/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:26","STORET",7,NA,2022-06-15 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.662,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4922990-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076462",NA,"as N","Nitrogen","Dissolved","0.626","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922990-0711-4-C/results/970076462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:26","STORET",7,NA,2022-07-11 20:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.626,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4922990-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076466",NA,"as N","Nitrogen","Total","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4922990-0711-4-C/results/970076466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:26","STORET",7,NA,2022-07-11 20:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922990-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076477",NA,"as N","Nitrogen","Dissolved","0.719","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922990-0801-4-C/results/970076477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:27","STORET",7,NA,2022-08-01 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.719,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4922990-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076487",NA,"as N","Nitrogen","Total","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4922990-0801-4-C/results/970076487/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:27","STORET",7,NA,2022-08-01 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922990-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076502",NA,"as N","Nitrogen","Dissolved","0.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922990-0913-4-C/results/970076502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:28","STORET",7,NA,2022-09-13 21:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4922990-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4922990","WEBER R AB CNFL/ OGDEN R",NA,NA,NA,NA,"41.2288300000","-111.9991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076507",NA,"as N","Nitrogen","Total","0.594","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4922990-0913-4-C/results/970076507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:28","STORET",7,NA,2022-09-13 21:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2288300000","-111.9991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.594,"MG/L","Numeric","Not Reviewed","Uncensored",41.22883,-111.99911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923010-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076511",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923010-0404-4-C/results/970076511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:28","STORET",7,NA,2022-04-04 21:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923010-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076523",NA,"as N","Nitrogen","Dissolved","0.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923010-0404-4-C/results/970076523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:29","STORET",7,NA,2022-04-04 21:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923010-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076535",NA,"as N","Nitrogen","Total","0.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923010-0523-4-C/results/970076535/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:30","STORET",7,NA,2022-05-23 21:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923010-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076537",NA,"as N","Nitrogen","Dissolved","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923010-0523-4-C/results/970076537/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:30","STORET",7,NA,2022-05-23 21:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923010-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076550",NA,"as N","Nitrogen","Total","0.488","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923010-0615-4-C/results/970076550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:30","STORET",7,NA,2022-06-15 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.488,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923010-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076554",NA,"as N","Nitrogen","Dissolved","0.541","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923010-0615-4-C/results/970076554/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:31","STORET",7,NA,2022-06-15 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.541,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923010-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076574",NA,"as N","Nitrogen","Total","0.587","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923010-0711-4-C/results/970076574/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:32","STORET",7,NA,2022-07-11 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.587,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923010-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076577",NA,"as N","Nitrogen","Dissolved","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923010-0711-4-C/results/970076577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:32","STORET",7,NA,2022-07-11 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923010-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076589",NA,"as N","Nitrogen","Dissolved","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923010-0801-4-C/results/970076589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:32","STORET",7,NA,2022-08-01 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923010-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076592",NA,"as N","Nitrogen","Total","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923010-0801-4-C/results/970076592/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:33","STORET",7,NA,2022-08-01 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4923010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076607",NA,"as N","Nitrogen","Total","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923010-0913-4-C/results/970076607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:33","STORET",7,NA,2022-09-13 21:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4923010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923010","OGDEN R AB CNFL / WEBER R",NA,NA,NA,NA,"41.2357900000","-112.0012500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076611",NA,"as N","Nitrogen","Dissolved","0.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923010-0913-4-C/results/970076611/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:33","STORET",7,NA,2022-09-13 21:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2357900000","-112.0012500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.23579,-112.00125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923177-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076696",NA,"as N","Nitrogen","Dissolved","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923177-0404-4-C/results/970076696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:37","STORET",7,NA,2022-04-04 21:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923177-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076698",NA,"as N","Nitrogen","Total","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923177-0404-4-C/results/970076698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:37","STORET",7,NA,2022-04-04 21:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923177-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076706",NA,"as N","Nitrogen","Dissolved","0.661","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923177-0523-4-C/results/970076706/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:38","STORET",7,NA,2022-05-23 21:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.661,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923177-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076712",NA,"as N","Nitrogen","Total","0.587","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923177-0523-4-C/results/970076712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:38","STORET",7,NA,2022-05-23 21:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.587,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923177-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076730",NA,"as N","Nitrogen","Total","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923177-0615-4-C/results/970076730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:39","STORET",7,NA,2022-06-15 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923177-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076741",NA,"as N","Nitrogen","Dissolved","1.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923177-0615-4-C/results/970076741/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:39","STORET",7,NA,2022-06-15 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"11999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923177-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076746",NA,"as N","Nitrogen","Total","0.606","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923177-0711-4-C/results/970076746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:39","STORET",7,NA,2022-07-11 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.606,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923177-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076750",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923177-0711-4-C/results/970076750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:39","STORET",7,NA,2022-07-11 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923177-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076753",NA,"as N","Nitrogen","Dissolved","0.371","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923177-0801-4-C/results/970076753/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:40","STORET",7,NA,2022-08-01 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.371,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923177-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076761",NA,"as N","Nitrogen","Total","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923177-0801-4-C/results/970076761/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:40","STORET",7,NA,2022-08-01 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4923177-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076779",NA,"as N","Nitrogen","Dissolved","0.606","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923177-0913-4-C/results/970076779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:41","STORET",7,NA,2022-09-13 21:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.606,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4923177-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923177","Ogden River at Wall Avenue crossing",NA,NA,NA,NA,"41.2342100000","-111.9783800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076785",NA,"as N","Nitrogen","Total","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923177-0913-4-C/results/970076785/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:41","STORET",7,NA,2022-09-13 21:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2342100000","-111.9783800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",41.23421,-111.97838,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923200-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076798",NA,"as N","Nitrogen","Dissolved","0.236","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923200-0405-4-C/results/970076798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:42","STORET",7,NA,2022-04-05 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.236,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923200-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076811",NA,"as N","Nitrogen","Total","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923200-0405-4-C/results/970076811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:42","STORET",7,NA,2022-04-05 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923200-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076818",NA,"as N","Nitrogen","Total","0.952","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923200-0524-4-C/results/970076818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:43","STORET",7,NA,2022-05-24 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.952,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923200-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076819",NA,"as N","Nitrogen","Dissolved","0.864","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923200-0524-4-C/results/970076819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:43","STORET",7,NA,2022-05-24 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.864,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923200-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076845",NA,"as N","Nitrogen","Dissolved","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923200-0615-4-C/results/970076845/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:44","STORET",7,NA,2022-06-15 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923200-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076846",NA,"as N","Nitrogen","Total","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923200-0615-4-C/results/970076846/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:44","STORET",7,NA,2022-06-15 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923200-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076857",NA,"as N","Nitrogen","Total","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923200-0712-4-C/results/970076857/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:45","STORET",7,NA,2022-07-12 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923200-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076859",NA,"as N","Nitrogen","Dissolved","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923200-0712-4-C/results/970076859/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:45","STORET",7,NA,2022-07-12 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923200-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076866",NA,"as N","Nitrogen","Dissolved","0.336","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923200-0802-4-C/results/970076866/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:45","STORET",7,NA,2022-08-02 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.336,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923200-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076872",NA,"as N","Nitrogen","Total","0.769","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923200-0802-4-C/results/970076872/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:45","STORET",7,NA,2022-08-02 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.769,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4923200-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076886",NA,"as N","Nitrogen","Dissolved","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923200-0914-4-C/results/970076886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:46","STORET",7,NA,2022-09-14 15:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4923200-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923200","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076893",NA,"as N","Nitrogen","Total","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923200-0914-4-C/results/970076893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:46","STORET",7,NA,2022-09-14 15:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923205-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076897",NA,"as N","Nitrogen","Dissolved","0.236","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923205-0405-4-C/results/970076897/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:47","STORET",7,NA,2022-04-05 16:20:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.236,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923205-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076910",NA,"as N","Nitrogen","Total","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923205-0405-4-C/results/970076910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:47","STORET",7,NA,2022-04-05 16:20:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923205-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076923",NA,"as N","Nitrogen","Dissolved","0.606","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923205-0524-4-C/results/970076923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:48","STORET",7,NA,2022-05-24 16:20:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.606,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923205-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076928",NA,"as N","Nitrogen","Total","0.526","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923205-0524-4-C/results/970076928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:48","STORET",7,NA,2022-05-24 16:20:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.526,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923205-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076944",NA,"as N","Nitrogen","Total","0.413","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923205-0615-4-C/results/970076944/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:49","STORET",7,NA,2022-06-15 17:30:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.413,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923205-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076956",NA,"as N","Nitrogen","Dissolved","0.463","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923205-0615-4-C/results/970076956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:49","STORET",7,NA,2022-06-15 17:30:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.463,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923205-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076958",NA,"as N","Nitrogen","Total","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923205-0712-4-C/results/970076958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:49","STORET",7,NA,2022-07-12 16:10:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923205-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076960",NA,"as N","Nitrogen","Dissolved","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923205-0712-4-C/results/970076960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:49","STORET",7,NA,2022-07-12 16:10:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923205-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076978",NA,"as N","Nitrogen","Total","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923205-0802-4-C/results/970076978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:50","STORET",7,NA,2022-08-02 16:00:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923205-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076983",NA,"as N","Nitrogen","Dissolved","0.395","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923205-0802-4-C/results/970076983/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:50","STORET",7,NA,2022-08-02 16:00:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.395,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4923205-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970076995",NA,"as N","Nitrogen","Total","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923205-0914-4-C/results/970076995/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:51","STORET",7,NA,2022-09-14 16:00:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4923205-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923205","OGDEN R AT MOUTH OF CANYON AT VALLEY DRIVE XING Replicate of 4923200",NA,NA,NA,NA,"41.2366300000","-111.9291200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077001",NA,"as N","Nitrogen","Dissolved","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4923205-0914-4-C/results/970077001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:51","STORET",7,NA,2022-09-14 16:00:00,NA,"River/Stream","Replicate of 4923200","16020102",NA,NA,NA,NA,"41.2366300000","-111.9291200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",41.23663,-111.92912,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923810-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-09,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077010",NA,"as N","Nitrogen","Dissolved","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-2-C/results/970077010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:52","STORET",7,NA,2022-06-09 20:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923810-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-09,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077013",NA,"as N","Nitrogen","Total","0.662","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-2-C/results/970077013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:52","STORET",7,NA,2022-06-09 20:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.662,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923810-0609-23-C","Sample-Routine","Water",NA,2022-06-09,"14:00:00","MST",NA,NA,NA,"AboveThermoclin","2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077019",NA,"as N","Nitrogen","Total","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-23-C/results/970077019/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:52","STORET",7,NA,2022-06-09 21:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923810-0609-23-C","Sample-Routine","Water",NA,2022-06-09,"14:00:00","MST",NA,NA,NA,"AboveThermoclin","2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077021",NA,"as N","Nitrogen","Dissolved","1.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-23-C/results/970077021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:52","STORET",7,NA,2022-06-09 21:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.68,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923810-0609-27-C","Sample-Routine","Water",NA,2022-06-09,"14:05:00","MST",NA,NA,NA,"BelowThermoclin","7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077028",NA,"as N","Nitrogen","Dissolved","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-27-C/results/970077028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:53","STORET",7,NA,2022-06-09 21:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923810-0609-27-C","Sample-Routine","Water",NA,2022-06-09,"14:05:00","MST",NA,NA,NA,"BelowThermoclin","7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077032",NA,"as N","Nitrogen","Total","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-27-C/results/970077032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:53","STORET",7,NA,2022-06-09 21:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923810-0609-29-C","Sample-Routine","Water",NA,2022-06-09,"14:10:00","MST",NA,NA,NA,"Bottom","18.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077037",NA,"as N","Nitrogen","Dissolved","0.702","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-29-C/results/970077037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:53","STORET",7,NA,2022-06-09 21:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.702,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",18.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923810-0609-29-C","Sample-Routine","Water",NA,2022-06-09,"14:10:00","MST",NA,NA,NA,"Bottom","18.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077045",NA,"as N","Nitrogen","Total","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923810-0609-29-C/results/970077045/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:54","STORET",7,NA,2022-06-09 21:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",18.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923810-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077062",NA,"as N","Nitrogen","Total","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923810-0908-2-C/results/970077062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:54","STORET",7,NA,2022-09-08 16:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923810-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077064",NA,"as N","Nitrogen","Dissolved","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923810-0908-2-C/results/970077064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:54","STORET",7,NA,2022-09-08 16:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923810-0908-29-C","Sample-Routine","Water",NA,2022-09-08,"10:10:00","MST",NA,NA,NA,"Bottom","13.82","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077091",NA,"as N","Nitrogen","Total","0.276","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923810-0908-29-C/results/970077091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:55","STORET",7,NA,2022-09-08 17:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.276,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13.82,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923810-0908-29-C","Sample-Routine","Water",NA,2022-09-08,"10:10:00","MST",NA,NA,NA,"Bottom","13.82","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923810","PINEVIEW RES AB DAM 01",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077096",NA,"as N","Nitrogen","Dissolved","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923810-0908-29-C/results/970077096/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:56","STORET",7,NA,2022-09-08 17:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13.82,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923811-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923811","PINEVIEW RES AB DAM 01 Replicate of 4923810",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077098",NA,"as N","Nitrogen","Total","0.242","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923811-0908-2-C/results/970077098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:56","STORET",7,NA,2022-09-08 17:25:00,NA,"Lake","Replicate of 4923810","16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.242,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923811-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923811","PINEVIEW RES AB DAM 01 Replicate of 4923810",NA,NA,NA,NA,"41.2552200000","-111.8399400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077110",NA,"as N","Nitrogen","Dissolved","0.668","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923811-0908-2-C/results/970077110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:56","STORET",7,NA,2022-09-08 17:25:00,NA,"Lake","Replicate of 4923810","16020102",NA,NA,NA,NA,"41.2552200000","-111.8399400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.668,"MG/L","Numeric","Not Reviewed","Uncensored",41.25522,-111.83994,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923820-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-09,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923820","PINEVIEW RES S ARM 02",NA,NA,NA,NA,"41.2577200000","-111.7960500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077111",NA,"as N","Nitrogen","Total","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923820-0609-2-C/results/970077111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:57","STORET",7,NA,2022-06-09 21:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2577200000","-111.7960500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",41.25772,-111.79605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923820-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-09,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923820","PINEVIEW RES S ARM 02",NA,NA,NA,NA,"41.2577200000","-111.7960500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077118",NA,"as N","Nitrogen","Dissolved","0.579","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923820-0609-2-C/results/970077118/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:57","STORET",7,NA,2022-06-09 21:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2577200000","-111.7960500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.579,"MG/L","Numeric","Not Reviewed","Uncensored",41.25772,-111.79605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923820-0609-29-C","Sample-Routine","Water",NA,2022-06-09,"14:50:00","MST",NA,NA,NA,"Bottom","9.98","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923820","PINEVIEW RES S ARM 02",NA,NA,NA,NA,"41.2577200000","-111.7960500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077125",NA,"as N","Nitrogen","Total","0.489","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923820-0609-29-C/results/970077125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:58","STORET",7,NA,2022-06-09 21:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2577200000","-111.7960500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.489,"MG/L","Numeric","Not Reviewed","Uncensored",41.25772,-111.79605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",9.98,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923820-0609-29-C","Sample-Routine","Water",NA,2022-06-09,"14:50:00","MST",NA,NA,NA,"Bottom","9.98","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923820","PINEVIEW RES S ARM 02",NA,NA,NA,NA,"41.2577200000","-111.7960500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077126",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923820-0609-29-C/results/970077126/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:58","STORET",7,NA,2022-06-09 21:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2577200000","-111.7960500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.25772,-111.79605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",9.98,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923820-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923820","PINEVIEW RES S ARM 02",NA,NA,NA,NA,"41.2577200000","-111.7960500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077139",NA,"as N","Nitrogen","Dissolved","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923820-0908-2-C/results/970077139/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:58","STORET",7,NA,2022-09-08 17:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2577200000","-111.7960500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",41.25772,-111.79605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923820-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"10:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923820","PINEVIEW RES S ARM 02",NA,NA,NA,NA,"41.2577200000","-111.7960500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077141",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923820-0908-2-C/results/970077141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:58","STORET",7,NA,2022-09-08 17:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2577200000","-111.7960500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.25772,-111.79605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923820-0908-29-C","Sample-Routine","Water",NA,2022-09-08,"11:10:00","MST",NA,NA,NA,"Bottom","7.4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923820","PINEVIEW RES S ARM 02",NA,NA,NA,NA,"41.2577200000","-111.7960500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077151",NA,"as N","Nitrogen","Dissolved","0.398","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923820-0908-29-C/results/970077151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:59","STORET",7,NA,2022-09-08 18:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2577200000","-111.7960500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.398,"MG/L","Numeric","Not Reviewed","Uncensored",41.25772,-111.79605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",7.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923820-0908-29-C","Sample-Routine","Water",NA,2022-09-08,"11:10:00","MST",NA,NA,NA,"Bottom","7.4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923820","PINEVIEW RES S ARM 02",NA,NA,NA,NA,"41.2577200000","-111.7960500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077152",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923820-0908-29-C/results/970077152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:18:59","STORET",7,NA,2022-09-08 18:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2577200000","-111.7960500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.25772,-111.79605,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",7.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923830-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-09,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923830","PINEVIEW RES MIDDLE ARM 03",NA,NA,NA,NA,"41.2713300000","-111.7954900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077154",NA,"as N","Nitrogen","Dissolved","0.704","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923830-0609-2-C/results/970077154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:00","STORET",7,NA,2022-06-09 22:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2713300000","-111.7954900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.704,"MG/L","Numeric","Not Reviewed","Uncensored",41.27133,-111.79549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923830-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-09,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923830","PINEVIEW RES MIDDLE ARM 03",NA,NA,NA,NA,"41.2713300000","-111.7954900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077159",NA,"as N","Nitrogen","Total","0.405","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923830-0609-2-C/results/970077159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:00","STORET",7,NA,2022-06-09 22:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2713300000","-111.7954900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.405,"MG/L","Numeric","Not Reviewed","Uncensored",41.27133,-111.79549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923830-0609-29-C","Sample-Routine","Water",NA,2022-06-09,"15:30:00","MST",NA,NA,NA,"Bottom","12.03","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923830","PINEVIEW RES MIDDLE ARM 03",NA,NA,NA,NA,"41.2713300000","-111.7954900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077168",NA,"as N","Nitrogen","Dissolved","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923830-0609-29-C/results/970077168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:01","STORET",7,NA,2022-06-09 22:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2713300000","-111.7954900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.27133,-111.79549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",12.03,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923830-0609-29-C","Sample-Routine","Water",NA,2022-06-09,"15:30:00","MST",NA,NA,NA,"Bottom","12.03","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923830","PINEVIEW RES MIDDLE ARM 03",NA,NA,NA,NA,"41.2713300000","-111.7954900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077169",NA,"as N","Nitrogen","Total","0.552","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923830-0609-29-C/results/970077169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:01","STORET",7,NA,2022-06-09 22:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2713300000","-111.7954900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.552,"MG/L","Numeric","Not Reviewed","Uncensored",41.27133,-111.79549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",12.03,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923830-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923830","PINEVIEW RES MIDDLE ARM 03",NA,NA,NA,NA,"41.2713300000","-111.7954900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077175",NA,"as N","Nitrogen","Dissolved","0.883","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923830-0908-2-C/results/970077175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:01","STORET",7,NA,2022-09-08 18:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2713300000","-111.7954900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.883,"MG/L","Numeric","Not Reviewed","Uncensored",41.27133,-111.79549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923830-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923830","PINEVIEW RES MIDDLE ARM 03",NA,NA,NA,NA,"41.2713300000","-111.7954900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077183",NA,"as N","Nitrogen","Total","0.304","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923830-0908-2-C/results/970077183/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:01","STORET",7,NA,2022-09-08 18:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2713300000","-111.7954900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.304,"MG/L","Numeric","Not Reviewed","Uncensored",41.27133,-111.79549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923830-0908-29-C","Sample-Routine","Water",NA,2022-09-08,"11:45:00","MST",NA,NA,NA,"Bottom","8.51","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923830","PINEVIEW RES MIDDLE ARM 03",NA,NA,NA,NA,"41.2713300000","-111.7954900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077192",NA,"as N","Nitrogen","Total","0.355","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923830-0908-29-C/results/970077192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:02","STORET",7,NA,2022-09-08 18:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2713300000","-111.7954900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.355,"MG/L","Numeric","Not Reviewed","Uncensored",41.27133,-111.79549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",8.51,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923830-0908-29-C","Sample-Routine","Water",NA,2022-09-08,"11:45:00","MST",NA,NA,NA,"Bottom","8.51","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923830","PINEVIEW RES MIDDLE ARM 03",NA,NA,NA,NA,"41.2713300000","-111.7954900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077193",NA,"as N","Nitrogen","Dissolved","0.726","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923830-0908-29-C/results/970077193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:02","STORET",7,NA,2022-09-08 18:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2713300000","-111.7954900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.726,"MG/L","Numeric","Not Reviewed","Uncensored",41.27133,-111.79549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",8.51,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923840-0609-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-09,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923840","PINEVIEW RES N ARM 04",NA,NA,NA,NA,"41.2757800000","-111.8152200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077199",NA,"as N","Nitrogen","Total","0.508","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923840-0609-2-C/results/970077199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:03","STORET",7,NA,2022-06-09 22:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2757800000","-111.8152200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.508,"MG/L","Numeric","Not Reviewed","Uncensored",41.27578,-111.81522,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923840-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923840","PINEVIEW RES N ARM 04",NA,NA,NA,NA,"41.2757800000","-111.8152200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077207",NA,"as N","Nitrogen","Total","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923840-0908-2-C/results/970077207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:03","STORET",7,NA,2022-09-08 18:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2757800000","-111.8152200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",41.27578,-111.81522,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923840-0908-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-08,"11:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923840","PINEVIEW RES N ARM 04",NA,NA,NA,NA,"41.2757800000","-111.8152200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077214",NA,"as N","Nitrogen","Dissolved","0.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923840-0908-2-C/results/970077214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:03","STORET",7,NA,2022-09-08 18:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2757800000","-111.8152200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.27578,-111.81522,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923840-0908-29-C","Sample-Routine","Water",NA,2022-09-08,"12:10:00","MST",NA,NA,NA,"Bottom","6.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923840","PINEVIEW RES N ARM 04",NA,NA,NA,NA,"41.2757800000","-111.8152200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077218",NA,"as N","Nitrogen","Total","0.295","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923840-0908-29-C/results/970077218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:04","STORET",7,NA,2022-09-08 19:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2757800000","-111.8152200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.295,"MG/L","Numeric","Not Reviewed","Uncensored",41.27578,-111.81522,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4923840-0908-29-C","Sample-Routine","Water",NA,2022-09-08,"12:10:00","MST",NA,NA,NA,"Bottom","6.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923840","PINEVIEW RES N ARM 04",NA,NA,NA,NA,"41.2757800000","-111.8152200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077221",NA,"as N","Nitrogen","Dissolved","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4923840-0908-29-C/results/970077221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:04","STORET",7,NA,2022-09-08 19:10:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2757800000","-111.8152200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",41.27578,-111.81522,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",6.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923960-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077227",NA,"as N","Nitrogen","Total","1.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923960-0405-4-C/results/970077227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:05","STORET",7,NA,2022-04-05 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4923960-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077242",NA,"as N","Nitrogen","Dissolved","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4923960-0405-4-C/results/970077242/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:05","STORET",7,NA,2022-04-05 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923960-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077256",NA,"as N","Nitrogen","Dissolved","0.914","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923960-0524-4-C/results/970077256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:06","STORET",7,NA,2022-05-24 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.914,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4923960-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077258",NA,"as N","Nitrogen","Total","0.822","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4923960-0524-4-C/results/970077258/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:06","STORET",7,NA,2022-05-24 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.822,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923960-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:07:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077268",NA,"as N","Nitrogen","Total","0.798","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923960-0609-4-C/results/970077268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:06","STORET",7,NA,2022-06-09 19:07:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.798,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4923960-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:07:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077276",NA,"as N","Nitrogen","Dissolved","0.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4923960-0609-4-C/results/970077276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:06","STORET",7,NA,2022-06-09 19:07:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.95,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923960-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077301",NA,"as N","Nitrogen","Total","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923960-0615-4-C/results/970077301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:07","STORET",7,NA,2022-06-15 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4923960-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077303",NA,"as N","Nitrogen","Dissolved","0.721","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4923960-0615-4-C/results/970077303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:07","STORET",7,NA,2022-06-15 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.721,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4923960-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077319",NA,"as N","Nitrogen","Total","0.726","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4923960-0629-4-C/results/970077319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:07","STORET",7,NA,2022-06-29 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.726,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4923960-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077343",NA,"as N","Nitrogen","Dissolved","0.718","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4923960-0629-4-C/results/970077343/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:08","STORET",7,NA,2022-06-29 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.718,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923960-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077345",NA,"as N","Nitrogen","Total","0.661","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923960-0712-4-C/results/970077345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:08","STORET",7,NA,2022-07-12 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.661,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4923960-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077347",NA,"as N","Nitrogen","Dissolved","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4923960-0712-4-C/results/970077347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:08","STORET",7,NA,2022-07-12 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923960-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077356",NA,"as N","Nitrogen","Dissolved","0.708","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923960-0802-4-C/results/970077356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:09","STORET",7,NA,2022-08-02 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.708,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4923960-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077360",NA,"as N","Nitrogen","Total","0.523","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4923960-0802-4-C/results/970077360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:09","STORET",7,NA,2022-08-02 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.523,"MG/L","Numeric","Not Reviewed","Uncensored",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4923960-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077382","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4923960-0822-4-C/results/970077382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:09","STORET",7,NA,2022-08-22 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4923960-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4923960","N FK OGDEN R AB PINEVIEW RES AT U166 XING",NA,NA,NA,NA,"41.2955700000","-111.8284200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077385","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4923960-0822-4-C/results/970077385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:09","STORET",7,NA,2022-08-22 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2955700000","-111.8284200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.29557,-111.82842,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924590-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077413",NA,"as N","Nitrogen","Dissolved","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924590-0405-4-C/results/970077413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:10","STORET",7,NA,2022-04-05 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924590-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077424",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924590-0405-4-C/results/970077424/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:10","STORET",7,NA,2022-04-05 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924590-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077437",NA,"as N","Nitrogen","Dissolved","0.619","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924590-0524-4-C/results/970077437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:10","STORET",7,NA,2022-05-24 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.619,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924590-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077438",NA,"as N","Nitrogen","Total","0.498","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924590-0524-4-C/results/970077438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:10","STORET",7,NA,2022-05-24 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.498,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924590-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"11:09:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077450",NA,"as N","Nitrogen","Total","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924590-0615-4-C/results/970077450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:11","STORET",7,NA,2022-06-15 18:09:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924590-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"11:09:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077457",NA,"as N","Nitrogen","Dissolved","0.524","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924590-0615-4-C/results/970077457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:11","STORET",7,NA,2022-06-15 18:09:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.524,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924590-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077471",NA,"as N","Nitrogen","Total","0.35","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924590-0712-4-C/results/970077471/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:12","STORET",7,NA,2022-07-12 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.35,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924590-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077472",NA,"as N","Nitrogen","Dissolved","0.924","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924590-0712-4-C/results/970077472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:12","STORET",7,NA,2022-07-12 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.924,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924590-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077485",NA,"as N","Nitrogen","Total","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924590-0802-4-C/results/970077485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:12","STORET",7,NA,2022-08-02 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924590-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077502",NA,"as N","Nitrogen","Dissolved","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924590-0802-4-C/results/970077502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:12","STORET",7,NA,2022-08-02 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924590-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077512",NA,"as N","Nitrogen","Total","0.186","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924590-0914-4-C/results/970077512/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:13","STORET",7,NA,2022-09-14 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Pass","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924590-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924590","WHEELER CK AB CNFL / OGDEN R",NA,NA,NA,NA,"41.2532800000","-111.8424400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077513",NA,"as N","Nitrogen","Dissolved","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924590-0914-4-C/results/970077513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:13","STORET",7,NA,2022-09-14 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2532800000","-111.8424400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",41.25328,-111.84244,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924650-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077524",NA,"as N","Nitrogen","Total","2.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924650-0405-4-C/results/970077524/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:13","STORET",7,NA,2022-04-05 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924650-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077527",NA,"as N","Nitrogen","Dissolved","2.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924650-0405-4-C/results/970077527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:13","STORET",7,NA,2022-04-05 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.14,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924650-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077541",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924650-0524-4-C/results/970077541/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:14","STORET",7,NA,2022-05-24 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924650-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077550",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924650-0524-4-C/results/970077550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:14","STORET",7,NA,2022-05-24 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924650-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077551",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924650-0615-4-C/results/970077551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:14","STORET",7,NA,2022-06-15 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924650-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077571",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924650-0615-4-C/results/970077571/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:14","STORET",7,NA,2022-06-15 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924650-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077578",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924650-0629-4-C/results/970077578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:15","STORET",7,NA,2022-06-29 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924650-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924650","N Fk Ogden R at U162 Xing",NA,NA,NA,NA,"41.3135000000","-111.8409300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077600",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924650-0629-4-C/results/970077600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:15","STORET",7,NA,2022-06-29 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3135000000","-111.8409300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.3135,-111.84093,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924660-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077609",NA,"as N","Nitrogen","Dissolved","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924660-0405-4-C/results/970077609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:16","STORET",7,NA,2022-04-05 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924660-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077614",NA,"as N","Nitrogen","Total","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924660-0405-4-C/results/970077614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:16","STORET",7,NA,2022-04-05 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924660-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077629",NA,"as N","Nitrogen","Dissolved","0.678","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924660-0524-4-C/results/970077629/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:16","STORET",7,NA,2022-05-24 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.678,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924660-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077632",NA,"as N","Nitrogen","Total","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924660-0524-4-C/results/970077632/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:16","STORET",7,NA,2022-05-24 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4924660-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077643",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924660-0609-4-C/results/970077643/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:17","STORET",7,NA,2022-06-09 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4924660-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077644",NA,"as N","Nitrogen","Dissolved","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924660-0609-4-C/results/970077644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:17","STORET",7,NA,2022-06-09 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924660-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077680",NA,"as N","Nitrogen","Dissolved","0.483","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924660-0615-4-C/results/970077680/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:18","STORET",7,NA,2022-06-15 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.483,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924660-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077687",NA,"as N","Nitrogen","Total","0.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924660-0615-4-C/results/970077687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:18","STORET",7,NA,2022-06-15 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924660-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077699",NA,"as N","Nitrogen","Total","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924660-0629-4-C/results/970077699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:19","STORET",7,NA,2022-06-29 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924660-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077716",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924660-0629-4-C/results/970077716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:19","STORET",7,NA,2022-06-29 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924660-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077724",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924660-0712-4-C/results/970077724/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:19","STORET",7,NA,2022-07-12 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924660-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077729",NA,"as N","Nitrogen","Dissolved","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924660-0712-4-C/results/970077729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:19","STORET",7,NA,2022-07-12 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924660-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077746",NA,"as N","Nitrogen","Total","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924660-0802-4-C/results/970077746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:20","STORET",7,NA,2022-08-02 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924660-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924660","MIDDLE FK OGDEN R U166 XING",NA,NA,NA,NA,"41.2877200000","-111.7771700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077757",NA,"as N","Nitrogen","Dissolved","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924660-0802-4-C/results/970077757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:20","STORET",7,NA,2022-08-02 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2877200000","-111.7771700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",41.28772,-111.77717,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924670-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077764",NA,"as N","Nitrogen","Dissolved","0.574","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924670-0405-4-C/results/970077764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:21","STORET",7,NA,2022-04-05 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.574,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924670-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077773",NA,"as N","Nitrogen","Total","0.517","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924670-0405-4-C/results/970077773/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:21","STORET",7,NA,2022-04-05 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.517,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924670-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077787",NA,"as N","Nitrogen","Total","0.524","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924670-0524-4-C/results/970077787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:21","STORET",7,NA,2022-05-24 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.524,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924670-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077792",NA,"as N","Nitrogen","Dissolved","0.635","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924670-0524-4-C/results/970077792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:21","STORET",7,NA,2022-05-24 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.635,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4924670-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077802",NA,"as N","Nitrogen","Total","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924670-0609-4-C/results/970077802/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:22","STORET",7,NA,2022-06-09 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4924670-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077822",NA,"as N","Nitrogen","Dissolved","0.434","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924670-0609-4-C/results/970077822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:22","STORET",7,NA,2022-06-09 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.434,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924670-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077825",NA,"as N","Nitrogen","Total","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924670-0615-4-C/results/970077825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:23","STORET",7,NA,2022-06-15 22:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924670-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077832",NA,"as N","Nitrogen","Dissolved","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924670-0615-4-C/results/970077832/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:23","STORET",7,NA,2022-06-15 22:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924680-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077853",NA,"as N","Nitrogen","Dissolved","0.602","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924680-0615-4-C/results/970077853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:24","STORET",7,NA,2022-06-15 21:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.602,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924680-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077861",NA,"as N","Nitrogen","Total","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924680-0615-4-C/results/970077861/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:24","STORET",7,NA,2022-06-15 21:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924670-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077882",NA,"as N","Nitrogen","Dissolved","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924670-0712-4-C/results/970077882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:25","STORET",7,NA,2022-07-12 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924670-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077883",NA,"as N","Nitrogen","Total","0.276","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924670-0712-4-C/results/970077883/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:25","STORET",7,NA,2022-07-12 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.276,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924670-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077891",NA,"as N","Nitrogen","Dissolved","0.608","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924670-0802-4-C/results/970077891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:25","STORET",7,NA,2022-08-02 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.608,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924670-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077899",NA,"as N","Nitrogen","Total","0.921","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924670-0802-4-C/results/970077899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:25","STORET",7,NA,2022-08-02 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.921,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924670-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077916",NA,"as N","Nitrogen","Total","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924670-0914-4-C/results/970077916/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:26","STORET",7,NA,2022-09-14 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924670-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924670","S Fk Ogden R South Leg bl U166 Xing",NA,NA,NA,NA,"41.2462700000","-111.7648300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077918",NA,"as N","Nitrogen","Dissolved","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924670-0914-4-C/results/970077918/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:26","STORET",7,NA,2022-09-14 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2462700000","-111.7648300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",41.24627,-111.76483,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924680-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077935",NA,"as N","Nitrogen","Total","0.593","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924680-0405-4-C/results/970077935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:27","STORET",7,NA,2022-04-05 19:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.593,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924680-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077938",NA,"as N","Nitrogen","Dissolved","0.696","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924680-0405-4-C/results/970077938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:27","STORET",7,NA,2022-04-05 19:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.696,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924680-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077950",NA,"as N","Nitrogen","Total","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924680-0524-4-C/results/970077950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:27","STORET",7,NA,2022-05-24 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924680-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077957",NA,"as N","Nitrogen","Dissolved","0.699","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924680-0524-4-C/results/970077957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:27","STORET",7,NA,2022-05-24 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.699,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4924680-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077966",NA,"as N","Nitrogen","Total","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924680-0609-4-C/results/970077966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:28","STORET",7,NA,2022-06-09 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-4924680-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077976",NA,"as N","Nitrogen","Dissolved","0.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-4924680-0609-4-C/results/970077976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:28","STORET",7,NA,2022-06-09 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.49,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924680-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077991",NA,"as N","Nitrogen","Dissolved","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924680-0712-4-C/results/970077991/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:29","STORET",7,NA,2022-07-12 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924680-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970077999",NA,"as N","Nitrogen","Total","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924680-0712-4-C/results/970077999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:29","STORET",7,NA,2022-07-12 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924680-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078012",NA,"as N","Nitrogen","Dissolved","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924680-0802-4-C/results/970078012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:29","STORET",7,NA,2022-08-02 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924680-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078014",NA,"as N","Nitrogen","Total","0.639","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924680-0802-4-C/results/970078014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:29","STORET",7,NA,2022-08-02 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.639,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924680-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078027",NA,"as N","Nitrogen","Dissolved","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924680-0914-4-C/results/970078027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:30","STORET",7,NA,2022-09-14 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924680-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924680","S Fk Ogden R North Leg bl U166 Xing",NA,NA,NA,NA,"41.2489700000","-111.7616100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078029",NA,"as N","Nitrogen","Total","0.155","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924680-0914-4-C/results/970078029/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:30","STORET",7,NA,2022-09-14 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2489700000","-111.7616100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.155,"MG/L","Numeric","Pass","Uncensored",41.24897,-111.76161,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924690-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078037",NA,"as N","Nitrogen","Total","0.335","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924690-0405-4-C/results/970078037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:30","STORET",7,NA,2022-04-05 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.335,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924690-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078047",NA,"as N","Nitrogen","Dissolved","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924690-0405-4-C/results/970078047/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:31","STORET",7,NA,2022-04-05 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924690-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078064",NA,"as N","Nitrogen","Total","0.683","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924690-0524-4-C/results/970078064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:31","STORET",7,NA,2022-05-24 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.683,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924690-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078068",NA,"as N","Nitrogen","Dissolved","0.872","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924690-0524-4-C/results/970078068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:31","STORET",7,NA,2022-05-24 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.872,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924690-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078077",NA,"as N","Nitrogen","Total","0.463","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924690-0615-4-C/results/970078077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:32","STORET",7,NA,2022-06-15 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.463,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924690-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078078",NA,"as N","Nitrogen","Dissolved","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924690-0615-4-C/results/970078078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:32","STORET",7,NA,2022-06-15 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924690-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078101",NA,"as N","Nitrogen","Total","0.468","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924690-0712-4-C/results/970078101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:33","STORET",7,NA,2022-07-12 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.468,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924690-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078105",NA,"as N","Nitrogen","Dissolved","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924690-0712-4-C/results/970078105/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:33","STORET",7,NA,2022-07-12 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924690-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078124",NA,"as N","Nitrogen","Dissolved","0.366","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924690-0802-4-C/results/970078124/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:33","STORET",7,NA,2022-08-02 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.366,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924690-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078132",NA,"as N","Nitrogen","Total","0.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924690-0802-4-C/results/970078132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:33","STORET",7,NA,2022-08-02 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924690-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078134",NA,"as N","Nitrogen","Total","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924690-0914-4-C/results/970078134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:34","STORET",7,NA,2022-09-14 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924690-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924690","S Fk Ogden R at South Fork Campground",NA,NA,NA,NA,"41.2822000000","-111.6537000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078137",NA,"as N","Nitrogen","Dissolved","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924690-0914-4-C/results/970078137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:34","STORET",7,NA,2022-09-14 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2822000000","-111.6537000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",41.2822,-111.6537,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924700-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078148",NA,"as N","Nitrogen","Dissolved","0.821","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924700-0524-4-C/results/970078148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:34","STORET",7,NA,2022-05-24 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.821,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924700-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078151",NA,"as N","Nitrogen","Total","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924700-0524-4-C/results/970078151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:34","STORET",7,NA,2022-05-24 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924700-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078156",NA,"as N","Nitrogen","Dissolved","0.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924700-0615-4-C/results/970078156/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:35","STORET",7,NA,2022-06-15 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.63,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924700-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078163",NA,"as N","Nitrogen","Total","0.691","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924700-0615-4-C/results/970078163/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:35","STORET",7,NA,2022-06-15 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.691,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924700-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078181",NA,"as N","Nitrogen","Dissolved","0.557","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924700-0629-4-C/results/970078181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:36","STORET",7,NA,2022-06-29 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.557,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924700-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078183",NA,"as N","Nitrogen","Total","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924700-0629-4-C/results/970078183/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:36","STORET",7,NA,2022-06-29 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924700-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078207",NA,"as N","Nitrogen","Dissolved","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924700-0712-4-C/results/970078207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:36","STORET",7,NA,2022-07-12 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924700-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078212",NA,"as N","Nitrogen","Total","0.513","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924700-0712-4-C/results/970078212/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:36","STORET",7,NA,2022-07-12 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.513,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924700-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078218",NA,"as N","Nitrogen","Total","0.473","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924700-0802-4-C/results/970078218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:37","STORET",7,NA,2022-08-02 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.473,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924700-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078241",NA,"as N","Nitrogen","Dissolved","0.493","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924700-0802-4-C/results/970078241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:37","STORET",7,NA,2022-08-02 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.493,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4924700-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078257",NA,"as N","Nitrogen","Total","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4924700-0822-4-C/results/970078257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:38","STORET",7,NA,2022-08-22 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4924700-0822-4-C","Sample-Routine","Water",NA,2022-08-22,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078259",NA,"as N","Nitrogen","Dissolved","0.314","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4924700-0822-4-C/results/970078259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:38","STORET",7,NA,2022-08-22 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.314,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924700-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078268",NA,"as N","Nitrogen","Total","0.152","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924700-0914-4-C/results/970078268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:38","STORET",7,NA,2022-09-14 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.152,"MG/L","Numeric","Pass","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924700-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078276",NA,"as N","Nitrogen","Dissolved","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924700-0914-4-C/results/970078276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:38","STORET",7,NA,2022-09-14 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4924700-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:12:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078285",NA,"as N","Nitrogen","Dissolved","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4924700-0928-4-C/results/970078285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:39","STORET",7,NA,2022-09-28 18:12:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4924700-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:12:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924700","S FK OGDEN R BL CAUSEY DAM SPILLWAY USFS",NA,NA,NA,NA,"41.2952900000","-111.5965300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078300",NA,"as N","Nitrogen","Total","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4924700-0928-4-C/results/970078300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:39","STORET",7,NA,2022-09-28 18:12:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2952900000","-111.5965300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",41.29529,-111.59653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924710-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078307",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924710-0405-4-C/results/970078307/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:39","STORET",7,NA,2022-04-05 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924710-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078320",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924710-0405-4-C/results/970078320/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:39","STORET",7,NA,2022-04-05 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924710-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078336",NA,"as N","Nitrogen","Total","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924710-0524-4-C/results/970078336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:40","STORET",7,NA,2022-05-24 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924710-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078339",NA,"as N","Nitrogen","Dissolved","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924710-0524-4-C/results/970078339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:40","STORET",7,NA,2022-05-24 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924710-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078353",NA,"as N","Nitrogen","Dissolved","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924710-0615-4-C/results/970078353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:41","STORET",7,NA,2022-06-15 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924710-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078355",NA,"as N","Nitrogen","Total","0.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924710-0615-4-C/results/970078355/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:41","STORET",7,NA,2022-06-15 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924710-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078366",NA,"as N","Nitrogen","Dissolved","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924710-0712-4-C/results/970078366/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:41","STORET",7,NA,2022-07-12 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924710-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078367",NA,"as N","Nitrogen","Total","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924710-0712-4-C/results/970078367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:41","STORET",7,NA,2022-07-12 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924710-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078376",NA,"as N","Nitrogen","Total","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924710-0802-4-C/results/970078376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:42","STORET",7,NA,2022-08-02 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924710-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078384",NA,"as N","Nitrogen","Dissolved","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924710-0802-4-C/results/970078384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:42","STORET",7,NA,2022-08-02 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924710-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078403","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924710-0914-4-C/results/970078403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:43","STORET",7,NA,2022-09-14 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924710-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924710","BEAVER CK AB CNFL / S FK OGDEN R AT BRIDGE",NA,NA,NA,NA,"41.2971600000","-111.6177000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078405",NA,"as N","Nitrogen","Dissolved","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924710-0914-4-C/results/970078405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:43","STORET",7,NA,2022-09-14 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2971600000","-111.6177000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",41.29716,-111.6177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924730-0727-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-27,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924730","CAUSEY RES AB DAM 01",NA,NA,NA,NA,"41.2988300000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078417",NA,"as N","Nitrogen","Dissolved","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-2-C/results/970078417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:43","STORET",7,NA,2022-07-27 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2988300000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",41.29883,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924730-0727-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-27,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924730","CAUSEY RES AB DAM 01",NA,NA,NA,NA,"41.2988300000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078422",NA,"as N","Nitrogen","Total","0.244","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-2-C/results/970078422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:43","STORET",7,NA,2022-07-27 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2988300000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.244,"MG/L","Numeric","Not Reviewed","Uncensored",41.29883,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924730-0727-23-C","Sample-Routine","Water",NA,2022-07-27,"11:15:00","MST",NA,NA,NA,"AboveThermoclin","2.07","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924730","CAUSEY RES AB DAM 01",NA,NA,NA,NA,"41.2988300000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078425",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-23-C/results/970078425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:44","STORET",7,NA,2022-07-27 18:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2988300000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",41.29883,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2.07,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924730-0727-23-C","Sample-Routine","Water",NA,2022-07-27,"11:15:00","MST",NA,NA,NA,"AboveThermoclin","2.07","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924730","CAUSEY RES AB DAM 01",NA,NA,NA,NA,"41.2988300000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078431",NA,"as N","Nitrogen","Total","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-23-C/results/970078431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:44","STORET",7,NA,2022-07-27 18:15:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2988300000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",41.29883,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2.07,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924730-0727-27-C","Sample-Routine","Water",NA,2022-07-27,"11:20:00","MST",NA,NA,NA,"BelowThermoclin","5.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924730","CAUSEY RES AB DAM 01",NA,NA,NA,NA,"41.2988300000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078435",NA,"as N","Nitrogen","Total","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-27-C/results/970078435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:44","STORET",7,NA,2022-07-27 18:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2988300000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",41.29883,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924730-0727-27-C","Sample-Routine","Water",NA,2022-07-27,"11:20:00","MST",NA,NA,NA,"BelowThermoclin","5.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924730","CAUSEY RES AB DAM 01",NA,NA,NA,NA,"41.2988300000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078439",NA,"as N","Nitrogen","Dissolved","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-27-C/results/970078439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:45","STORET",7,NA,2022-07-27 18:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2988300000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",41.29883,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924730-0727-29-C","Sample-Routine","Water",NA,2022-07-27,"11:25:00","MST",NA,NA,NA,"Bottom","26.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924730","CAUSEY RES AB DAM 01",NA,NA,NA,NA,"41.2988300000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078442",NA,"as N","Nitrogen","Total","0.438","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-29-C/results/970078442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:45","STORET",7,NA,2022-07-27 18:25:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2988300000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.438,"MG/L","Numeric","Not Reviewed","Uncensored",41.29883,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",26.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924730-0727-29-C","Sample-Routine","Water",NA,2022-07-27,"11:25:00","MST",NA,NA,NA,"Bottom","26.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924730","CAUSEY RES AB DAM 01",NA,NA,NA,NA,"41.2988300000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078446",NA,"as N","Nitrogen","Dissolved","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924730-0727-29-C/results/970078446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:45","STORET",7,NA,2022-07-27 18:25:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2988300000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",41.29883,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",26.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924740-0727-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-27,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924740","Causey Res Midway Up N Arm 02",NA,NA,NA,NA,"41.3068800000","-111.5835400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078474",NA,"as N","Nitrogen","Dissolved","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924740-0727-2-C/results/970078474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:46","STORET",7,NA,2022-07-27 18:35:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3068800000","-111.5835400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.30688,-111.58354,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924740-0727-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-27,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924740","Causey Res Midway Up N Arm 02",NA,NA,NA,NA,"41.3068800000","-111.5835400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078479",NA,"as N","Nitrogen","Total","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924740-0727-2-C/results/970078479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:46","STORET",7,NA,2022-07-27 18:35:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3068800000","-111.5835400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",41.30688,-111.58354,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924740-0727-29-C","Sample-Routine","Water",NA,2022-07-27,"11:50:00","MST",NA,NA,NA,"Bottom","18.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924740","Causey Res Midway Up N Arm 02",NA,NA,NA,NA,"41.3068800000","-111.5835400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078484",NA,"as N","Nitrogen","Total","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924740-0727-29-C/results/970078484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:47","STORET",7,NA,2022-07-27 18:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3068800000","-111.5835400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",41.30688,-111.58354,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",18.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924740-0727-29-C","Sample-Routine","Water",NA,2022-07-27,"11:50:00","MST",NA,NA,NA,"Bottom","18.06","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924740","Causey Res Midway Up N Arm 02",NA,NA,NA,NA,"41.3068800000","-111.5835400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078486",NA,"as N","Nitrogen","Dissolved","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924740-0727-29-C/results/970078486/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:47","STORET",7,NA,2022-07-27 18:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.3068800000","-111.5835400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",41.30688,-111.58354,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",18.06,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924750-0727-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-27,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924750","CAUSEY RES. E ARM 003",NA,NA,NA,NA,"41.2956600000","-111.5699300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078496",NA,"as N","Nitrogen","Total","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924750-0727-2-C/results/970078496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:47","STORET",7,NA,2022-07-27 19:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2956600000","-111.5699300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",41.29566,-111.56993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924750-0727-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-27,"12:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924750","CAUSEY RES. E ARM 003",NA,NA,NA,NA,"41.2956600000","-111.5699300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078499",NA,"as N","Nitrogen","Dissolved","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924750-0727-2-C/results/970078499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:47","STORET",7,NA,2022-07-27 19:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2956600000","-111.5699300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",41.29566,-111.56993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924750-0727-29-C","Sample-Routine","Water",NA,2022-07-27,"13:05:00","MST",NA,NA,NA,"Bottom","13.04","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924750","CAUSEY RES. E ARM 003",NA,NA,NA,NA,"41.2956600000","-111.5699300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078502",NA,"as N","Nitrogen","Total","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924750-0727-29-C/results/970078502/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:48","STORET",7,NA,2022-07-27 20:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2956600000","-111.5699300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.29566,-111.56993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13.04,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924750-0727-29-C","Sample-Routine","Water",NA,2022-07-27,"13:05:00","MST",NA,NA,NA,"Bottom","13.04","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924750","CAUSEY RES. E ARM 003",NA,NA,NA,NA,"41.2956600000","-111.5699300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078503",NA,"as N","Nitrogen","Dissolved","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924750-0727-29-C/results/970078503/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:48","STORET",7,NA,2022-07-27 20:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"41.2956600000","-111.5699300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",41.29566,-111.56993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13.04,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924760-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078509",NA,"as N","Nitrogen","Total","0.866","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924760-0524-4-C/results/970078509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:48","STORET",7,NA,2022-05-24 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.866,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924760-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078517",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924760-0524-4-C/results/970078517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:48","STORET",7,NA,2022-05-24 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924760-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078527",NA,"as N","Nitrogen","Dissolved","0.862","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924760-0615-4-C/results/970078527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:49","STORET",7,NA,2022-06-15 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.862,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924760-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078539",NA,"as N","Nitrogen","Total","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924760-0615-4-C/results/970078539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:49","STORET",7,NA,2022-06-15 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924760-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078545",NA,"as N","Nitrogen","Total","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924760-0629-4-C/results/970078545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:50","STORET",7,NA,2022-06-29 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924760-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078556",NA,"as N","Nitrogen","Dissolved","0.722","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924760-0629-4-C/results/970078556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:50","STORET",7,NA,2022-06-29 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.722,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924760-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078574",NA,"as N","Nitrogen","Total","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924760-0712-4-C/results/970078574/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:51","STORET",7,NA,2022-07-12 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924760-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078579",NA,"as N","Nitrogen","Dissolved","0.594","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924760-0712-4-C/results/970078579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:51","STORET",7,NA,2022-07-12 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.594,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924760-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"12:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078581",NA,"as N","Nitrogen","Dissolved","0.809","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924760-0727-4-C/results/970078581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:51","STORET",7,NA,2022-07-27 19:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.809,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924760-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"12:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078605",NA,"as N","Nitrogen","Total","0.721","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924760-0727-4-C/results/970078605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:51","STORET",7,NA,2022-07-27 19:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.721,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924760-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078616",NA,"as N","Nitrogen","Total","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924760-0802-4-C/results/970078616/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:52","STORET",7,NA,2022-08-02 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924760-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078632",NA,"as N","Nitrogen","Dissolved","0.705","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924760-0802-4-C/results/970078632/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:52","STORET",7,NA,2022-08-02 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.705,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4924760-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078655",NA,"as N","Nitrogen","Dissolved","0.667","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4924760-0823-4-C/results/970078655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:53","STORET",7,NA,2022-08-23 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.667,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4924760-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078657",NA,"as N","Nitrogen","Total","0.664","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4924760-0823-4-C/results/970078657/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:53","STORET",7,NA,2022-08-23 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.664,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4924760-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078666",NA,"as N","Nitrogen","Total","0.609","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4924760-0928-4-C/results/970078666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:53","STORET",7,NA,2022-09-28 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.609,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4924760-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924760","Dry Bread Hollow Ck AB CNFL/ Wheatgrass CK",NA,NA,NA,NA,"41.3146900000","-111.5764500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078673",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4924760-0928-4-C/results/970078673/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:54","STORET",7,NA,2022-09-28 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.3146900000","-111.5764500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",41.31469,-111.57645,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924790-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924790","RIGHT FK S FK OGDEN R AB CAUSEY RES",NA,NA,NA,NA,"41.2885500000","-111.5654800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078696",NA,"as N","Nitrogen","Total","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924790-0727-4-C/results/970078696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:54","STORET",7,NA,2022-07-27 20:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2885500000","-111.5654800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",41.28855,-111.56548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-4924790-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924790","RIGHT FK S FK OGDEN R AB CAUSEY RES",NA,NA,NA,NA,"41.2885500000","-111.5654800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078702",NA,"as N","Nitrogen","Dissolved","0.501","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-4924790-0727-4-C/results/970078702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:54","STORET",7,NA,2022-07-27 20:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.2885500000","-111.5654800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",57,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.501,"MG/L","Numeric","Not Reviewed","Uncensored",41.28855,-111.56548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4924952-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924952","East Canyon Creek at UDWR Flow Gage",NA,NA,NA,NA,"41.0544300000","-111.7146600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078740",NA,"as N","Nitrogen","Dissolved","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4924952-0920-4-C/results/970078740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:55","STORET",7,NA,2022-09-20 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0544300000","-111.7146600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",41.05443,-111.71466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4924952-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924952","East Canyon Creek at UDWR Flow Gage",NA,NA,NA,NA,"41.0544300000","-111.7146600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078752",NA,"as N","Nitrogen","Total","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4924952-0920-4-C/results/970078752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:55","STORET",7,NA,2022-09-20 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0544300000","-111.7146600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",41.05443,-111.71466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4924952-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924952","East Canyon Creek at UDWR Flow Gage",NA,NA,NA,NA,"41.0544300000","-111.7146600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078778",NA,"as N","Nitrogen","Total","0.601","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4924952-0928-4-C/results/970078778/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:56","STORET",7,NA,2022-09-28 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0544300000","-111.7146600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.601,"MG/L","Numeric","Not Reviewed","Uncensored",41.05443,-111.71466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4924952-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924952","East Canyon Creek at UDWR Flow Gage",NA,NA,NA,NA,"41.0544300000","-111.7146600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078782",NA,"as N","Nitrogen","Dissolved","0.547","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4924952-0928-4-C/results/970078782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:56","STORET",7,NA,2022-09-28 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0544300000","-111.7146600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.547,"MG/L","Numeric","Not Reviewed","Uncensored",41.05443,-111.71466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924960-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078788",NA,"as N","Nitrogen","Dissolved","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924960-0406-4-C/results/970078788/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:57","STORET",7,NA,2022-04-06 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924960-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078801",NA,"as N","Nitrogen","Total","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924960-0406-4-C/results/970078801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:57","STORET",7,NA,2022-04-06 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924960-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078815",NA,"as N","Nitrogen","Total","0.216","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924960-0524-4-C/results/970078815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:58","STORET",7,NA,2022-05-24 21:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.216,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924960-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078817",NA,"as N","Nitrogen","Dissolved","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924960-0524-4-C/results/970078817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:58","STORET",7,NA,2022-05-24 21:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924960-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078824",NA,"as N","Nitrogen","Total","0.344","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924960-0616-4-C/results/970078824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:58","STORET",7,NA,2022-06-16 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.344,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924960-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078844",NA,"as N","Nitrogen","Dissolved","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924960-0616-4-C/results/970078844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:59","STORET",7,NA,2022-06-16 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924960-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078851",NA,"as N","Nitrogen","Dissolved","0.564","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924960-0629-4-C/results/970078851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:59","STORET",7,NA,2022-06-29 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.564,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924960-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078872",NA,"as N","Nitrogen","Total","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924960-0629-4-C/results/970078872/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:19:59","STORET",7,NA,2022-06-29 18:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924960-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078876",NA,"as N","Nitrogen","Total","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924960-0712-4-C/results/970078876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:00","STORET",7,NA,2022-07-12 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924960-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078881",NA,"as N","Nitrogen","Dissolved","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924960-0712-4-C/results/970078881/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:00","STORET",7,NA,2022-07-12 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924960-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078886",NA,"as N","Nitrogen","Total","0.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924960-0803-4-C/results/970078886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:00","STORET",7,NA,2022-08-03 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.85,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924960-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078887",NA,"as N","Nitrogen","Dissolved","0.564","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924960-0803-4-C/results/970078887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:00","STORET",7,NA,2022-08-03 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.564,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924960-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078915",NA,"as N","Nitrogen","Dissolved","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924960-0915-4-C/results/970078915/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:01","STORET",7,NA,2022-09-15 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924960-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924960","East Canyon Creek at Young Street crossing",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078918",NA,"as N","Nitrogen","Total","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924960-0915-4-C/results/970078918/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:01","STORET",7,NA,2022-09-15 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924961-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078921",NA,"as N","Nitrogen","Total","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924961-0406-4-C/results/970078921/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:02","STORET",7,NA,2022-04-06 16:20:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4924961-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078941",NA,"as N","Nitrogen","Dissolved","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4924961-0406-4-C/results/970078941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:02","STORET",7,NA,2022-04-06 16:20:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924961-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078952",NA,"as N","Nitrogen","Total","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924961-0524-4-C/results/970078952/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:03","STORET",7,NA,2022-05-24 21:20:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4924961-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078953",NA,"as N","Nitrogen","Dissolved","0.645","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4924961-0524-4-C/results/970078953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:03","STORET",7,NA,2022-05-24 21:20:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.645,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924961-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078958",NA,"as N","Nitrogen","Dissolved","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924961-0616-4-C/results/970078958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:03","STORET",7,NA,2022-06-16 18:40:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4924961-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078964",NA,"as N","Nitrogen","Total","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4924961-0616-4-C/results/970078964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:03","STORET",7,NA,2022-06-16 18:40:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924961-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970078990",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924961-0629-4-C/results/970078990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:04","STORET",7,NA,2022-06-29 19:00:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4924961-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079000",NA,"as N","Nitrogen","Total","0.585","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4924961-0629-4-C/results/970079000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:04","STORET",7,NA,2022-06-29 19:00:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.585,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924961-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079009",NA,"as N","Nitrogen","Dissolved","0.422","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924961-0712-4-C/results/970079009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:05","STORET",7,NA,2022-07-12 21:10:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.422,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4924961-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079011",NA,"as N","Nitrogen","Total","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4924961-0712-4-C/results/970079011/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:05","STORET",7,NA,2022-07-12 21:10:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924961-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079028",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924961-0803-4-C/results/970079028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:05","STORET",7,NA,2022-08-03 16:40:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4924961-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079034",NA,"as N","Nitrogen","Dissolved","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4924961-0803-4-C/results/970079034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:05","STORET",7,NA,2022-08-03 16:40:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924961-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079049",NA,"as N","Nitrogen","Dissolved","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924961-0915-4-C/results/970079049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:06","STORET",7,NA,2022-09-15 16:50:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4924961-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4924961","East Canyon Creek at Young Street crossing Replicate of 4924960",NA,NA,NA,NA,"41.0317700000","-111.6907700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079050",NA,"as N","Nitrogen","Total","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4924961-0915-4-C/results/970079050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:06","STORET",7,NA,2022-09-15 16:50:00,NA,"River/Stream","Replicate of 4924960","16020102",NA,NA,NA,NA,"41.0317700000","-111.6907700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",41.03177,-111.69077,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925039-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079056",NA,"as N","Nitrogen","Dissolved","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925039-0406-4-C/results/970079056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:06","STORET",7,NA,2022-04-06 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925039-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079078","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925039-0406-4-C/results/970079078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:07","STORET",7,NA,2022-04-06 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925039-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079080",NA,"as N","Nitrogen","Total","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925039-0525-4-C/results/970079080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:07","STORET",7,NA,2022-05-25 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925039-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079086",NA,"as N","Nitrogen","Dissolved","0.624","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925039-0525-4-C/results/970079086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:07","STORET",7,NA,2022-05-25 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.624,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925039-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079099",NA,"as N","Nitrogen","Dissolved","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925039-0616-4-C/results/970079099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:08","STORET",7,NA,2022-06-16 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925039-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079106",NA,"as N","Nitrogen","Total","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925039-0616-4-C/results/970079106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:08","STORET",7,NA,2022-06-16 19:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925039-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079116",NA,"as N","Nitrogen","Dissolved","0.241","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925039-0629-4-C/results/970079116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:08","STORET",7,NA,2022-06-29 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.241,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925039-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079125",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925039-0629-4-C/results/970079125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:09","STORET",7,NA,2022-06-29 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925039-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079144",NA,"as N","Nitrogen","Dissolved","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925039-0713-4-C/results/970079144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:09","STORET",7,NA,2022-07-13 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925039-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079150",NA,"as N","Nitrogen","Total","0.185","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925039-0713-4-C/results/970079150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:09","STORET",7,NA,2022-07-13 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.185,"MG/L","Numeric","Pass","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925039-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079160",NA,"as N","Nitrogen","Dissolved","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925039-0803-4-C/results/970079160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:10","STORET",7,NA,2022-08-03 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925039-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079170",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925039-0803-4-C/results/970079170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:10","STORET",7,NA,2022-08-03 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925039-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079178",NA,"as N","Nitrogen","Dissolved","0.159","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925039-0915-4-C/results/970079178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:10","STORET",7,NA,2022-09-15 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.159,"MG/L","Numeric","Pass","Uncensored",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925039-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925039","Hardscrabble ck ab East Canyon Ck @ U66 Xing",NA,NA,NA,NA,"40.9771900000","-111.6741500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079179","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925039-0915-4-C/results/970079179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:10","STORET",7,NA,2022-09-15 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9771900000","-111.6741500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.97719,-111.67415,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925140-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-13,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925140","EAST CANYON RES AB DAM 01 Replicate of 4925160",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079191",NA,"as N","Nitrogen","Dissolved","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925140-0713-2-C/results/970079191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:11","STORET",7,NA,2022-07-13 17:00:00,NA,"Lake","Replicate of 4925160","16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925140-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-13,"10:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925140","EAST CANYON RES AB DAM 01 Replicate of 4925160",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079196",NA,"as N","Nitrogen","Total","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925140-0713-2-C/results/970079196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:11","STORET",7,NA,2022-07-13 17:00:00,NA,"Lake","Replicate of 4925160","16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925140-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925140","EAST CANYON RES AB DAM 01 Replicate of 4925160",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079209",NA,"as N","Nitrogen","Dissolved","0.673","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925140-0922-2-C/results/970079209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:12","STORET",7,NA,2022-09-22 17:35:00,NA,"Lake","Replicate of 4925160","16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.673,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925140-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-22,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925140","EAST CANYON RES AB DAM 01 Replicate of 4925160",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079211",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925140-0922-2-C/results/970079211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:12","STORET",7,NA,2022-09-22 17:35:00,NA,"Lake","Replicate of 4925160","16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925150-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079215",NA,"as N","Nitrogen","Total","0.515","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925150-0406-4-C/results/970079215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:12","STORET",7,NA,2022-04-06 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.515,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925150-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079223",NA,"as N","Nitrogen","Dissolved","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925150-0406-4-C/results/970079223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:12","STORET",7,NA,2022-04-06 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925150-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079240",NA,"as N","Nitrogen","Total","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925150-0525-4-C/results/970079240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:13","STORET",7,NA,2022-05-25 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925150-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079244",NA,"as N","Nitrogen","Dissolved","0.751","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925150-0525-4-C/results/970079244/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:13","STORET",7,NA,2022-05-25 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.751,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925150-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079256",NA,"as N","Nitrogen","Total","0.587","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925150-0616-4-C/results/970079256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:13","STORET",7,NA,2022-06-16 20:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.587,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925150-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079261",NA,"as N","Nitrogen","Dissolved","0.644","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925150-0616-4-C/results/970079261/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:14","STORET",7,NA,2022-06-16 20:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.644,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925150-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079286",NA,"as N","Nitrogen","Dissolved","0.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925150-0629-4-C/results/970079286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:14","STORET",7,NA,2022-06-29 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925150-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079287",NA,"as N","Nitrogen","Total","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925150-0629-4-C/results/970079287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:14","STORET",7,NA,2022-06-29 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925150-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079302",NA,"as N","Nitrogen","Total","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925150-0713-4-C/results/970079302/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:15","STORET",7,NA,2022-07-13 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925150-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079308",NA,"as N","Nitrogen","Dissolved","0.508","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925150-0713-4-C/results/970079308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:15","STORET",7,NA,2022-07-13 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.508,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925150-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079327",NA,"as N","Nitrogen","Dissolved","0.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925150-0803-4-C/results/970079327/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:16","STORET",7,NA,2022-08-03 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925150-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079328",NA,"as N","Nitrogen","Total","0.539","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925150-0803-4-C/results/970079328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:16","STORET",7,NA,2022-08-03 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.539,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925150-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079339",NA,"as N","Nitrogen","Total","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925150-0915-4-C/results/970079339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:16","STORET",7,NA,2022-09-15 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925150-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925150","EAST CANYON CK BL EAST CANYON RES",NA,NA,NA,NA,"40.9223200000","-111.6084700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079344",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925150-0915-4-C/results/970079344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:16","STORET",7,NA,2022-09-15 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9223200000","-111.6084700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",40.92232,-111.60847,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925160-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-13,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079349",NA,"as N","Nitrogen","Dissolved","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-2-C/results/970079349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:17","STORET",7,NA,2022-07-13 16:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925160-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-13,"09:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079358",NA,"as N","Nitrogen","Total","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-2-C/results/970079358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:17","STORET",7,NA,2022-07-13 16:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925160-0713-23-C","Sample-Routine","Water",NA,2022-07-13,"10:45:00","MST",NA,NA,NA,"AboveThermoclin","4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079360",NA,"as N","Nitrogen","Dissolved","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-23-C/results/970079360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:17","STORET",7,NA,2022-07-13 17:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925160-0713-23-C","Sample-Routine","Water",NA,2022-07-13,"10:45:00","MST",NA,NA,NA,"AboveThermoclin","4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079361",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-23-C/results/970079361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:17","STORET",7,NA,2022-07-13 17:45:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925160-0713-27-C","Sample-Routine","Water",NA,2022-07-13,"10:50:00","MST",NA,NA,NA,"BelowThermoclin","12","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079373",NA,"as N","Nitrogen","Dissolved","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-27-C/results/970079373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:18","STORET",7,NA,2022-07-13 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925160-0713-27-C","Sample-Routine","Water",NA,2022-07-13,"10:50:00","MST",NA,NA,NA,"BelowThermoclin","12","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079374",NA,"as N","Nitrogen","Total","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-27-C/results/970079374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:18","STORET",7,NA,2022-07-13 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",12,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925160-0713-29-C","Sample-Routine","Water",NA,2022-07-13,"10:30:00","MST",NA,NA,NA,"Bottom","30","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079387",NA,"as N","Nitrogen","Total","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-29-C/results/970079387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:19","STORET",7,NA,2022-07-13 17:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925160-0713-29-C","Sample-Routine","Water",NA,2022-07-13,"10:30:00","MST",NA,NA,NA,"Bottom","30","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079390",NA,"as N","Nitrogen","Dissolved","0.552","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925160-0713-29-C/results/970079390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:19","STORET",7,NA,2022-07-13 17:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.552,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",30,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925160-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-22,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079407",NA,"as N","Nitrogen","Total","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-2-C/results/970079407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:19","STORET",7,NA,2022-09-22 17:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925160-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-22,"10:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079412",NA,"as N","Nitrogen","Dissolved","0.678","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-2-C/results/970079412/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:19","STORET",7,NA,2022-09-22 17:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.678,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925160-0922-23-C","Sample-Routine","Water",NA,2022-09-22,"10:50:00","MST",NA,NA,NA,"AboveThermoclin","9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079417",NA,"as N","Nitrogen","Total","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-23-C/results/970079417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:20","STORET",7,NA,2022-09-22 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925160-0922-23-C","Sample-Routine","Water",NA,2022-09-22,"10:50:00","MST",NA,NA,NA,"AboveThermoclin","9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079420",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-23-C/results/970079420/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:20","STORET",7,NA,2022-09-22 17:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925160-0922-27-C","Sample-Routine","Water",NA,2022-09-22,"10:55:00","MST",NA,NA,NA,"BelowThermoclin","13","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079427",NA,"as N","Nitrogen","Dissolved","1.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-27-C/results/970079427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:21","STORET",7,NA,2022-09-22 17:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925160-0922-27-C","Sample-Routine","Water",NA,2022-09-22,"10:55:00","MST",NA,NA,NA,"BelowThermoclin","13","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079430",NA,"as N","Nitrogen","Total","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-27-C/results/970079430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:21","STORET",7,NA,2022-09-22 17:55:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925160-0922-29-C","Sample-Routine","Water",NA,2022-09-22,"11:05:00","MST",NA,NA,NA,"Bottom","38.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079436",NA,"as N","Nitrogen","Total","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-29-C/results/970079436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:21","STORET",7,NA,2022-09-22 18:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",38.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925160-0922-29-C","Sample-Routine","Water",NA,2022-09-22,"11:05:00","MST",NA,NA,NA,"Bottom","38.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925160","EAST CANYON RES AB DAM 01",NA,NA,NA,NA,"40.9196600000","-111.5993700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079447",NA,"as N","Nitrogen","Dissolved","0.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925160-0922-29-C/results/970079447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:21","STORET",7,NA,2022-09-22 18:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9196600000","-111.5993700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.91966,-111.59937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",38.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925170-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-13,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925170","EAST CANYON RES MIDLAKE 02",NA,NA,NA,NA,"40.9043900000","-111.5907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079460",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925170-0713-2-C/results/970079460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:22","STORET",7,NA,2022-07-13 18:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9043900000","-111.5907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.90439,-111.59076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925170-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-13,"11:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925170","EAST CANYON RES MIDLAKE 02",NA,NA,NA,NA,"40.9043900000","-111.5907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079463",NA,"as N","Nitrogen","Total","0.482","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925170-0713-2-C/results/970079463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:22","STORET",7,NA,2022-07-13 18:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9043900000","-111.5907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.482,"MG/L","Numeric","Not Reviewed","Uncensored",40.90439,-111.59076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925170-0713-29-C","Sample-Routine","Water",NA,2022-07-13,"11:30:00","MST",NA,NA,NA,"Bottom","26","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925170","EAST CANYON RES MIDLAKE 02",NA,NA,NA,NA,"40.9043900000","-111.5907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079471",NA,"as N","Nitrogen","Dissolved","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925170-0713-29-C/results/970079471/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:23","STORET",7,NA,2022-07-13 18:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9043900000","-111.5907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",40.90439,-111.59076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",26,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925170-0713-29-C","Sample-Routine","Water",NA,2022-07-13,"11:30:00","MST",NA,NA,NA,"Bottom","26","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925170","EAST CANYON RES MIDLAKE 02",NA,NA,NA,NA,"40.9043900000","-111.5907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079472",NA,"as N","Nitrogen","Total","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925170-0713-29-C/results/970079472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:23","STORET",7,NA,2022-07-13 18:30:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9043900000","-111.5907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",40.90439,-111.59076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",26,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925170-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-22,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925170","EAST CANYON RES MIDLAKE 02",NA,NA,NA,NA,"40.9043900000","-111.5907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079478",NA,"as N","Nitrogen","Total","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925170-0922-2-C/results/970079478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:23","STORET",7,NA,2022-09-22 18:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9043900000","-111.5907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",40.90439,-111.59076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925170-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-22,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925170","EAST CANYON RES MIDLAKE 02",NA,NA,NA,NA,"40.9043900000","-111.5907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079484",NA,"as N","Nitrogen","Dissolved","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925170-0922-2-C/results/970079484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:23","STORET",7,NA,2022-09-22 18:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9043900000","-111.5907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.90439,-111.59076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925170-0922-29-C","Sample-Routine","Water",NA,2022-09-22,"11:50:00","MST",NA,NA,NA,"Bottom","23","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925170","EAST CANYON RES MIDLAKE 02",NA,NA,NA,NA,"40.9043900000","-111.5907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079491",NA,"as N","Nitrogen","Dissolved","0.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925170-0922-29-C/results/970079491/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:24","STORET",7,NA,2022-09-22 18:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9043900000","-111.5907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.90439,-111.59076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925170-0922-29-C","Sample-Routine","Water",NA,2022-09-22,"11:50:00","MST",NA,NA,NA,"Bottom","23","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925170","EAST CANYON RES MIDLAKE 02",NA,NA,NA,NA,"40.9043900000","-111.5907600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079495",NA,"as N","Nitrogen","Total","0.507","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925170-0922-29-C/results/970079495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:24","STORET",7,NA,2022-09-22 18:50:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.9043900000","-111.5907600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.507,"MG/L","Numeric","Not Reviewed","Uncensored",40.90439,-111.59076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",23,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925180-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-13,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925180","EAST CANYON RES UPPER LAKE 03",NA,NA,NA,NA,"40.8921700000","-111.5863100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079501",NA,"as N","Nitrogen","Total","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925180-0713-2-C/results/970079501/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:25","STORET",7,NA,2022-07-13 19:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.8921700000","-111.5863100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",40.89217,-111.58631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925180-0713-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-13,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925180","EAST CANYON RES UPPER LAKE 03",NA,NA,NA,NA,"40.8921700000","-111.5863100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079508",NA,"as N","Nitrogen","Dissolved","0.508","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925180-0713-2-C/results/970079508/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:25","STORET",7,NA,2022-07-13 19:00:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.8921700000","-111.5863100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.508,"MG/L","Numeric","Not Reviewed","Uncensored",40.89217,-111.58631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925180-0713-29-C","Sample-Routine","Water",NA,2022-07-13,"12:20:00","MST",NA,NA,NA,"Bottom","11","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925180","EAST CANYON RES UPPER LAKE 03",NA,NA,NA,NA,"40.8921700000","-111.5863100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079514",NA,"as N","Nitrogen","Total","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925180-0713-29-C/results/970079514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:25","STORET",7,NA,2022-07-13 19:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.8921700000","-111.5863100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",40.89217,-111.58631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925180-0713-29-C","Sample-Routine","Water",NA,2022-07-13,"12:20:00","MST",NA,NA,NA,"Bottom","11","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925180","EAST CANYON RES UPPER LAKE 03",NA,NA,NA,NA,"40.8921700000","-111.5863100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079516",NA,"as N","Nitrogen","Dissolved","0.464","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925180-0713-29-C/results/970079516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:25","STORET",7,NA,2022-07-13 19:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.8921700000","-111.5863100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.464,"MG/L","Numeric","Not Reviewed","Uncensored",40.89217,-111.58631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",11,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925180-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-22,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925180","EAST CANYON RES UPPER LAKE 03",NA,NA,NA,NA,"40.8921700000","-111.5863100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079528",NA,"as N","Nitrogen","Dissolved","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925180-0922-2-C/results/970079528/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:26","STORET",7,NA,2022-09-22 19:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.8921700000","-111.5863100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.89217,-111.58631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925180-0922-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-22,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925180","EAST CANYON RES UPPER LAKE 03",NA,NA,NA,NA,"40.8921700000","-111.5863100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079530",NA,"as N","Nitrogen","Total","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925180-0922-2-C/results/970079530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:26","STORET",7,NA,2022-09-22 19:05:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.8921700000","-111.5863100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",40.89217,-111.58631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925180-0922-29-C","Sample-Routine","Water",NA,2022-09-22,"12:20:00","MST",NA,NA,NA,"Bottom","4.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925180","EAST CANYON RES UPPER LAKE 03",NA,NA,NA,NA,"40.8921700000","-111.5863100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079533",NA,"as N","Nitrogen","Dissolved","0.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925180-0922-29-C/results/970079533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:27","STORET",7,NA,2022-09-22 19:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.8921700000","-111.5863100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.89217,-111.58631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",4.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925180-0922-29-C","Sample-Routine","Water",NA,2022-09-22,"12:20:00","MST",NA,NA,NA,"Bottom","4.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925180","EAST CANYON RES UPPER LAKE 03",NA,NA,NA,NA,"40.8921700000","-111.5863100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079534",NA,"as N","Nitrogen","Total","0.301","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925180-0922-29-C/results/970079534/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:27","STORET",7,NA,2022-09-22 19:20:00,NA,"Lake",NA,"16020102",NA,NA,NA,NA,"40.8921700000","-111.5863100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.301,"MG/L","Numeric","Not Reviewed","Uncensored",40.89217,-111.58631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",4.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925190-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925190","East Canyon Ck at East Canyon Resort ab East Canyon Reservoir at USGS Gage",NA,NA,NA,NA,"40.8695000000","-111.5865200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079547",NA,"as N","Nitrogen","Dissolved","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925190-0713-4-C/results/970079547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:28","STORET",7,NA,2022-07-13 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8695000000","-111.5865200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",40.8695,-111.58652,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4925190-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925190","East Canyon Ck at East Canyon Resort ab East Canyon Reservoir at USGS Gage",NA,NA,NA,NA,"40.8695000000","-111.5865200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079562",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4925190-0713-4-C/results/970079562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:28","STORET",7,NA,2022-07-13 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8695000000","-111.5865200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",40.8695,-111.58652,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925190-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925190","East Canyon Ck at East Canyon Resort ab East Canyon Reservoir at USGS Gage",NA,NA,NA,NA,"40.8695000000","-111.5865200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079576",NA,"as N","Nitrogen","Total","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925190-0922-4-C/results/970079576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:29","STORET",7,NA,2022-09-22 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8695000000","-111.5865200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",40.8695,-111.58652,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925190-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925190","East Canyon Ck at East Canyon Resort ab East Canyon Reservoir at USGS Gage",NA,NA,NA,NA,"40.8695000000","-111.5865200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079591",NA,"as N","Nitrogen","Dissolved","0.763","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925190-0922-4-C/results/970079591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:29","STORET",7,NA,2022-09-22 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8695000000","-111.5865200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.763,"MG/L","Numeric","Not Reviewed","Uncensored",40.8695,-111.58652,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925195-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079603",NA,"as N","Nitrogen","Dissolved","0.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925195-0406-4-C/results/970079603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:30","STORET",7,NA,2022-04-06 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925195-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079604",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925195-0406-4-C/results/970079604/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:30","STORET",7,NA,2022-04-06 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925195-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079629",NA,"as N","Nitrogen","Dissolved","0.652","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925195-0525-4-C/results/970079629/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:31","STORET",7,NA,2022-05-25 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.652,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925195-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079634",NA,"as N","Nitrogen","Total","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925195-0525-4-C/results/970079634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:31","STORET",7,NA,2022-05-25 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925195-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079642",NA,"as N","Nitrogen","Dissolved","0.697","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925195-0616-4-C/results/970079642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:32","STORET",7,NA,2022-06-16 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.697,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925195-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079655",NA,"as N","Nitrogen","Total","0.715","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925195-0616-4-C/results/970079655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:32","STORET",7,NA,2022-06-16 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.715,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925195-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079694",NA,"as N","Nitrogen","Dissolved","0.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925195-0803-4-C/results/970079694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:34","STORET",7,NA,2022-08-03 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925195-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079707",NA,"as N","Nitrogen","Total","0.712","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925195-0803-4-C/results/970079707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:34","STORET",7,NA,2022-08-03 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.712,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925195-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079722",NA,"as N","Nitrogen","Dissolved","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925195-0915-4-C/results/970079722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:35","STORET",7,NA,2022-09-15 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925195-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079723",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925195-0915-4-C/results/970079723/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:35","STORET",7,NA,2022-09-15 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925218-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079730",NA,"as N","Nitrogen","Total","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925218-0404-4-C/results/970079730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:35","STORET",7,NA,2022-04-04 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925218-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079745",NA,"as N","Nitrogen","Dissolved","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925218-0404-4-C/results/970079745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:36","STORET",7,NA,2022-04-04 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925218-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079761",NA,"as N","Nitrogen","Total","0.731","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925218-0509-4-C/results/970079761/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:36","STORET",7,NA,2022-05-09 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.731,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925218-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079763",NA,"as N","Nitrogen","Dissolved","0.664","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925218-0509-4-C/results/970079763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:37","STORET",7,NA,2022-05-09 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.664,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925504-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925504","Gateway Canal return flow to Weber River",NA,NA,NA,NA,"41.1364500000","-111.8313300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079796",NA,"as N","Nitrogen","Total","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925504-0921-4-C/results/970079796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:38","STORET",7,NA,2022-09-21 21:30:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.1364500000","-111.8313300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",41.13645,-111.83133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925504-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925504","Gateway Canal return flow to Weber River",NA,NA,NA,NA,"41.1364500000","-111.8313300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079798",NA,"as N","Nitrogen","Dissolved","0.587","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925504-0921-4-C/results/970079798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:38","STORET",7,NA,2022-09-21 21:30:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.1364500000","-111.8313300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.587,"MG/L","Numeric","Not Reviewed","Uncensored",41.13645,-111.83133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925504-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925504","Gateway Canal return flow to Weber River",NA,NA,NA,NA,"41.1364500000","-111.8313300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079821",NA,"as N","Nitrogen","Dissolved","0.691","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925504-0927-4-C/results/970079821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:39","STORET",7,NA,2022-09-27 17:45:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.1364500000","-111.8313300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.691,"MG/L","Numeric","Not Reviewed","Uncensored",41.13645,-111.83133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925504-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925504","Gateway Canal return flow to Weber River",NA,NA,NA,NA,"41.1364500000","-111.8313300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079825",NA,"as N","Nitrogen","Total","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925504-0927-4-C/results/970079825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:39","STORET",7,NA,2022-09-27 17:45:00,NA,"Canal Irrigation",NA,"16020102",NA,NA,NA,NA,"41.1364500000","-111.8313300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",41.13645,-111.83133,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925988-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925988","Irrigation flow at West Henefer Rd xing 110 meters SW of I-84 EB exit 112 offramp",NA,NA,NA,NA,"41.0434600000","-111.5249400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079856",NA,"as N","Nitrogen","Total","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925988-0921-4-C/results/970079856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:40","STORET",7,NA,2022-09-21 16:25:00,NA,"Canal Drainage",NA,"16020101",NA,NA,NA,NA,"41.0434600000","-111.5249400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",41.04346,-111.52494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925988-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925988","Irrigation flow at West Henefer Rd xing 110 meters SW of I-84 EB exit 112 offramp",NA,NA,NA,NA,"41.0434600000","-111.5249400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079868",NA,"as N","Nitrogen","Dissolved","0.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925988-0921-4-C/results/970079868/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:41","STORET",7,NA,2022-09-21 16:25:00,NA,"Canal Drainage",NA,"16020101",NA,NA,NA,NA,"41.0434600000","-111.5249400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.72,"MG/L","Numeric","Not Reviewed","Uncensored",41.04346,-111.52494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925218-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079887",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925218-0613-4-C/results/970079887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:42","STORET",7,NA,2022-06-13 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925218-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079891",NA,"as N","Nitrogen","Dissolved","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925218-0613-4-C/results/970079891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:42","STORET",7,NA,2022-06-13 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925218-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079911",NA,"as N","Nitrogen","Dissolved","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925218-0718-4-C/results/970079911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:43","STORET",7,NA,2022-07-18 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925218-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079912",NA,"as N","Nitrogen","Total","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925218-0718-4-C/results/970079912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:43","STORET",7,NA,2022-07-18 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.869,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925218-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079915",NA,"as N","Nitrogen","Dissolved","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925218-0808-4-C/results/970079915/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:43","STORET",7,NA,2022-08-08 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925218-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079917",NA,"as N","Nitrogen","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925218-0808-4-C/results/970079917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:43","STORET",7,NA,2022-08-08 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925218-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079944",NA,"as N","Nitrogen","Total","1.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925218-0912-4-C/results/970079944/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:45","STORET",7,NA,2022-09-12 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.73,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925218-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925218","EAST CANYON CK AB MORMON FLAT",NA,NA,NA,NA,"40.8156500000","-111.5851400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079946",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925218-0912-4-C/results/970079946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:45","STORET",7,NA,2022-09-12 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8156500000","-111.5851400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",40.81565,-111.58514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925230-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079966",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925230-0404-4-C/results/970079966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:46","STORET",7,NA,2022-04-04 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925230-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079970",NA,"as N","Nitrogen","Dissolved","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925230-0404-4-C/results/970079970/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:46","STORET",7,NA,2022-04-04 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925230-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079981",NA,"as N","Nitrogen","Total","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925230-0509-4-C/results/970079981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:46","STORET",7,NA,2022-05-09 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925230-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079983",NA,"as N","Nitrogen","Dissolved","0.731","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925230-0509-4-C/results/970079983/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:47","STORET",7,NA,2022-05-09 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.731,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925230-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970079992",NA,"as N","Nitrogen","Dissolved","2.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925230-0613-4-C/results/970079992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:47","STORET",7,NA,2022-06-13 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925230-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080005",NA,"as N","Nitrogen","Total","0.952","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925230-0613-4-C/results/970080005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:47","STORET",7,NA,2022-06-13 16:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.952,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925230-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080012",NA,"as N","Nitrogen","Total","1.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925230-0718-4-C/results/970080012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:48","STORET",7,NA,2022-07-18 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925230-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080013",NA,"as N","Nitrogen","Dissolved","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925230-0718-4-C/results/970080013/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:48","STORET",7,NA,2022-07-18 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925230-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080057",NA,"as N","Nitrogen","Total","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925230-0808-4-C/results/970080057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:50","STORET",7,NA,2022-08-08 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925230-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080062",NA,"as N","Nitrogen","Dissolved","1.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925230-0808-4-C/results/970080062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:50","STORET",7,NA,2022-08-08 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.76,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925230-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080077",NA,"as N","Nitrogen","Dissolved","2.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925230-0912-4-C/results/970080077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:51","STORET",7,NA,2022-09-12 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925230-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080084",NA,"as N","Nitrogen","Total","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925230-0912-4-C/results/970080084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:51","STORET",7,NA,2022-09-12 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925231-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080089",NA,"as N","Nitrogen","Total","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925231-0404-4-C/results/970080089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:51","STORET",7,NA,2022-04-04 17:00:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925231-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080105",NA,"as N","Nitrogen","Dissolved","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925231-0404-4-C/results/970080105/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:52","STORET",7,NA,2022-04-04 17:00:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925231-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080115",NA,"as N","Nitrogen","Total","0.797","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925231-0509-4-C/results/970080115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:52","STORET",7,NA,2022-05-09 17:00:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.797,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925231-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080121",NA,"as N","Nitrogen","Dissolved","0.702","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925231-0509-4-C/results/970080121/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:52","STORET",7,NA,2022-05-09 17:00:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.702,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925231-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080143",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925231-0613-4-C/results/970080143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:53","STORET",7,NA,2022-06-13 16:50:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925231-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080145",NA,"as N","Nitrogen","Total","0.898","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925231-0613-4-C/results/970080145/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:53","STORET",7,NA,2022-06-13 16:50:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.898,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925231-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080151",NA,"as N","Nitrogen","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925231-0718-4-C/results/970080151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:54","STORET",7,NA,2022-07-18 17:10:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925231-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080155",NA,"as N","Nitrogen","Dissolved","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925231-0718-4-C/results/970080155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:54","STORET",7,NA,2022-07-18 17:10:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925231-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080167",NA,"as N","Nitrogen","Total","1.75","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925231-0808-4-C/results/970080167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:55","STORET",7,NA,2022-08-08 17:00:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.75,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925231-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080182",NA,"as N","Nitrogen","Dissolved","1.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925231-0808-4-C/results/970080182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:55","STORET",7,NA,2022-08-08 17:00:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.76,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925231-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080187",NA,"as N","Nitrogen","Dissolved","2.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925231-0912-4-C/results/970080187/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:56","STORET",7,NA,2022-09-12 17:00:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925231-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925231","EAST CANYON CK BL JEREMY RANCH GOLF COURSE Replicate of 4925230",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080189",NA,"as N","Nitrogen","Total","2.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925231-0912-4-C/results/970080189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:56","STORET",7,NA,2022-09-12 17:00:00,NA,"River/Stream","Replicate of 4925230","16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925240-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080202",NA,"as N","Nitrogen","Total","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925240-0404-4-C/results/970080202/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:57","STORET",7,NA,2022-04-04 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925240-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080221",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925240-0404-4-C/results/970080221/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:57","STORET",7,NA,2022-04-04 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925240-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080239",NA,"as N","Nitrogen","Dissolved","0.565","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925240-0509-4-C/results/970080239/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:58","STORET",7,NA,2022-05-09 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.565,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925240-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080280",NA,"as N","Nitrogen","Total","0.585","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925240-0509-4-C/results/970080280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:20:59","STORET",7,NA,2022-05-09 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.585,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925240-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080309",NA,"as N","Nitrogen","Dissolved","2.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925240-0613-4-C/results/970080309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:00","STORET",7,NA,2022-06-13 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925240-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080310",NA,"as N","Nitrogen","Total","0.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925240-0613-4-C/results/970080310/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:00","STORET",7,NA,2022-06-13 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925240-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080346",NA,"as N","Nitrogen","Dissolved","1.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925240-0718-4-C/results/970080346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:01","STORET",7,NA,2022-07-18 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925240-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080365",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925240-0718-4-C/results/970080365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:01","STORET",7,NA,2022-07-18 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925240-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080369",NA,"as N","Nitrogen","Dissolved","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925240-0808-4-C/results/970080369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:01","STORET",7,NA,2022-08-08 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925240-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080394",NA,"as N","Nitrogen","Total","1.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925240-0808-4-C/results/970080394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:02","STORET",7,NA,2022-08-08 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925240-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080432",NA,"as N","Nitrogen","Dissolved","3.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925240-0912-4-C/results/970080432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:02","STORET",7,NA,2022-09-12 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925240-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925240","EAST CANYON CK BL EAST CANYON WWTP",NA,NA,NA,NA,"40.7596000000","-111.5644800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080435",NA,"as N","Nitrogen","Total","2.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925240-0912-4-C/results/970080435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:02","STORET",7,NA,2022-09-12 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7596000000","-111.5644800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.7596,-111.56448,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925250-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080469",NA,"as N","Nitrogen","Dissolved","4.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925250-0404-4-C/results/970080469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:03","STORET",7,NA,2022-04-04 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.85,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925250-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080488",NA,"as N","Nitrogen","Total","4.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925250-0404-4-C/results/970080488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:03","STORET",7,NA,2022-04-04 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925250-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080504",NA,"as N","Nitrogen","Total","5.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925250-0509-4-C/results/970080504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:04","STORET",7,NA,2022-05-09 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925250-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080533",NA,"as N","Nitrogen","Dissolved","5.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925250-0509-4-C/results/970080533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:04","STORET",7,NA,2022-05-09 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925250-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080561",NA,"as N","Nitrogen","Total","4.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925250-0613-4-C/results/970080561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:05","STORET",7,NA,2022-06-13 17:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925250-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080569",NA,"as N","Nitrogen","Dissolved","5.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925250-0613-4-C/results/970080569/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:05","STORET",7,NA,2022-06-13 17:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925250-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080590",NA,"as N","Nitrogen","Dissolved","3.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925250-0718-4-C/results/970080590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:06","STORET",7,NA,2022-07-18 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925250-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080596",NA,"as N","Nitrogen","Total","4.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925250-0718-4-C/results/970080596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:06","STORET",7,NA,2022-07-18 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925250-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080637",NA,"as N","Nitrogen","Total","5.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925250-0808-4-C/results/970080637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:07","STORET",7,NA,2022-08-08 17:50:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925250-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080644",NA,"as N","Nitrogen","Dissolved","5.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925250-0808-4-C/results/970080644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:07","STORET",7,NA,2022-08-08 17:50:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925250-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080666",NA,"as N","Nitrogen","Dissolved","7.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925250-0912-4-C/results/970080666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:08","STORET",7,NA,2022-09-12 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925250-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925250","EAST CANYON WWTP",NA,NA,NA,NA,"40.7578600000","-111.5638600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080667",NA,"as N","Nitrogen","Total","8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925250-0912-4-C/results/970080667/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:08","STORET",7,NA,2022-09-12 17:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"40.7578600000","-111.5638600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8,"MG/L","Numeric","Not Reviewed","Uncensored",40.75786,-111.56386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925260-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080716",NA,"as N","Nitrogen","Dissolved","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925260-0404-4-C/results/970080716/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:09","STORET",7,NA,2022-04-04 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925260-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080739",NA,"as N","Nitrogen","Total","0.761","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925260-0404-4-C/results/970080739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:09","STORET",7,NA,2022-04-04 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.761,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925260-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080763",NA,"as N","Nitrogen","Total","0.445","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925260-0509-4-C/results/970080763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:10","STORET",7,NA,2022-05-09 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.445,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925260-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080787",NA,"as N","Nitrogen","Dissolved","0.583","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925260-0509-4-C/results/970080787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:11","STORET",7,NA,2022-05-09 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.583,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925260-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080798",NA,"as N","Nitrogen","Total","0.465","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925260-0613-4-C/results/970080798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:11","STORET",7,NA,2022-06-13 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.465,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925260-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080805",NA,"as N","Nitrogen","Dissolved","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925260-0613-4-C/results/970080805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:11","STORET",7,NA,2022-06-13 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925260-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080864",NA,"as N","Nitrogen","Dissolved","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925260-0718-4-C/results/970080864/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:12","STORET",7,NA,2022-07-18 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925260-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080876",NA,"as N","Nitrogen","Total","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925260-0718-4-C/results/970080876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:12","STORET",7,NA,2022-07-18 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925260-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080885",NA,"as N","Nitrogen","Dissolved","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925260-0808-4-C/results/970080885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:13","STORET",7,NA,2022-08-08 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925260-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080892",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925260-0808-4-C/results/970080892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:13","STORET",7,NA,2022-08-08 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925260-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080941",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925260-0912-4-C/results/970080941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:14","STORET",7,NA,2022-09-12 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925260-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925260","E CAN CK AB EAST CANYON WWTP",NA,NA,NA,NA,"40.7554800000","-111.5640000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080946",NA,"as N","Nitrogen","Total","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925260-0912-4-C/results/970080946/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:14","STORET",7,NA,2022-09-12 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7554800000","-111.5640000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",40.75548,-111.564,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925320-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080979",NA,"as N","Nitrogen","Dissolved","0.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925320-0404-4-C/results/970080979/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:15","STORET",7,NA,2022-04-04 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925320-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080983",NA,"as N","Nitrogen","Total","0.739","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925320-0404-4-C/results/970080983/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:15","STORET",7,NA,2022-04-04 18:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.739,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925320-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080996",NA,"as N","Nitrogen","Total","0.543","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925320-0509-4-C/results/970080996/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:16","STORET",7,NA,2022-05-09 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.543,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925320-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970080997",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925320-0509-4-C/results/970080997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:16","STORET",7,NA,2022-05-09 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925320-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081005",NA,"as N","Nitrogen","Dissolved","1.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925320-0613-4-C/results/970081005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:16","STORET",7,NA,2022-06-13 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925320-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081016",NA,"as N","Nitrogen","Total","0.732","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925320-0613-4-C/results/970081016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:16","STORET",7,NA,2022-06-13 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.732,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925320-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081029",NA,"as N","Nitrogen","Total","0.482","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925320-0718-4-C/results/970081029/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:17","STORET",7,NA,2022-07-18 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.482,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925320-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081034",NA,"as N","Nitrogen","Dissolved","0.594","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925320-0718-4-C/results/970081034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:17","STORET",7,NA,2022-07-18 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.594,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925320-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081039",NA,"as N","Nitrogen","Dissolved","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925320-0808-4-C/results/970081039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:17","STORET",7,NA,2022-08-08 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925320-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081058",NA,"as N","Nitrogen","Total","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925320-0808-4-C/results/970081058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:17","STORET",7,NA,2022-08-08 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925320-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081068",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925320-0912-4-C/results/970081068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:18","STORET",7,NA,2022-09-12 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925320-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925320","MURNIN CREEK AT I-80 XING",NA,NA,NA,NA,"40.7249100000","-111.5361100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081070",NA,"as N","Nitrogen","Total","0.717","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925320-0912-4-C/results/970081070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:18","STORET",7,NA,2022-09-12 18:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7249100000","-111.5361100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.717,"MG/L","Numeric","Not Reviewed","Uncensored",40.72491,-111.53611,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925330-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081083",NA,"as N","Nitrogen","Dissolved","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925330-0404-4-C/results/970081083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:19","STORET",7,NA,2022-04-04 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925330-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081098",NA,"as N","Nitrogen","Total","0.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925330-0404-4-C/results/970081098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:19","STORET",7,NA,2022-04-04 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925330-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081100",NA,"as N","Nitrogen","Dissolved","0.152","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925330-0509-4-C/results/970081100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:19","STORET",7,NA,2022-05-09 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.152,"MG/L","Numeric","Pass","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925330-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081104",NA,"as N","Nitrogen","Total","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925330-0509-4-C/results/970081104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:19","STORET",7,NA,2022-05-09 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925330-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081119",NA,"as N","Nitrogen","Total","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925330-0613-4-C/results/970081119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:20","STORET",7,NA,2022-06-13 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925330-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081132",NA,"as N","Nitrogen","Dissolved","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925330-0613-4-C/results/970081132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:20","STORET",7,NA,2022-06-13 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925330-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081136","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925330-0718-4-C/results/970081136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:21","STORET",7,NA,2022-07-18 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925330-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081138",NA,"as N","Nitrogen","Dissolved","0.164","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925330-0718-4-C/results/970081138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:21","STORET",7,NA,2022-07-18 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.164,"MG/L","Numeric","Pass","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925330-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081158",NA,"as N","Nitrogen","Total","0.661","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925330-0808-4-C/results/970081158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:21","STORET",7,NA,2022-08-08 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.661,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925330-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081170",NA,"as N","Nitrogen","Dissolved","0.867","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925330-0808-4-C/results/970081170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:21","STORET",7,NA,2022-08-08 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.867,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925330-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081172",NA,"as N","Nitrogen","Total","0.216","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925330-0912-4-C/results/970081172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:22","STORET",7,NA,2022-09-12 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.216,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925330-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925330","THREE MILE CK AB CNFL/ E CANYON CK @ I80 XING",NA,NA,NA,NA,"40.7387100000","-111.5561200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081177",NA,"as N","Nitrogen","Dissolved","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925330-0912-4-C/results/970081177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:22","STORET",7,NA,2022-09-12 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7387100000","-111.5561200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.73871,-111.55612,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925350-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081184",NA,"as N","Nitrogen","Total","0.786","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925350-0404-4-C/results/970081184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:22","STORET",7,NA,2022-04-04 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.786,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925350-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081185",NA,"as N","Nitrogen","Dissolved","0.778","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925350-0404-4-C/results/970081185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:22","STORET",7,NA,2022-04-04 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.778,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925350-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081211",NA,"as N","Nitrogen","Dissolved","0.491","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925350-0509-4-C/results/970081211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:23","STORET",7,NA,2022-05-09 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.491,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925350-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081214",NA,"as N","Nitrogen","Total","0.575","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925350-0509-4-C/results/970081214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:23","STORET",7,NA,2022-05-09 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.575,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925350-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081223",NA,"as N","Nitrogen","Total","0.576","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925350-0613-4-C/results/970081223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:24","STORET",7,NA,2022-06-13 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.576,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925350-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081234",NA,"as N","Nitrogen","Dissolved","0.716","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925350-0613-4-C/results/970081234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:24","STORET",7,NA,2022-06-13 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.716,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925350-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081248",NA,"as N","Nitrogen","Dissolved","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925350-0718-4-C/results/970081248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:24","STORET",7,NA,2022-07-18 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925350-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081250",NA,"as N","Nitrogen","Total","0.552","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925350-0718-4-C/results/970081250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:24","STORET",7,NA,2022-07-18 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.552,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925350-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081277",NA,"as N","Nitrogen","Total","0.537","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925350-0808-4-C/results/970081277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:25","STORET",7,NA,2022-08-08 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.537,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925350-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081278",NA,"as N","Nitrogen","Dissolved","0.603","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925350-0808-4-C/results/970081278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:25","STORET",7,NA,2022-08-08 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.603,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925350-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081280",NA,"as N","Nitrogen","Dissolved","0.922","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925350-0912-4-C/results/970081280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:26","STORET",7,NA,2022-09-12 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.922,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925350-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925350","East Canyon Ck at Blackhawk Station (Glenwild Bridge)",NA,NA,NA,NA,"40.7283900000","-111.5366700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081283",NA,"as N","Nitrogen","Total","0.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925350-0912-4-C/results/970081283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:26","STORET",7,NA,2022-09-12 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7283900000","-111.5366700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.72839,-111.53667,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925360-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081298",NA,"as N","Nitrogen","Dissolved","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925360-0404-4-C/results/970081298/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:26","STORET",7,NA,2022-04-04 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925360-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081312",NA,"as N","Nitrogen","Total","0.593","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925360-0404-4-C/results/970081312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:26","STORET",7,NA,2022-04-04 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.593,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925360-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081317",NA,"as N","Nitrogen","Dissolved","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925360-0509-4-C/results/970081317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:27","STORET",7,NA,2022-05-09 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925360-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081321",NA,"as N","Nitrogen","Total","0.575","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925360-0509-4-C/results/970081321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:27","STORET",7,NA,2022-05-09 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.575,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925360-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081344",NA,"as N","Nitrogen","Total","0.565","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925360-0613-4-C/results/970081344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:27","STORET",7,NA,2022-06-13 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.565,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925360-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081348",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925360-0613-4-C/results/970081348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:27","STORET",7,NA,2022-06-13 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925360-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081352",NA,"as N","Nitrogen","Dissolved","0.523","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925360-0718-4-C/results/970081352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:28","STORET",7,NA,2022-07-18 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.523,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925360-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081356",NA,"as N","Nitrogen","Total","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925360-0718-4-C/results/970081356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:28","STORET",7,NA,2022-07-18 19:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925360-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081367",NA,"as N","Nitrogen","Total","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925360-0808-4-C/results/970081367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:28","STORET",7,NA,2022-08-08 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925360-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081379",NA,"as N","Nitrogen","Dissolved","0.399","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925360-0808-4-C/results/970081379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:29","STORET",7,NA,2022-08-08 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.399,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925360-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081395",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925360-0912-4-C/results/970081395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:29","STORET",7,NA,2022-09-12 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925360-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925360","Kimball Ck ab cnfl/ East Canyon Ck",NA,NA,NA,NA,"40.7229800000","-111.5184800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081396",NA,"as N","Nitrogen","Dissolved","1.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925360-0912-4-C/results/970081396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:29","STORET",7,NA,2022-09-12 18:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7229800000","-111.5184800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.77,"MG/L","Numeric","Not Reviewed","Uncensored",40.72298,-111.51848,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925373-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081397",NA,"as N","Nitrogen","Total","0.734","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925373-0404-4-C/results/970081397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:30","STORET",7,NA,2022-04-04 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.734,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925373-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081438",NA,"as N","Nitrogen","Dissolved","0.808","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925373-0404-4-C/results/970081438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:30","STORET",7,NA,2022-04-04 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.808,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925373-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081444",NA,"as N","Nitrogen","Total","0.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925373-0509-4-C/results/970081444/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:31","STORET",7,NA,2022-05-09 22:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925373-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081448",NA,"as N","Nitrogen","Dissolved","0.685","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925373-0509-4-C/results/970081448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:31","STORET",7,NA,2022-05-09 22:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.685,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925373-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081450",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925373-0613-4-C/results/970081450/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:31","STORET",7,NA,2022-06-13 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925373-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081474",NA,"as N","Nitrogen","Total","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925373-0613-4-C/results/970081474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:31","STORET",7,NA,2022-06-13 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925373-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081478",NA,"as N","Nitrogen","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925373-0630-4-C/results/970081478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:32","STORET",7,NA,2022-06-30 22:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925373-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081492",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925373-0630-4-C/results/970081492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:32","STORET",7,NA,2022-06-30 22:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925373-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"15:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081510",NA,"as N","Nitrogen","Dissolved","0.998","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925373-0718-4-C/results/970081510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:33","STORET",7,NA,2022-07-18 22:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.998,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925373-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"15:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081519",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925373-0718-4-C/results/970081519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:33","STORET",7,NA,2022-07-18 22:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925373-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081540",NA,"as N","Nitrogen","Total","0.918","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925373-0808-4-C/results/970081540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:33","STORET",7,NA,2022-08-08 23:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.918,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925373-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081549",NA,"as N","Nitrogen","Dissolved","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925373-0808-4-C/results/970081549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:33","STORET",7,NA,2022-08-08 23:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4925373-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"17:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081560",NA,"as N","Nitrogen","Total","0.953","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925373-0823-4-C/results/970081560/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:34","STORET",7,NA,2022-08-24 00:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.953,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4925373-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"17:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081573",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925373-0823-4-C/results/970081573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:34","STORET",7,NA,2022-08-24 00:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925373-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081588",NA,"as N","Nitrogen","Dissolved","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925373-0912-4-C/results/970081588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:35","STORET",7,NA,2022-09-12 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925373-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081602",NA,"as N","Nitrogen","Total","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925373-0912-4-C/results/970081602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:35","STORET",7,NA,2022-09-12 21:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4925373-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"12:26:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081623",NA,"as N","Nitrogen","Total","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4925373-0929-4-C/results/970081623/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:35","STORET",7,NA,2022-09-29 19:26:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4925373-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"12:26:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925373","East Canyon Ck ab Bitner Ranch at I-80 milepost 146 view area",NA,NA,NA,NA,"40.7248000000","-111.5142500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081629",NA,"as N","Nitrogen","Dissolved","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4925373-0929-4-C/results/970081629/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:36","STORET",7,NA,2022-09-29 19:26:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7248000000","-111.5142500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.7248,-111.51425,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925440-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081637",NA,"as N","Nitrogen","Dissolved","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925440-0404-4-C/results/970081637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:36","STORET",7,NA,2022-04-04 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925440-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081646",NA,"as N","Nitrogen","Total","0.433","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925440-0404-4-C/results/970081646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:36","STORET",7,NA,2022-04-04 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.433,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925440-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081658",NA,"as N","Nitrogen","Total","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925440-0509-4-C/results/970081658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:37","STORET",7,NA,2022-05-09 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925440-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081661",NA,"as N","Nitrogen","Dissolved","0.649","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925440-0509-4-C/results/970081661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:37","STORET",7,NA,2022-05-09 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.649,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925440-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081667",NA,"as N","Nitrogen","Dissolved","0.842","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925440-0613-4-C/results/970081667/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:37","STORET",7,NA,2022-06-13 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.842,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925440-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081691",NA,"as N","Nitrogen","Total","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925440-0613-4-C/results/970081691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:37","STORET",7,NA,2022-06-13 19:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925440-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081694",NA,"as N","Nitrogen","Dissolved","0.644","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925440-0718-4-C/results/970081694/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:38","STORET",7,NA,2022-07-18 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.644,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925440-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081704",NA,"as N","Nitrogen","Total","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925440-0718-4-C/results/970081704/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:38","STORET",7,NA,2022-07-18 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925440-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081715",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925440-0808-4-C/results/970081715/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:39","STORET",7,NA,2022-08-08 20:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925440-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081721",NA,"as N","Nitrogen","Dissolved","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925440-0808-4-C/results/970081721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:39","STORET",7,NA,2022-08-08 20:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925440-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081734",NA,"as N","Nitrogen","Total","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925440-0912-4-C/results/970081734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:39","STORET",7,NA,2022-09-12 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925440-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925440","MCLEOD CREEK AT U-224 XING",NA,NA,NA,NA,"40.6818900000","-111.5340900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081739",NA,"as N","Nitrogen","Dissolved","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925440-0912-4-C/results/970081739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:39","STORET",7,NA,2022-09-12 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6818900000","-111.5340900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",40.68189,-111.53409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925508-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"15:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925508","Weber River above Mountain Green Lagoons",NA,NA,NA,NA,"41.1354500000","-111.8121100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081779",NA,"as N","Nitrogen","Total","0.915","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925508-0920-4-C/results/970081779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:41","STORET",7,NA,2022-09-20 22:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1354500000","-111.8121100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.915,"MG/L","Numeric","Not Reviewed","Uncensored",41.13545,-111.81211,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925508-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"15:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925508","Weber River above Mountain Green Lagoons",NA,NA,NA,NA,"41.1354500000","-111.8121100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081798",NA,"as N","Nitrogen","Dissolved","0.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925508-0920-4-C/results/970081798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:41","STORET",7,NA,2022-09-20 22:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1354500000","-111.8121100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.88,"MG/L","Numeric","Not Reviewed","Uncensored",41.13545,-111.81211,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925508-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"14:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925508","Weber River above Mountain Green Lagoons",NA,NA,NA,NA,"41.1354500000","-111.8121100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081824",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925508-0926-4-C/results/970081824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:42","STORET",7,NA,2022-09-26 21:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1354500000","-111.8121100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.13545,-111.81211,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925508-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"14:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925508","Weber River above Mountain Green Lagoons",NA,NA,NA,NA,"41.1354500000","-111.8121100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081831",NA,"as N","Nitrogen","Total","0.858","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925508-0926-4-C/results/970081831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:42","STORET",7,NA,2022-09-26 21:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1354500000","-111.8121100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.858,"MG/L","Numeric","Not Reviewed","Uncensored",41.13545,-111.81211,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925517-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081835",NA,"as N","Nitrogen","Dissolved","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925517-0405-4-C/results/970081835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:43","STORET",7,NA,2022-04-05 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925517-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081843",NA,"as N","Nitrogen","Total","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925517-0405-4-C/results/970081843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:43","STORET",7,NA,2022-04-05 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925517-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081868",NA,"as N","Nitrogen","Dissolved","0.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925517-0616-4-C/results/970081868/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:44","STORET",7,NA,2022-06-16 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925517-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081875",NA,"as N","Nitrogen","Total","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925517-0616-4-C/results/970081875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:44","STORET",7,NA,2022-06-16 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925517-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081890",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925517-0712-4-C/results/970081890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:45","STORET",7,NA,2022-07-12 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925517-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081894",NA,"as N","Nitrogen","Total","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925517-0712-4-C/results/970081894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:45","STORET",7,NA,2022-07-12 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925517-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081903",NA,"as N","Nitrogen","Total","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925517-0802-4-C/results/970081903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:45","STORET",7,NA,2022-08-02 20:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925517-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081905",NA,"as N","Nitrogen","Dissolved","0.492","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925517-0802-4-C/results/970081905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:45","STORET",7,NA,2022-08-02 20:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.492,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925517-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081924",NA,"as N","Nitrogen","Total","0.541","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925517-0914-4-C/results/970081924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:46","STORET",7,NA,2022-09-14 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.541,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925517-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081927",NA,"as N","Nitrogen","Dissolved","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925517-0914-4-C/results/970081927/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:46","STORET",7,NA,2022-09-14 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925517-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081934",NA,"as N","Nitrogen","Total","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925517-0927-4-C/results/970081934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:47","STORET",7,NA,2022-09-27 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925517-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925517","Peterson Creek at Morgan Valley Drive Xing",NA,NA,NA,NA,"41.1118900000","-111.7690000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081935",NA,"as N","Nitrogen","Dissolved","0.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925517-0927-4-C/results/970081935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:47","STORET",7,NA,2022-09-27 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1118900000","-111.7690000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.11189,-111.769,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925519-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925519","Enterprise Slough ab confluence with Weber RIver",NA,NA,NA,NA,"41.1075200000","-111.7519100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081947",NA,"as N","Nitrogen","Dissolved","0.766","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925519-0921-4-C/results/970081947/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:47","STORET",7,NA,2022-09-21 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1075200000","-111.7519100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.766,"MG/L","Numeric","Not Reviewed","Uncensored",41.10752,-111.75191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925519-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925519","Enterprise Slough ab confluence with Weber RIver",NA,NA,NA,NA,"41.1075200000","-111.7519100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970081970",NA,"as N","Nitrogen","Total","0.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925519-0921-4-C/results/970081970/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:48","STORET",7,NA,2022-09-21 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.1075200000","-111.7519100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.10752,-111.75191,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925520-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082010",NA,"as N","Nitrogen","Total","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925520-0405-4-C/results/970082010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:48","STORET",7,NA,2022-04-05 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925520-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082020",NA,"as N","Nitrogen","Dissolved","0.637","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925520-0405-4-C/results/970082020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:49","STORET",7,NA,2022-04-05 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.637,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925520-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082026",NA,"as N","Nitrogen","Total","0.557","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925520-0616-4-C/results/970082026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:49","STORET",7,NA,2022-06-16 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.557,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925520-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082040",NA,"as N","Nitrogen","Dissolved","0.547","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925520-0616-4-C/results/970082040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:49","STORET",7,NA,2022-06-16 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.547,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925520-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082058",NA,"as N","Nitrogen","Dissolved","0.407","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925520-0712-4-C/results/970082058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:50","STORET",7,NA,2022-07-12 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.407,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925520-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082059",NA,"as N","Nitrogen","Total","0.504","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925520-0712-4-C/results/970082059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:50","STORET",7,NA,2022-07-12 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.504,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925520-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082076",NA,"as N","Nitrogen","Dissolved","0.903","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925520-0802-4-C/results/970082076/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:51","STORET",7,NA,2022-08-02 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.903,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925520-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082084",NA,"as N","Nitrogen","Total","0.774","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925520-0802-4-C/results/970082084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:51","STORET",7,NA,2022-08-02 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.774,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925520-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082087",NA,"as N","Nitrogen","Total","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925520-0914-4-C/results/970082087/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:51","STORET",7,NA,2022-09-14 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925520-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082094",NA,"as N","Nitrogen","Dissolved","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925520-0914-4-C/results/970082094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:51","STORET",7,NA,2022-09-14 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925520-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"14:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082098",NA,"as N","Nitrogen","Dissolved","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0920-4-C/results/970082098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:52","STORET",7,NA,2022-09-20 21:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925520-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"14:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082132",NA,"as N","Nitrogen","Total","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0920-4-C/results/970082132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:52","STORET",7,NA,2022-09-20 21:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925520-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082154",NA,"as N","Nitrogen","Dissolved","0.614","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0926-4-C/results/970082154/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:53","STORET",7,NA,2022-09-26 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.614,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925520-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082155",NA,"as N","Nitrogen","Total","0.594","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0926-4-C/results/970082155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:53","STORET",7,NA,2022-09-26 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.594,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925520-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082164",NA,"as N","Nitrogen","Total","0.635","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0928-4-C/results/970082164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:53","STORET",7,NA,2022-09-28 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.635,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925520-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925520","WEBER R @ MILTON/STODDARD RD XING",NA,NA,NA,NA,"41.0616100000","-111.7285500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082174",NA,"as N","Nitrogen","Dissolved","0.655","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925520-0928-4-C/results/970082174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:53","STORET",7,NA,2022-09-28 19:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0616100000","-111.7285500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.655,"MG/L","Numeric","Not Reviewed","Uncensored",41.06161,-111.72855,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925530-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082184",NA,"as N","Nitrogen","Total","35.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925530-0405-4-C/results/970082184/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:54","STORET",7,NA,2022-04-05 21:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",35.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925530-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082193",NA,"as N","Nitrogen","Dissolved","31.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925530-0405-4-C/results/970082193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:54","STORET",7,NA,2022-04-05 21:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",31.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925530-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082207",NA,"as N","Nitrogen","Dissolved","33.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925530-0524-4-C/results/970082207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:55","STORET",7,NA,2022-05-24 20:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",33.1,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925530-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082210",NA,"as N","Nitrogen","Total","38.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925530-0524-4-C/results/970082210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:55","STORET",7,NA,2022-05-24 20:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",38.6,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925530-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082215",NA,"as N","Nitrogen","Dissolved","21.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925530-0712-4-C/results/970082215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:56","STORET",7,NA,2022-07-12 20:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925530-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082216",NA,"as N","Nitrogen","Total","28.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925530-0712-4-C/results/970082216/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:56","STORET",7,NA,2022-07-12 20:30:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",28.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925530-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082230",NA,"as N","Nitrogen","Dissolved","26.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925530-0802-4-C/results/970082230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:56","STORET",7,NA,2022-08-02 21:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",26.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925530-0802-4-C","Sample-Routine","Water",NA,2022-08-02,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082250",NA,"as N","Nitrogen","Total","31.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925530-0802-4-C/results/970082250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:56","STORET",7,NA,2022-08-02 21:10:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",31.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925530-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082255",NA,"as N","Nitrogen","Total","38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925530-0914-4-C/results/970082255/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:57","STORET",7,NA,2022-09-14 20:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",38,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925530-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082257",NA,"as N","Nitrogen","Dissolved","35.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925530-0914-4-C/results/970082257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:57","STORET",7,NA,2022-09-14 20:45:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",35.8,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925530-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082281",NA,"as N","Nitrogen","Total","37.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925530-0920-4-C/results/970082281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:58","STORET",7,NA,2022-09-20 18:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",37.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925530-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082285",NA,"as N","Nitrogen","Dissolved","34.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925530-0920-4-C/results/970082285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:58","STORET",7,NA,2022-09-20 18:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",34.7,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925530-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082321",NA,"as N","Nitrogen","Total","35.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925530-0928-4-C/results/970082321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:59","STORET",7,NA,2022-09-28 18:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",35.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925530-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925530","MORGAN LAGOONS",NA,NA,NA,NA,"41.0509400000","-111.6994900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082323",NA,"as N","Nitrogen","Dissolved","33.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925530-0928-4-C/results/970082323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:59","STORET",7,NA,2022-09-28 18:00:00,NA,"Facility Other",NA,"16020102",NA,NA,NA,NA,"41.0509400000","-111.6994900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",33.9,"MG/L","Numeric","Not Reviewed","Uncensored",41.05094,-111.69949,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925532-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082328",NA,"as N","Nitrogen","Dissolved","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925532-0406-4-C/results/970082328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:59","STORET",7,NA,2022-04-06 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925532-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082335",NA,"as N","Nitrogen","Total","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925532-0406-4-C/results/970082335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:21:59","STORET",7,NA,2022-04-06 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925532-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082359",NA,"as N","Nitrogen","Dissolved","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925532-0525-4-C/results/970082359/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:00","STORET",7,NA,2022-05-25 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925532-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082361",NA,"as N","Nitrogen","Total","0.243","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925532-0525-4-C/results/970082361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:00","STORET",7,NA,2022-05-25 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.243,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925532-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082381",NA,"as N","Nitrogen","Total","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925532-0616-4-C/results/970082381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:01","STORET",7,NA,2022-06-16 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925532-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082385",NA,"as N","Nitrogen","Dissolved","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925532-0616-4-C/results/970082385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:01","STORET",7,NA,2022-06-16 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925532-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082389",NA,"as N","Nitrogen","Total","0.538","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925532-0713-4-C/results/970082389/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:01","STORET",7,NA,2022-07-13 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.538,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925532-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082394",NA,"as N","Nitrogen","Dissolved","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925532-0713-4-C/results/970082394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:01","STORET",7,NA,2022-07-13 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925532-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082401",NA,"as N","Nitrogen","Total","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925532-0803-4-C/results/970082401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:02","STORET",7,NA,2022-08-03 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925532-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082407",NA,"as N","Nitrogen","Dissolved","0.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925532-0803-4-C/results/970082407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:02","STORET",7,NA,2022-08-03 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.43,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925532-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082425",NA,"as N","Nitrogen","Dissolved","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925532-0915-4-C/results/970082425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:02","STORET",7,NA,2022-09-15 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925532-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925532","Deep Creek at road xing below confl North Fk. Deep Creek",NA,NA,NA,NA,"41.0245500000","-111.7267000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082430",NA,"as N","Nitrogen","Total","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925532-0915-4-C/results/970082430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:03","STORET",7,NA,2022-09-15 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0245500000","-111.7267000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",41.02455,-111.7267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925533-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925533","Deep Creek at N Morgan Valley Dr xing",NA,NA,NA,NA,"41.0391500000","-111.7178000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082438",NA,"as N","Nitrogen","Total","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925533-0921-4-C/results/970082438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:03","STORET",7,NA,2022-09-21 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0391500000","-111.7178000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.03915,-111.7178,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925533-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925533","Deep Creek at N Morgan Valley Dr xing",NA,NA,NA,NA,"41.0391500000","-111.7178000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082483",NA,"as N","Nitrogen","Dissolved","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925533-0921-4-C/results/970082483/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:04","STORET",7,NA,2022-09-21 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0391500000","-111.7178000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.03915,-111.7178,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925533-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925533","Deep Creek at N Morgan Valley Dr xing",NA,NA,NA,NA,"41.0391500000","-111.7178000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082489",NA,"as N","Nitrogen","Dissolved","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925533-0927-4-C/results/970082489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:04","STORET",7,NA,2022-09-27 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0391500000","-111.7178000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",41.03915,-111.7178,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925533-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925533","Deep Creek at N Morgan Valley Dr xing",NA,NA,NA,NA,"41.0391500000","-111.7178000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082497",NA,"as N","Nitrogen","Total","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925533-0927-4-C/results/970082497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:04","STORET",7,NA,2022-09-27 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0391500000","-111.7178000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.03915,-111.7178,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925540-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082500",NA,"as N","Nitrogen","Dissolved","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925540-0405-4-C/results/970082500/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:05","STORET",7,NA,2022-04-05 21:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925540-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082504",NA,"as N","Nitrogen","Total","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925540-0405-4-C/results/970082504/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:05","STORET",7,NA,2022-04-05 21:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925540-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082525",NA,"as N","Nitrogen","Total","0.623","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925540-0524-4-C/results/970082525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:05","STORET",7,NA,2022-05-24 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.623,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925540-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082531",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925540-0524-4-C/results/970082531/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:06","STORET",7,NA,2022-05-24 20:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925540-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082541",NA,"as N","Nitrogen","Dissolved","0.475","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925540-0616-4-C/results/970082541/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:06","STORET",7,NA,2022-06-16 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.475,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925540-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082553",NA,"as N","Nitrogen","Total","0.524","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925540-0616-4-C/results/970082553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:06","STORET",7,NA,2022-06-16 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.524,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925540-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082570",NA,"as N","Nitrogen","Dissolved","0.936","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925540-0712-4-C/results/970082570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:07","STORET",7,NA,2022-07-12 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.936,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925540-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082571",NA,"as N","Nitrogen","Total","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925540-0712-4-C/results/970082571/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:07","STORET",7,NA,2022-07-12 20:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925540-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082588",NA,"as N","Nitrogen","Total","0.574","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925540-0803-4-C/results/970082588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:08","STORET",7,NA,2022-08-03 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.574,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925540-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082596",NA,"as N","Nitrogen","Dissolved","0.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925540-0803-4-C/results/970082596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:08","STORET",7,NA,2022-08-03 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.58,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925540-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082607",NA,"as N","Nitrogen","Dissolved","0.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925540-0915-4-C/results/970082607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:08","STORET",7,NA,2022-09-15 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925540-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082609",NA,"as N","Nitrogen","Total","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925540-0915-4-C/results/970082609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:08","STORET",7,NA,2022-09-15 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925540-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082631",NA,"as N","Nitrogen","Dissolved","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0920-4-C/results/970082631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:09","STORET",7,NA,2022-09-20 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925540-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082644",NA,"as N","Nitrogen","Total","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0920-4-C/results/970082644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:10","STORET",7,NA,2022-09-20 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925540-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082662",NA,"as N","Nitrogen","Dissolved","0.462","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0926-4-C/results/970082662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:10","STORET",7,NA,2022-09-26 20:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.462,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925540-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082668",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0926-4-C/results/970082668/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:11","STORET",7,NA,2022-09-26 20:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925540-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082679",NA,"as N","Nitrogen","Total","0.379","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0928-4-C/results/970082679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:11","STORET",7,NA,2022-09-28 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.379,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925540-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925540","WEBER R AB MORGAN LAGOONS",NA,NA,NA,NA,"41.0421600000","-111.6797000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082684",NA,"as N","Nitrogen","Dissolved","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925540-0928-4-C/results/970082684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:11","STORET",7,NA,2022-09-28 18:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0421600000","-111.6797000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",41.04216,-111.6797,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925610-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082691",NA,"as N","Nitrogen","Dissolved","1.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925610-0404-4-C/results/970082691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:12","STORET",7,NA,2022-04-04 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.77,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925610-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082710",NA,"as N","Nitrogen","Total","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925610-0404-4-C/results/970082710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:12","STORET",7,NA,2022-04-04 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925610-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082717",NA,"as N","Nitrogen","Dissolved","0.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925610-0509-4-C/results/970082717/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:13","STORET",7,NA,2022-05-09 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925610-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082722",NA,"as N","Nitrogen","Total","0.762","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925610-0509-4-C/results/970082722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:13","STORET",7,NA,2022-05-09 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.762,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925610-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082727",NA,"as N","Nitrogen","Total","0.694","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925610-0613-4-C/results/970082727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:14","STORET",7,NA,2022-06-13 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.694,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925610-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082739",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925610-0613-4-C/results/970082739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:14","STORET",7,NA,2022-06-13 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925610-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082752",NA,"as N","Nitrogen","Total","0.375","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925610-0718-4-C/results/970082752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:15","STORET",7,NA,2022-07-18 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.375,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925610-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082756",NA,"as N","Nitrogen","Dissolved","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925610-0718-4-C/results/970082756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:15","STORET",7,NA,2022-07-18 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925610-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082779",NA,"as N","Nitrogen","Total","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925610-0808-4-C/results/970082779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:16","STORET",7,NA,2022-08-08 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925610-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082781",NA,"as N","Nitrogen","Dissolved","0.566","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925610-0808-4-C/results/970082781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:16","STORET",7,NA,2022-08-08 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.566,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925610-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082795",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925610-0912-4-C/results/970082795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:16","STORET",7,NA,2022-09-12 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925610-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925610","TOLL CANYON CK @I80 XING AB CNFL/ E CAN CK",NA,NA,NA,NA,"40.7542300000","-111.5703500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082796",NA,"as N","Nitrogen","Total","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925610-0912-4-C/results/970082796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:16","STORET",7,NA,2022-09-12 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7542300000","-111.5703500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",40.75423,-111.57035,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925630-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082798",NA,"as N","Nitrogen","Dissolved","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925630-0404-4-C/results/970082798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:17","STORET",7,NA,2022-04-04 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925630-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082815",NA,"as N","Nitrogen","Total","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925630-0404-4-C/results/970082815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:17","STORET",7,NA,2022-04-04 18:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925630-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082824",NA,"as N","Nitrogen","Dissolved","0.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925630-0509-4-C/results/970082824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:18","STORET",7,NA,2022-05-09 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925630-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082831",NA,"as N","Nitrogen","Total","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925630-0509-4-C/results/970082831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:18","STORET",7,NA,2022-05-09 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925630-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082855",NA,"as N","Nitrogen","Dissolved","0.848","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925630-0613-4-C/results/970082855/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:19","STORET",7,NA,2022-06-13 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.848,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925630-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082858",NA,"as N","Nitrogen","Total","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925630-0613-4-C/results/970082858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:19","STORET",7,NA,2022-06-13 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925630-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"15:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082868",NA,"as N","Nitrogen","Total","0.881","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925630-0630-4-C/results/970082868/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:20","STORET",7,NA,2022-06-30 22:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.881,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925630-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"15:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082873",NA,"as N","Nitrogen","Dissolved","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925630-0630-4-C/results/970082873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:20","STORET",7,NA,2022-06-30 22:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925630-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082893",NA,"as N","Nitrogen","Dissolved","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925630-0718-4-C/results/970082893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:21","STORET",7,NA,2022-07-18 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925630-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082894",NA,"as N","Nitrogen","Total","0.552","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925630-0718-4-C/results/970082894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:21","STORET",7,NA,2022-07-18 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.552,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925630-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082899",NA,"as N","Nitrogen","Dissolved","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925630-0808-4-C/results/970082899/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:22","STORET",7,NA,2022-08-08 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925630-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082917",NA,"as N","Nitrogen","Total","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925630-0808-4-C/results/970082917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:22","STORET",7,NA,2022-08-08 20:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925630-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082923",NA,"as N","Nitrogen","Dissolved","1.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925630-0912-4-C/results/970082923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:23","STORET",7,NA,2022-09-12 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925630-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925630","UNNAMED CK @ U224 XING 3/4 MI S KIMBALL JCT",NA,NA,NA,NA,"40.7145800000","-111.5449400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082929",NA,"as N","Nitrogen","Total","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925630-0912-4-C/results/970082929/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:23","STORET",7,NA,2022-09-12 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7145800000","-111.5449400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",40.71458,-111.54494,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925650-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082941",NA,"as N","Nitrogen","Total","0.887","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925650-0404-4-C/results/970082941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:24","STORET",7,NA,2022-04-04 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.887,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925650-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082945",NA,"as N","Nitrogen","Dissolved","0.877","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925650-0404-4-C/results/970082945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:24","STORET",7,NA,2022-04-04 19:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.877,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925650-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082958",NA,"as N","Nitrogen","Dissolved","0.622","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925650-0509-4-C/results/970082958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:24","STORET",7,NA,2022-05-09 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.622,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925650-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082959",NA,"as N","Nitrogen","Total","0.606","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925650-0509-4-C/results/970082959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:24","STORET",7,NA,2022-05-09 20:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.606,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925650-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082987",NA,"as N","Nitrogen","Total","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925650-0613-4-C/results/970082987/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:26","STORET",7,NA,2022-06-13 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925650-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082992",NA,"as N","Nitrogen","Dissolved","0.973","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925650-0613-4-C/results/970082992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:26","STORET",7,NA,2022-06-13 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.973,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925650-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970082998",NA,"as N","Nitrogen","Dissolved","0.542","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925650-0718-4-C/results/970082998/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:27","STORET",7,NA,2022-07-18 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.542,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925650-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083000",NA,"as N","Nitrogen","Total","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925650-0718-4-C/results/970083000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:27","STORET",7,NA,2022-07-18 20:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925650-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083010",NA,"as N","Nitrogen","Dissolved","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925650-0808-4-C/results/970083010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:27","STORET",7,NA,2022-08-08 20:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925650-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083022",NA,"as N","Nitrogen","Total","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925650-0808-4-C/results/970083022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:28","STORET",7,NA,2022-08-08 20:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925650-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083032",NA,"as N","Nitrogen","Dissolved","0.867","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925650-0912-4-C/results/970083032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:28","STORET",7,NA,2022-09-12 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.867,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925650-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925650","SPRING CK @ U224 XING 1/4 MI N OLD RANCH RD",NA,NA,NA,NA,"40.6967700000","-111.5439900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083035",NA,"as N","Nitrogen","Total","0.512","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925650-0912-4-C/results/970083035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:28","STORET",7,NA,2022-09-12 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6967700000","-111.5439900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.512,"MG/L","Numeric","Not Reviewed","Uncensored",40.69677,-111.54399,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925660-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083050",NA,"as N","Nitrogen","Dissolved","0.878","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925660-0404-4-C/results/970083050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:29","STORET",7,NA,2022-04-04 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.878,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925660-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083056",NA,"as N","Nitrogen","Total","0.656","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925660-0404-4-C/results/970083056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:29","STORET",7,NA,2022-04-04 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.656,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925660-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083067",NA,"as N","Nitrogen","Dissolved","0.544","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925660-0509-4-C/results/970083067/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:30","STORET",7,NA,2022-05-09 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.544,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925660-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083073",NA,"as N","Nitrogen","Total","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925660-0509-4-C/results/970083073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:30","STORET",7,NA,2022-05-09 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925660-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083080",NA,"as N","Nitrogen","Dissolved","0.629","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925660-0613-4-C/results/970083080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:31","STORET",7,NA,2022-06-13 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.629,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925660-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083081",NA,"as N","Nitrogen","Total","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925660-0613-4-C/results/970083081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:31","STORET",7,NA,2022-06-13 19:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925660-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"15:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083113",NA,"as N","Nitrogen","Total","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925660-0630-4-C/results/970083113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:32","STORET",7,NA,2022-06-30 22:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925660-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"15:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083115",NA,"as N","Nitrogen","Dissolved","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925660-0630-4-C/results/970083115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:32","STORET",7,NA,2022-06-30 22:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925660-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083133",NA,"as N","Nitrogen","Total","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925660-0718-4-C/results/970083133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:33","STORET",7,NA,2022-07-18 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925660-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083134",NA,"as N","Nitrogen","Dissolved","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925660-0718-4-C/results/970083134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:33","STORET",7,NA,2022-07-18 20:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925660-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083148",NA,"as N","Nitrogen","Dissolved","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925660-0808-4-C/results/970083148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:34","STORET",7,NA,2022-08-08 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925660-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083161",NA,"as N","Nitrogen","Total","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925660-0808-4-C/results/970083161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:34","STORET",7,NA,2022-08-08 20:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4925660-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083174",NA,"as N","Nitrogen","Dissolved","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925660-0823-4-C/results/970083174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:35","STORET",7,NA,2022-08-23 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4925660-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083175",NA,"as N","Nitrogen","Total","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925660-0823-4-C/results/970083175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:35","STORET",7,NA,2022-08-23 21:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4925660-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083205",NA,"as N","Nitrogen","Dissolved","0.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4925660-0929-4-C/results/970083205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:36","STORET",7,NA,2022-09-29 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4925660-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925660","Willow Draw @ the End of Voelker Ct in Snyderville",NA,NA,NA,NA,"40.6902300000","-111.5465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083210",NA,"as N","Nitrogen","Total","0.166","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4925660-0929-4-C/results/970083210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:36","STORET",7,NA,2022-09-29 19:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.6902300000","-111.5465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.166,"MG/L","Numeric","Pass","Uncensored",40.69023,-111.54658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925750-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925750","LOST CK AB CNFL/WEBER R",NA,NA,NA,NA,"41.0601800000","-111.5373600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083241",NA,"as N","Nitrogen","Total","0.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925750-0919-4-C/results/970083241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:37","STORET",7,NA,2022-09-19 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0601800000","-111.5373600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.06018,-111.53736,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925750-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925750","LOST CK AB CNFL/WEBER R",NA,NA,NA,NA,"41.0601800000","-111.5373600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083252",NA,"as N","Nitrogen","Dissolved","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925750-0919-4-C/results/970083252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:37","STORET",7,NA,2022-09-19 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0601800000","-111.5373600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",41.06018,-111.53736,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925750-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925750","LOST CK AB CNFL/WEBER R",NA,NA,NA,NA,"41.0601800000","-111.5373600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083270",NA,"as N","Nitrogen","Dissolved","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925750-0927-4-C/results/970083270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:38","STORET",7,NA,2022-09-27 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0601800000","-111.5373600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",41.06018,-111.53736,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925750-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925750","LOST CK AB CNFL/WEBER R",NA,NA,NA,NA,"41.0601800000","-111.5373600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083277",NA,"as N","Nitrogen","Total","0.473","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925750-0927-4-C/results/970083277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:38","STORET",7,NA,2022-09-27 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0601800000","-111.5373600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.473,"MG/L","Numeric","Not Reviewed","Uncensored",41.06018,-111.53736,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925760-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083285",NA,"as N","Nitrogen","Dissolved","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925760-0406-4-C/results/970083285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:39","STORET",7,NA,2022-04-06 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925760-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083304",NA,"as N","Nitrogen","Total","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925760-0406-4-C/results/970083304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:39","STORET",7,NA,2022-04-06 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925760-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083308",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925760-0525-4-C/results/970083308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:40","STORET",7,NA,2022-05-25 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925760-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083309",NA,"as N","Nitrogen","Dissolved","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925760-0525-4-C/results/970083309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:40","STORET",7,NA,2022-05-25 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925760-0623-4-C","Sample-Routine","Water",NA,2022-06-23,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083316",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925760-0623-4-C/results/970083316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:40","STORET",7,NA,2022-06-23 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925760-0623-4-C","Sample-Routine","Water",NA,2022-06-23,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083331",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925760-0623-4-C/results/970083331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:41","STORET",7,NA,2022-06-23 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925760-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083344",NA,"as N","Nitrogen","Dissolved","0.837","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925760-0713-4-C/results/970083344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:41","STORET",7,NA,2022-07-13 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.837,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925760-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083350",NA,"as N","Nitrogen","Total","0.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925760-0713-4-C/results/970083350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:42","STORET",7,NA,2022-07-13 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925760-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083362",NA,"as N","Nitrogen","Total","0.549","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925760-0803-4-C/results/970083362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:42","STORET",7,NA,2022-08-03 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.549,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925760-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083375",NA,"as N","Nitrogen","Dissolved","0.457","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925760-0803-4-C/results/970083375/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:43","STORET",7,NA,2022-08-03 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.457,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925760-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083378",NA,"as N","Nitrogen","Total","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925760-0915-4-C/results/970083378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:43","STORET",7,NA,2022-09-15 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925760-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925760","Lost Ck at Hwy 158 Xing",NA,NA,NA,NA,"41.0703200000","-111.5210200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083381",NA,"as N","Nitrogen","Dissolved","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925760-0915-4-C/results/970083381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:43","STORET",7,NA,2022-09-15 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0703200000","-111.5210200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",41.07032,-111.52102,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925900-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083392",NA,"as N","Nitrogen","Dissolved","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925900-0406-4-C/results/970083392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:44","STORET",7,NA,2022-04-06 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925900-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083399",NA,"as N","Nitrogen","Total","0.491","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925900-0406-4-C/results/970083399/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:44","STORET",7,NA,2022-04-06 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.491,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925900-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083420",NA,"as N","Nitrogen","Dissolved","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925900-0525-4-C/results/970083420/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:45","STORET",7,NA,2022-05-25 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925900-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083422",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925900-0525-4-C/results/970083422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:45","STORET",7,NA,2022-05-25 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925900-0623-4-C","Sample-Routine","Water",NA,2022-06-23,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083426",NA,"as N","Nitrogen","Dissolved","0.735","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925900-0623-4-C/results/970083426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:45","STORET",7,NA,2022-06-23 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.735,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925900-0623-4-C","Sample-Routine","Water",NA,2022-06-23,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083443",NA,"as N","Nitrogen","Total","0.632","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925900-0623-4-C/results/970083443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:45","STORET",7,NA,2022-06-23 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.632,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925900-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083460",NA,"as N","Nitrogen","Dissolved","0.722","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925900-0630-4-C/results/970083460/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:46","STORET",7,NA,2022-06-30 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.722,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4925900-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083475",NA,"as N","Nitrogen","Total","0.591","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4925900-0630-4-C/results/970083475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:46","STORET",7,NA,2022-06-30 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.591,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925900-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083480",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925900-0713-4-C/results/970083480/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:47","STORET",7,NA,2022-07-13 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925900-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083481",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925900-0713-4-C/results/970083481/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:47","STORET",7,NA,2022-07-13 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925900-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083488",NA,"as N","Nitrogen","Dissolved","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925900-0803-4-C/results/970083488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:47","STORET",7,NA,2022-08-03 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925900-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083490",NA,"as N","Nitrogen","Total","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925900-0803-4-C/results/970083490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:47","STORET",7,NA,2022-08-03 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925900-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"13:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083515",NA,"as N","Nitrogen","Total","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925900-0915-4-C/results/970083515/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:48","STORET",7,NA,2022-09-15 20:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925900-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"13:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925900","LOST CK BL LOST CK RES",NA,NA,NA,NA,"41.1796700000","-111.4038100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083517",NA,"as N","Nitrogen","Dissolved","0.407","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925900-0915-4-C/results/970083517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:48","STORET",7,NA,2022-09-15 20:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1796700000","-111.4038100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.407,"MG/L","Numeric","Not Reviewed","Uncensored",41.17967,-111.40381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925910-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-06,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083522",NA,"as N","Nitrogen","Total","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-2-C/results/970083522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:48","STORET",7,NA,2022-07-06 18:30:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925910-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-06,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083531",NA,"as N","Nitrogen","Dissolved","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-2-C/results/970083531/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:48","STORET",7,NA,2022-07-06 18:30:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925910-0706-23-C","Sample-Routine","Water",NA,2022-07-06,"11:50:00","MST",NA,NA,NA,"AboveThermoclin","4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083539",NA,"as N","Nitrogen","Total","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-23-C/results/970083539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:49","STORET",7,NA,2022-07-06 18:50:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925910-0706-23-C","Sample-Routine","Water",NA,2022-07-06,"11:50:00","MST",NA,NA,NA,"AboveThermoclin","4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083542",NA,"as N","Nitrogen","Dissolved","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-23-C/results/970083542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:49","STORET",7,NA,2022-07-06 18:50:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925910-0706-27-C","Sample-Routine","Water",NA,2022-07-06,"11:55:00","MST",NA,NA,NA,"BelowThermoclin","8","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083544",NA,"as N","Nitrogen","Dissolved","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-27-C/results/970083544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:49","STORET",7,NA,2022-07-06 18:55:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925910-0706-27-C","Sample-Routine","Water",NA,2022-07-06,"11:55:00","MST",NA,NA,NA,"BelowThermoclin","8","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083547",NA,"as N","Nitrogen","Total","0.188","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-27-C/results/970083547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:50","STORET",7,NA,2022-07-06 18:55:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.188,"MG/L","Numeric","Pass","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925910-0706-29-C","Sample-Routine","Water",NA,2022-07-06,"11:40:00","MST",NA,NA,NA,"Bottom","22","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083567",NA,"as N","Nitrogen","Dissolved","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-29-C/results/970083567/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:50","STORET",7,NA,2022-07-06 18:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925910-0706-29-C","Sample-Routine","Water",NA,2022-07-06,"11:40:00","MST",NA,NA,NA,"Bottom","22","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083577",NA,"as N","Nitrogen","Total","0.385","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925910-0706-29-C/results/970083577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:51","STORET",7,NA,2022-07-06 18:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.385,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925910-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083583",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-2-C/results/970083583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:51","STORET",7,NA,2022-09-21 17:45:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925910-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083587",NA,"as N","Nitrogen","Dissolved","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-2-C/results/970083587/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:51","STORET",7,NA,2022-09-21 17:45:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925910-0921-23-C","Sample-Routine","Water",NA,2022-09-21,"11:15:00","MST",NA,NA,NA,"AboveThermoclin","14","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083594",NA,"as N","Nitrogen","Total","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-23-C/results/970083594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:52","STORET",7,NA,2022-09-21 18:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925910-0921-23-C","Sample-Routine","Water",NA,2022-09-21,"11:15:00","MST",NA,NA,NA,"AboveThermoclin","14","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083598",NA,"as N","Nitrogen","Dissolved","0.327","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-23-C/results/970083598/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:52","STORET",7,NA,2022-09-21 18:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.327,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925910-0921-27-C","Sample-Routine","Water",NA,2022-09-21,"11:20:00","MST",NA,NA,NA,"BelowThermoclin","17","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083600",NA,"as N","Nitrogen","Dissolved","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-27-C/results/970083600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:52","STORET",7,NA,2022-09-21 18:20:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925910-0921-27-C","Sample-Routine","Water",NA,2022-09-21,"11:20:00","MST",NA,NA,NA,"BelowThermoclin","17","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083601",NA,"as N","Nitrogen","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-27-C/results/970083601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:52","STORET",7,NA,2022-09-21 18:20:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925910-0921-29-C","Sample-Routine","Water",NA,2022-09-21,"11:00:00","MST",NA,NA,NA,"Bottom","23.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083609",NA,"as N","Nitrogen","Dissolved","0.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-29-C/results/970083609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:53","STORET",7,NA,2022-09-21 18:00:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.39,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",23.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925910-0921-29-C","Sample-Routine","Water",NA,2022-09-21,"11:00:00","MST",NA,NA,NA,"Bottom","23.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925910","LOST CK RES AB DAM 01",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083625",NA,"as N","Nitrogen","Total","0.282","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925910-0921-29-C/results/970083625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:53","STORET",7,NA,2022-09-21 18:00:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.282,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",23.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925912-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-06,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925912","LOST CK RES AB DAM 01 Replicate of 4925910",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083636",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925912-0706-2-C/results/970083636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:53","STORET",7,NA,2022-07-06 19:00:00,NA,"Lake","Replicate of 4925910","16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925912-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-06,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925912","LOST CK RES AB DAM 01 Replicate of 4925910",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083638",NA,"as N","Nitrogen","Dissolved","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925912-0706-2-C/results/970083638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:53","STORET",7,NA,2022-07-06 19:00:00,NA,"Lake","Replicate of 4925910","16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925912-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925912","LOST CK RES AB DAM 01 Replicate of 4925910",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083649",NA,"as N","Nitrogen","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925912-0921-2-C/results/970083649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:54","STORET",7,NA,2022-09-21 17:50:00,NA,"Lake","Replicate of 4925910","16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925912-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925912","LOST CK RES AB DAM 01 Replicate of 4925910",NA,NA,NA,NA,"41.1857800000","-111.3985300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083653",NA,"as N","Nitrogen","Dissolved","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925912-0921-2-C/results/970083653/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:54","STORET",7,NA,2022-09-21 17:50:00,NA,"Lake","Replicate of 4925910","16020101",NA,NA,NA,NA,"41.1857800000","-111.3985300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",41.18578,-111.39853,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925920-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-06,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925920","LOST CK RES MIDWAY UP RIGHT ARM 02",NA,NA,NA,NA,"41.1882800000","-111.3832500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083663",NA,"as N","Nitrogen","Dissolved","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925920-0706-2-C/results/970083663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:54","STORET",7,NA,2022-07-06 17:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1882800000","-111.3832500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",41.18828,-111.38325,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925920-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-06,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925920","LOST CK RES MIDWAY UP RIGHT ARM 02",NA,NA,NA,NA,"41.1882800000","-111.3832500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083665",NA,"as N","Nitrogen","Total","0.192","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925920-0706-2-C/results/970083665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:55","STORET",7,NA,2022-07-06 17:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1882800000","-111.3832500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.192,"MG/L","Numeric","Pass","Uncensored",41.18828,-111.38325,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925920-0706-29-C","Sample-Routine","Water",NA,2022-07-06,"10:55:00","MST",NA,NA,NA,"Bottom","14","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925920","LOST CK RES MIDWAY UP RIGHT ARM 02",NA,NA,NA,NA,"41.1882800000","-111.3832500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083674",NA,"as N","Nitrogen","Dissolved","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925920-0706-29-C/results/970083674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:55","STORET",7,NA,2022-07-06 17:55:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1882800000","-111.3832500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",41.18828,-111.38325,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925920-0706-29-C","Sample-Routine","Water",NA,2022-07-06,"10:55:00","MST",NA,NA,NA,"Bottom","14","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925920","LOST CK RES MIDWAY UP RIGHT ARM 02",NA,NA,NA,NA,"41.1882800000","-111.3832500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083677",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925920-0706-29-C/results/970083677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:55","STORET",7,NA,2022-07-06 17:55:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1882800000","-111.3832500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",41.18828,-111.38325,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925920-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925920","LOST CK RES MIDWAY UP RIGHT ARM 02",NA,NA,NA,NA,"41.1882800000","-111.3832500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083685",NA,"as N","Nitrogen","Total","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925920-0921-2-C/results/970083685/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:56","STORET",7,NA,2022-09-21 17:10:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1882800000","-111.3832500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",41.18828,-111.38325,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925920-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925920","LOST CK RES MIDWAY UP RIGHT ARM 02",NA,NA,NA,NA,"41.1882800000","-111.3832500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083689",NA,"as N","Nitrogen","Dissolved","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925920-0921-2-C/results/970083689/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:56","STORET",7,NA,2022-09-21 17:10:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1882800000","-111.3832500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",41.18828,-111.38325,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925920-0921-29-C","Sample-Routine","Water",NA,2022-09-21,"10:20:00","MST",NA,NA,NA,"Bottom","8","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925920","LOST CK RES MIDWAY UP RIGHT ARM 02",NA,NA,NA,NA,"41.1882800000","-111.3832500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083693",NA,"as N","Nitrogen","Dissolved","0.158","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925920-0921-29-C/results/970083693/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:56","STORET",7,NA,2022-09-21 17:20:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1882800000","-111.3832500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.158,"MG/L","Numeric","Pass","Uncensored",41.18828,-111.38325,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925920-0921-29-C","Sample-Routine","Water",NA,2022-09-21,"10:20:00","MST",NA,NA,NA,"Bottom","8","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925920","LOST CK RES MIDWAY UP RIGHT ARM 02",NA,NA,NA,NA,"41.1882800000","-111.3832500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083698",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925920-0921-29-C/results/970083698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:56","STORET",7,NA,2022-09-21 17:20:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1882800000","-111.3832500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",41.18828,-111.38325,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925930-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083705",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925930-0406-4-C/results/970083705/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:57","STORET",7,NA,2022-04-06 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925930-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083726",NA,"as N","Nitrogen","Dissolved","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925930-0406-4-C/results/970083726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:57","STORET",7,NA,2022-04-06 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925930-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083733",NA,"as N","Nitrogen","Dissolved","0.317","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925930-0525-4-C/results/970083733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:57","STORET",7,NA,2022-05-25 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.317,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925930-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083735",NA,"as N","Nitrogen","Total","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925930-0525-4-C/results/970083735/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:57","STORET",7,NA,2022-05-25 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925930-0623-4-C","Sample-Routine","Water",NA,2022-06-23,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083740",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925930-0623-4-C/results/970083740/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:58","STORET",7,NA,2022-06-23 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925930-0623-4-C","Sample-Routine","Water",NA,2022-06-23,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083758",NA,"as N","Nitrogen","Dissolved","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925930-0623-4-C/results/970083758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:58","STORET",7,NA,2022-06-23 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925930-0706-4-C","Sample-Routine","Water",NA,2022-07-06,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083766",NA,"as N","Nitrogen","Total","0.374","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925930-0706-4-C/results/970083766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:59","STORET",7,NA,2022-07-06 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.374,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925930-0706-4-C","Sample-Routine","Water",NA,2022-07-06,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083780",NA,"as N","Nitrogen","Dissolved","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925930-0706-4-C/results/970083780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:59","STORET",7,NA,2022-07-06 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925930-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083796",NA,"as N","Nitrogen","Total","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925930-0713-4-C/results/970083796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:22:59","STORET",7,NA,2022-07-13 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925930-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083804",NA,"as N","Nitrogen","Dissolved","0.511","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925930-0713-4-C/results/970083804/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:00","STORET",7,NA,2022-07-13 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.511,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925930-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083812",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925930-0803-4-C/results/970083812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:00","STORET",7,NA,2022-08-03 21:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925930-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083818",NA,"as N","Nitrogen","Total","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925930-0803-4-C/results/970083818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:00","STORET",7,NA,2022-08-03 21:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4925930-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083845",NA,"as N","Nitrogen","Total","0.595","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925930-0823-4-C/results/970083845/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:01","STORET",7,NA,2022-08-23 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.595,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4925930-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083856",NA,"as N","Nitrogen","Dissolved","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4925930-0823-4-C/results/970083856/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:01","STORET",7,NA,2022-08-23 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925930-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083862",NA,"as N","Nitrogen","Dissolved","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925930-0915-4-C/results/970083862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:02","STORET",7,NA,2022-09-15 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925930-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083863",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925930-0915-4-C/results/970083863/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:02","STORET",7,NA,2022-09-15 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925930-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083867",NA,"as N","Nitrogen","Dissolved","0.344","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925930-0921-4-C/results/970083867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:02","STORET",7,NA,2022-09-21 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.344,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925930-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925930","FRANCIS CANYON CK AB LOST CK RES",NA,NA,NA,NA,"41.1824400000","-111.3727000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083889",NA,"as N","Nitrogen","Total","0.316","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925930-0921-4-C/results/970083889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:02","STORET",7,NA,2022-09-21 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1824400000","-111.3727000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.316,"MG/L","Numeric","Not Reviewed","Uncensored",41.18244,-111.3727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925940-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-06,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925940","LOST CK RES MIDWAY UP MAIN ARM 03",NA,NA,NA,NA,"41.1971700000","-111.3843600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083898",NA,"as N","Nitrogen","Dissolved","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925940-0706-2-C/results/970083898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:03","STORET",7,NA,2022-07-06 19:20:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1971700000","-111.3843600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",41.19717,-111.38436,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925940-0706-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-06,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925940","LOST CK RES MIDWAY UP MAIN ARM 03",NA,NA,NA,NA,"41.1971700000","-111.3843600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083905",NA,"as N","Nitrogen","Total","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925940-0706-2-C/results/970083905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:03","STORET",7,NA,2022-07-06 19:20:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1971700000","-111.3843600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",41.19717,-111.38436,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925940-0706-29-C","Sample-Routine","Water",NA,2022-07-06,"12:35:00","MST",NA,NA,NA,"Bottom","19","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925940","LOST CK RES MIDWAY UP MAIN ARM 03",NA,NA,NA,NA,"41.1971700000","-111.3843600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083917",NA,"as N","Nitrogen","Dissolved","0.391","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925940-0706-29-C/results/970083917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:04","STORET",7,NA,2022-07-06 19:35:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1971700000","-111.3843600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.391,"MG/L","Numeric","Not Reviewed","Uncensored",41.19717,-111.38436,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925940-0706-29-C","Sample-Routine","Water",NA,2022-07-06,"12:35:00","MST",NA,NA,NA,"Bottom","19","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925940","LOST CK RES MIDWAY UP MAIN ARM 03",NA,NA,NA,NA,"41.1971700000","-111.3843600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083918",NA,"as N","Nitrogen","Total","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925940-0706-29-C/results/970083918/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:04","STORET",7,NA,2022-07-06 19:35:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1971700000","-111.3843600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",41.19717,-111.38436,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",19,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925940-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925940","LOST CK RES MIDWAY UP MAIN ARM 03",NA,NA,NA,NA,"41.1971700000","-111.3843600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083929",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925940-0921-2-C/results/970083929/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:04","STORET",7,NA,2022-09-21 18:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1971700000","-111.3843600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",41.19717,-111.38436,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925940-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925940","LOST CK RES MIDWAY UP MAIN ARM 03",NA,NA,NA,NA,"41.1971700000","-111.3843600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083931",NA,"as N","Nitrogen","Total","0.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925940-0921-2-C/results/970083931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:04","STORET",7,NA,2022-09-21 18:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1971700000","-111.3843600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.71,"MG/L","Numeric","Not Reviewed","Uncensored",41.19717,-111.38436,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925940-0921-29-C","Sample-Routine","Water",NA,2022-09-21,"11:50:00","MST",NA,NA,NA,"Bottom","14.1","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925940","LOST CK RES MIDWAY UP MAIN ARM 03",NA,NA,NA,NA,"41.1971700000","-111.3843600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083932",NA,"as N","Nitrogen","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925940-0921-29-C/results/970083932/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:05","STORET",7,NA,2022-09-21 18:50:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1971700000","-111.3843600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",41.19717,-111.38436,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",14.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925940-0921-29-C","Sample-Routine","Water",NA,2022-09-21,"11:50:00","MST",NA,NA,NA,"Bottom","14.1","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925940","LOST CK RES MIDWAY UP MAIN ARM 03",NA,NA,NA,NA,"41.1971700000","-111.3843600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083936",NA,"as N","Nitrogen","Dissolved","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925940-0921-29-C/results/970083936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:05","STORET",7,NA,2022-09-21 18:50:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"41.1971700000","-111.3843600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",41.19717,-111.38436,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",14.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925950-0706-4-C","Sample-Routine","Water",NA,2022-07-06,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925950","LOST CK AB LOST CK RES",NA,NA,NA,NA,"41.2135600000","-111.3657500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083953",NA,"as N","Nitrogen","Total","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925950-0706-4-C/results/970083953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:05","STORET",7,NA,2022-07-06 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.2135600000","-111.3657500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",41.21356,-111.36575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220705-4925950-0706-4-C","Sample-Routine","Water",NA,2022-07-06,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925950","LOST CK AB LOST CK RES",NA,NA,NA,NA,"41.2135600000","-111.3657500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083969",NA,"as N","Nitrogen","Dissolved","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220705-4925950-0706-4-C/results/970083969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:06","STORET",7,NA,2022-07-06 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.2135600000","-111.3657500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",41.21356,-111.36575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925950-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925950","LOST CK AB LOST CK RES",NA,NA,NA,NA,"41.2135600000","-111.3657500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083980",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925950-0921-4-C/results/970083980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:06","STORET",7,NA,2022-09-21 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.2135600000","-111.3657500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",41.21356,-111.36575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4925950-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925950","LOST CK AB LOST CK RES",NA,NA,NA,NA,"41.2135600000","-111.3657500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970083990",NA,"as N","Nitrogen","Dissolved","0.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4925950-0921-4-C/results/970083990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:06","STORET",7,NA,2022-09-21 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.2135600000","-111.3657500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.21356,-111.36575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925955-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925955","WEBER R AB TAGGART TOWN BL I-84 XING (Hg Fish Tissue)",NA,NA,NA,NA,"41.0587400000","-111.5873400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084024",NA,"as N","Nitrogen","Dissolved","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925955-0921-4-C/results/970084024/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:07","STORET",7,NA,2022-09-21 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0587400000","-111.5873400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",41.05874,-111.58734,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925955-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925955","WEBER R AB TAGGART TOWN BL I-84 XING (Hg Fish Tissue)",NA,NA,NA,NA,"41.0587400000","-111.5873400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084049",NA,"as N","Nitrogen","Total","0.405","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925955-0921-4-C/results/970084049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:07","STORET",7,NA,2022-09-21 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0587400000","-111.5873400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.405,"MG/L","Numeric","Not Reviewed","Uncensored",41.05874,-111.58734,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925955-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925955","WEBER R AB TAGGART TOWN BL I-84 XING (Hg Fish Tissue)",NA,NA,NA,NA,"41.0587400000","-111.5873400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084060",NA,"as N","Nitrogen","Total","0.371","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925955-0926-4-C/results/970084060/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:08","STORET",7,NA,2022-09-26 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0587400000","-111.5873400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.371,"MG/L","Numeric","Not Reviewed","Uncensored",41.05874,-111.58734,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925955-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925955","WEBER R AB TAGGART TOWN BL I-84 XING (Hg Fish Tissue)",NA,NA,NA,NA,"41.0587400000","-111.5873400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084061",NA,"as N","Nitrogen","Dissolved","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925955-0926-4-C/results/970084061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:08","STORET",7,NA,2022-09-26 19:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0587400000","-111.5873400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.05874,-111.58734,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925960-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084080",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925960-0406-4-C/results/970084080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:09","STORET",7,NA,2022-04-06 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925960-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084089",NA,"as N","Nitrogen","Dissolved","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925960-0406-4-C/results/970084089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:09","STORET",7,NA,2022-04-06 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925960-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084098",NA,"as N","Nitrogen","Total","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925960-0525-4-C/results/970084098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:10","STORET",7,NA,2022-05-25 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925960-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084107",NA,"as N","Nitrogen","Dissolved","0.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925960-0525-4-C/results/970084107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:10","STORET",7,NA,2022-05-25 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.51,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925960-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"15:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084123",NA,"as N","Nitrogen","Dissolved","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925960-0616-4-C/results/970084123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:11","STORET",7,NA,2022-06-16 22:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925960-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"15:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084131",NA,"as N","Nitrogen","Total","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925960-0616-4-C/results/970084131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:11","STORET",7,NA,2022-06-16 22:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925960-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084136",NA,"as N","Nitrogen","Total","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925960-0713-4-C/results/970084136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:11","STORET",7,NA,2022-07-13 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925960-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084142",NA,"as N","Nitrogen","Dissolved","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925960-0713-4-C/results/970084142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:11","STORET",7,NA,2022-07-13 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925960-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084145",NA,"as N","Nitrogen","Dissolved","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925960-0803-4-C/results/970084145/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:12","STORET",7,NA,2022-08-03 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925960-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084152",NA,"as N","Nitrogen","Total","0.488","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925960-0803-4-C/results/970084152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:12","STORET",7,NA,2022-08-03 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.488,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925960-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084177",NA,"as N","Nitrogen","Dissolved","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925960-0915-4-C/results/970084177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:13","STORET",7,NA,2022-09-15 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925960-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084179",NA,"as N","Nitrogen","Total","0.327","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925960-0915-4-C/results/970084179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:13","STORET",7,NA,2022-09-15 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.327,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925960-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084185",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0919-4-C/results/970084185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:13","STORET",7,NA,2022-09-19 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925960-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084211",NA,"as N","Nitrogen","Dissolved","0.306","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0919-4-C/results/970084211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:13","STORET",7,NA,2022-09-19 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.306,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925960-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084233",NA,"as N","Nitrogen","Dissolved","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0926-4-C/results/970084233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:14","STORET",7,NA,2022-09-26 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925960-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084237",NA,"as N","Nitrogen","Total","0.355","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0926-4-C/results/970084237/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:14","STORET",7,NA,2022-09-26 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.355,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925960-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925960","WEBER R AB CNFL/ LOST CK",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084253",NA,"as N","Nitrogen","Total","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925960-0928-4-C/results/970084253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:14","STORET",7,NA,2022-09-28 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925962-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084256",NA,"as N","Nitrogen","Total","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925962-0406-4-C/results/970084256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:15","STORET",7,NA,2022-04-06 19:15:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925962-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084267",NA,"as N","Nitrogen","Dissolved","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925962-0406-4-C/results/970084267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:15","STORET",7,NA,2022-04-06 19:15:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925962-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084282",NA,"as N","Nitrogen","Dissolved","0.344","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925962-0525-4-C/results/970084282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:16","STORET",7,NA,2022-05-25 19:00:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.344,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925962-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084283",NA,"as N","Nitrogen","Total","0.464","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925962-0525-4-C/results/970084283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:16","STORET",7,NA,2022-05-25 19:00:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.464,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925962-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"15:54:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084302",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925962-0616-4-C/results/970084302/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:17","STORET",7,NA,2022-06-16 22:54:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925962-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"15:54:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084303",NA,"as N","Nitrogen","Dissolved","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925962-0616-4-C/results/970084303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:17","STORET",7,NA,2022-06-16 22:54:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925962-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084316",NA,"as N","Nitrogen","Total","0.539","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925962-0713-4-C/results/970084316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:17","STORET",7,NA,2022-07-13 18:40:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.539,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925962-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084317",NA,"as N","Nitrogen","Dissolved","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925962-0713-4-C/results/970084317/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:17","STORET",7,NA,2022-07-13 18:40:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925962-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084332",NA,"as N","Nitrogen","Total","0.563","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925962-0803-4-C/results/970084332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:18","STORET",7,NA,2022-08-03 20:30:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.563,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925962-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084339",NA,"as N","Nitrogen","Dissolved","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925962-0803-4-C/results/970084339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:18","STORET",7,NA,2022-08-03 20:30:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925962-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084352",NA,"as N","Nitrogen","Total","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925962-0915-4-C/results/970084352/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:19","STORET",7,NA,2022-09-15 19:30:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925962-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925962","WEBER R AB CNFL/ LOST CK Replicate of 4925960",NA,NA,NA,NA,"41.0593900000","-111.5393700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084361",NA,"as N","Nitrogen","Dissolved","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925962-0915-4-C/results/970084361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:19","STORET",7,NA,2022-09-15 19:30:00,NA,"River/Stream","Replicate of 4925960","16020101",NA,NA,NA,NA,"41.0593900000","-111.5393700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",41.05939,-111.53937,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925997-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084381",NA,"as N","Nitrogen","Dissolved","0.505","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925997-0406-4-C/results/970084381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:20","STORET",7,NA,2022-04-06 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.505,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4925997-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084384",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4925997-0406-4-C/results/970084384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:20","STORET",7,NA,2022-04-06 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925997-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084393",NA,"as N","Nitrogen","Dissolved","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925997-0525-4-C/results/970084393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:20","STORET",7,NA,2022-05-25 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4925997-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084398",NA,"as N","Nitrogen","Total","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4925997-0525-4-C/results/970084398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:21","STORET",7,NA,2022-05-25 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925997-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084401",NA,"as N","Nitrogen","Total","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925997-0616-4-C/results/970084401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:21","STORET",7,NA,2022-06-16 22:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4925997-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084422",NA,"as N","Nitrogen","Dissolved","0.343","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4925997-0616-4-C/results/970084422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:21","STORET",7,NA,2022-06-16 22:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.343,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925997-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084426",NA,"as N","Nitrogen","Total","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925997-0713-4-C/results/970084426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:22","STORET",7,NA,2022-07-13 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4925997-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084431",NA,"as N","Nitrogen","Dissolved","0.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4925997-0713-4-C/results/970084431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:22","STORET",7,NA,2022-07-13 18:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925997-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084443",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925997-0803-4-C/results/970084443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:22","STORET",7,NA,2022-08-03 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4925997-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084445",NA,"as N","Nitrogen","Total","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4925997-0803-4-C/results/970084445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:22","STORET",7,NA,2022-08-03 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925997-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084468",NA,"as N","Nitrogen","Total","0.319","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925997-0915-4-C/results/970084468/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:23","STORET",7,NA,2022-09-15 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.319,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4925997-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084470",NA,"as N","Nitrogen","Dissolved","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4925997-0915-4-C/results/970084470/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:23","STORET",7,NA,2022-09-15 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925997-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084488",NA,"as N","Nitrogen","Dissolved","0.786","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925997-0921-4-C/results/970084488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:24","STORET",7,NA,2022-09-21 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.786,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925997-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084518",NA,"as N","Nitrogen","Total","0.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925997-0921-4-C/results/970084518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:24","STORET",7,NA,2022-09-21 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925997-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084533",NA,"as N","Nitrogen","Total","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925997-0926-4-C/results/970084533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:25","STORET",7,NA,2022-09-26 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4925997-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4925997","WEBER R BL HENEFER LAGOONS BL I-84",NA,NA,NA,NA,"41.0410500000","-111.5170100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084538",NA,"as N","Nitrogen","Dissolved","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4925997-0926-4-C/results/970084538/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:25","STORET",7,NA,2022-09-26 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0410500000","-111.5170100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",41.04105,-111.51701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926000-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084544",NA,"as N","Nitrogen","Total","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926000-0406-4-C/results/970084544/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:25","STORET",7,NA,2022-04-06 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926000-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084545",NA,"as N","Nitrogen","Dissolved","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926000-0406-4-C/results/970084545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:26","STORET",7,NA,2022-04-06 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926000-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084573",NA,"as N","Nitrogen","Total","0.431","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926000-0525-4-C/results/970084573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:26","STORET",7,NA,2022-05-25 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.431,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926000-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084579",NA,"as N","Nitrogen","Dissolved","0.576","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926000-0525-4-C/results/970084579/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:26","STORET",7,NA,2022-05-25 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.576,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926000-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084602",NA,"as N","Nitrogen","Dissolved","0.657","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926000-0616-4-C/results/970084602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:27","STORET",7,NA,2022-06-16 21:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.657,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926000-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084603",NA,"as N","Nitrogen","Total","0.417","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926000-0616-4-C/results/970084603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:27","STORET",7,NA,2022-06-16 21:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.417,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4926000-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084613",NA,"as N","Nitrogen","Total","0.796","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926000-0630-4-C/results/970084613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:27","STORET",7,NA,2022-06-30 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.796,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4926000-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084623",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926000-0630-4-C/results/970084623/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:27","STORET",7,NA,2022-06-30 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926000-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084634",NA,"as N","Nitrogen","Dissolved","0.402","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926000-0713-4-C/results/970084634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:28","STORET",7,NA,2022-07-13 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.402,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926000-0713-4-C","Sample-Routine","Water",NA,2022-07-13,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084639",NA,"as N","Nitrogen","Total","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926000-0713-4-C/results/970084639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:28","STORET",7,NA,2022-07-13 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926000-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084660",NA,"as N","Nitrogen","Dissolved","0.528","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926000-0803-4-C/results/970084660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:29","STORET",7,NA,2022-08-03 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.528,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926000-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084666",NA,"as N","Nitrogen","Total","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926000-0803-4-C/results/970084666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:29","STORET",7,NA,2022-08-03 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926000-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084673",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926000-0915-4-C/results/970084673/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:29","STORET",7,NA,2022-09-15 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926000-0915-4-C","Sample-Routine","Water",NA,2022-09-15,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084680",NA,"as N","Nitrogen","Dissolved","0.898","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926000-0915-4-C/results/970084680/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:29","STORET",7,NA,2022-09-15 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.898,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926000-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084709",NA,"as N","Nitrogen","Total","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926000-0919-4-C/results/970084709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:30","STORET",7,NA,2022-09-19 21:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926000-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084720",NA,"as N","Nitrogen","Dissolved","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926000-0919-4-C/results/970084720/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:30","STORET",7,NA,2022-09-19 21:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926000-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084744",NA,"as N","Nitrogen","Total","0.679","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926000-0926-4-C/results/970084744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:31","STORET",7,NA,2022-09-26 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.679,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926000-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926000","WEBER R AB HENEFER LAGOONS",NA,NA,NA,NA,"41.0181900000","-111.4952800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084746",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926000-0926-4-C/results/970084746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:31","STORET",7,NA,2022-09-26 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0181900000","-111.4952800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.01819,-111.49528,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926010-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926010","HENEFER LAGOONS OUTFALL",NA,NA,NA,NA,"41.0302600000","-111.5059200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084768",NA,"as N","Nitrogen","Dissolved","5.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926010-0406-4-C/results/970084768/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:32","STORET",7,NA,2022-04-06 18:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"41.0302600000","-111.5059200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.03026,-111.50592,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926010-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926010","HENEFER LAGOONS OUTFALL",NA,NA,NA,NA,"41.0302600000","-111.5059200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084775",NA,"as N","Nitrogen","Total","5.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926010-0406-4-C/results/970084775/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:32","STORET",7,NA,2022-04-06 18:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"41.0302600000","-111.5059200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.84,"MG/L","Numeric","Not Reviewed","Uncensored",41.03026,-111.50592,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926010-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926010","HENEFER LAGOONS OUTFALL",NA,NA,NA,NA,"41.0302600000","-111.5059200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084782",NA,"as N","Nitrogen","Total","3.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926010-0616-4-C/results/970084782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:32","STORET",7,NA,2022-06-16 22:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"41.0302600000","-111.5059200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.03026,-111.50592,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926010-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926010","HENEFER LAGOONS OUTFALL",NA,NA,NA,NA,"41.0302600000","-111.5059200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084788",NA,"as N","Nitrogen","Dissolved","3.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926010-0616-4-C/results/970084788/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:32","STORET",7,NA,2022-06-16 22:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"41.0302600000","-111.5059200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.59,"MG/L","Numeric","Not Reviewed","Uncensored",41.03026,-111.50592,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926010-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926010","HENEFER LAGOONS OUTFALL",NA,NA,NA,NA,"41.0302600000","-111.5059200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084807",NA,"as N","Nitrogen","Dissolved","2.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926010-0803-4-C/results/970084807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:33","STORET",7,NA,2022-08-03 19:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"41.0302600000","-111.5059200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.45,"MG/L","Numeric","Not Reviewed","Uncensored",41.03026,-111.50592,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926010-0803-4-C","Sample-Routine","Water",NA,2022-08-03,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926010","HENEFER LAGOONS OUTFALL",NA,NA,NA,NA,"41.0302600000","-111.5059200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084822",NA,"as N","Nitrogen","Total","3.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926010-0803-4-C/results/970084822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:33","STORET",7,NA,2022-08-03 19:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"41.0302600000","-111.5059200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.03026,-111.50592,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926040-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084851",NA,"as N","Nitrogen","Dissolved","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926040-0406-4-C/results/970084851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:34","STORET",7,NA,2022-04-06 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926040-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084853",NA,"as N","Nitrogen","Total","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926040-0406-4-C/results/970084853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:34","STORET",7,NA,2022-04-06 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926040-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084862",NA,"as N","Nitrogen","Total","0.767","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926040-0511-4-C/results/970084862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:34","STORET",7,NA,2022-05-11 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.767,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926040-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084863",NA,"as N","Nitrogen","Dissolved","0.757","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926040-0511-4-C/results/970084863/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:34","STORET",7,NA,2022-05-11 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.757,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926040-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084873",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926040-0616-4-C/results/970084873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:35","STORET",7,NA,2022-06-16 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926040-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084876",NA,"as N","Nitrogen","Dissolved","0.633","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926040-0616-4-C/results/970084876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:35","STORET",7,NA,2022-06-16 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.633,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926040-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084895",NA,"as N","Nitrogen","Total","0.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926040-0720-4-C/results/970084895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:36","STORET",7,NA,2022-07-20 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.83,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926040-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084896",NA,"as N","Nitrogen","Dissolved","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926040-0720-4-C/results/970084896/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:36","STORET",7,NA,2022-07-20 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926040-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084922","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926040-0810-4-C/results/970084922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:36","STORET",7,NA,2022-08-10 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926040-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084930",NA,"as N","Nitrogen","Dissolved","0.391","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926040-0810-4-C/results/970084930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:36","STORET",7,NA,2022-08-10 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.391,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926040-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084932",NA,"as N","Nitrogen","Dissolved","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926040-0914-4-C/results/970084932/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:37","STORET",7,NA,2022-09-14 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926040-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926040","Sawmill Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.0124500000","-111.3713600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084934",NA,"as N","Nitrogen","Total","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926040-0914-4-C/results/970084934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:37","STORET",7,NA,2022-09-14 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0124500000","-111.3713600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",41.01245,-111.37136,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926050-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926050","Reese Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.1208900000","-111.1860800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084957",NA,"as N","Nitrogen","Total","0.657","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926050-0406-4-C/results/970084957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:37","STORET",7,NA,2022-04-06 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1208900000","-111.1860800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.657,"MG/L","Numeric","Not Reviewed","Uncensored",41.12089,-111.18608,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926050-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926050","Reese Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.1208900000","-111.1860800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084964",NA,"as N","Nitrogen","Dissolved","0.576","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926050-0406-4-C/results/970084964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:37","STORET",7,NA,2022-04-06 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1208900000","-111.1860800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.576,"MG/L","Numeric","Not Reviewed","Uncensored",41.12089,-111.18608,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926050-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926050","Reese Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.1208900000","-111.1860800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084969",NA,"as N","Nitrogen","Dissolved","0.487","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926050-0511-4-C/results/970084969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:38","STORET",7,NA,2022-05-11 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1208900000","-111.1860800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.487,"MG/L","Numeric","Not Reviewed","Uncensored",41.12089,-111.18608,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926050-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926050","Reese Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.1208900000","-111.1860800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084971",NA,"as N","Nitrogen","Total","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926050-0511-4-C/results/970084971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:38","STORET",7,NA,2022-05-11 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1208900000","-111.1860800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",41.12089,-111.18608,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926050-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926050","Reese Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.1208900000","-111.1860800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084981",NA,"as N","Nitrogen","Dissolved","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926050-0616-4-C/results/970084981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:39","STORET",7,NA,2022-06-16 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1208900000","-111.1860800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",41.12089,-111.18608,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926050-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926050","Reese Ck ab cnfl/ Echo Ck",NA,NA,NA,NA,"41.1208900000","-111.1860800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970084999",NA,"as N","Nitrogen","Total","0.557","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926050-0616-4-C/results/970084999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:39","STORET",7,NA,2022-06-16 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1208900000","-111.1860800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.557,"MG/L","Numeric","Not Reviewed","Uncensored",41.12089,-111.18608,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926060-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926060","Echo Ck ab cnfl/ Reese Ck",NA,NA,NA,NA,"41.1211900000","-111.1855700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085021",NA,"as N","Nitrogen","Total","1.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926060-0406-4-C/results/970085021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:40","STORET",7,NA,2022-04-06 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1211900000","-111.1855700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.36,"MG/L","Numeric","Not Reviewed","Uncensored",41.12119,-111.18557,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926060-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926060","Echo Ck ab cnfl/ Reese Ck",NA,NA,NA,NA,"41.1211900000","-111.1855700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085028",NA,"as N","Nitrogen","Dissolved","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926060-0406-4-C/results/970085028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:40","STORET",7,NA,2022-04-06 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1211900000","-111.1855700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",41.12119,-111.18557,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926060-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926060","Echo Ck ab cnfl/ Reese Ck",NA,NA,NA,NA,"41.1211900000","-111.1855700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085030",NA,"as N","Nitrogen","Dissolved","0.838","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926060-0511-4-C/results/970085030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:40","STORET",7,NA,2022-05-11 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1211900000","-111.1855700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.838,"MG/L","Numeric","Not Reviewed","Uncensored",41.12119,-111.18557,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926060-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926060","Echo Ck ab cnfl/ Reese Ck",NA,NA,NA,NA,"41.1211900000","-111.1855700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085032",NA,"as N","Nitrogen","Total","0.853","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926060-0511-4-C/results/970085032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:40","STORET",7,NA,2022-05-11 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.1211900000","-111.1855700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.853,"MG/L","Numeric","Not Reviewed","Uncensored",41.12119,-111.18557,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926070-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085042",NA,"as N","Nitrogen","Total","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926070-0406-4-C/results/970085042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:41","STORET",7,NA,2022-04-06 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926070-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085043",NA,"as N","Nitrogen","Dissolved","0.558","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926070-0406-4-C/results/970085043/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:41","STORET",7,NA,2022-04-06 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.558,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926070-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085068",NA,"as N","Nitrogen","Total","0.402","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926070-0511-4-C/results/970085068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:41","STORET",7,NA,2022-05-11 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.402,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926070-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085070",NA,"as N","Nitrogen","Dissolved","0.389","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926070-0511-4-C/results/970085070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:42","STORET",7,NA,2022-05-11 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.389,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926070-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085078",NA,"as N","Nitrogen","Total","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926070-0616-4-C/results/970085078/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:42","STORET",7,NA,2022-06-16 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926070-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085099",NA,"as N","Nitrogen","Dissolved","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926070-0616-4-C/results/970085099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:42","STORET",7,NA,2022-06-16 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4926070-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085110",NA,"as N","Nitrogen","Total","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926070-0630-4-C/results/970085110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:43","STORET",7,NA,2022-06-30 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4926070-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085118",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926070-0630-4-C/results/970085118/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:43","STORET",7,NA,2022-06-30 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926070-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085128",NA,"as N","Nitrogen","Dissolved","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926070-0720-4-C/results/970085128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:44","STORET",7,NA,2022-07-20 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926070-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085134",NA,"as N","Nitrogen","Total","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926070-0720-4-C/results/970085134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:44","STORET",7,NA,2022-07-20 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926070-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085138",NA,"as N","Nitrogen","Total","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926070-0810-4-C/results/970085138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:44","STORET",7,NA,2022-08-10 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926070-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085151",NA,"as N","Nitrogen","Dissolved","0.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926070-0810-4-C/results/970085151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:45","STORET",7,NA,2022-08-10 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926070-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085163",NA,"as N","Nitrogen","Total","0.494","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926070-0914-4-C/results/970085163/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:46","STORET",7,NA,2022-09-14 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.494,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926070-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085165",NA,"as N","Nitrogen","Dissolved","0.696","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926070-0914-4-C/results/970085165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:46","STORET",7,NA,2022-09-14 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.696,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926070-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085182",NA,"as N","Nitrogen","Total","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926070-0919-4-C/results/970085182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:46","STORET",7,NA,2022-09-19 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926070-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085201",NA,"as N","Nitrogen","Dissolved","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926070-0919-4-C/results/970085201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:47","STORET",7,NA,2022-09-19 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926070-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085229",NA,"as N","Nitrogen","Total","0.514","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926070-0928-4-C/results/970085229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:48","STORET",7,NA,2022-09-28 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.514,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926070-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926070","ECHO CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.9683500000","-111.4378600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085232",NA,"as N","Nitrogen","Dissolved","0.568","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926070-0928-4-C/results/970085232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:48","STORET",7,NA,2022-09-28 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9683500000","-111.4378600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.568,"MG/L","Numeric","Not Reviewed","Uncensored",40.96835,-111.43786,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926080-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085250",NA,"as N","Nitrogen","Dissolved","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926080-0406-4-C/results/970085250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:49","STORET",7,NA,2022-04-06 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926080-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085256",NA,"as N","Nitrogen","Total","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926080-0406-4-C/results/970085256/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:50","STORET",7,NA,2022-04-06 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926080-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085265",NA,"as N","Nitrogen","Dissolved","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926080-0511-4-C/results/970085265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:50","STORET",7,NA,2022-05-11 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926080-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085270",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926080-0511-4-C/results/970085270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:50","STORET",7,NA,2022-05-11 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926080-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085278",NA,"as N","Nitrogen","Dissolved","0.449","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926080-0616-4-C/results/970085278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:51","STORET",7,NA,2022-06-16 20:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.449,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926080-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085286",NA,"as N","Nitrogen","Total","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926080-0616-4-C/results/970085286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:51","STORET",7,NA,2022-06-16 20:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926080-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085299",NA,"as N","Nitrogen","Dissolved","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926080-0720-4-C/results/970085299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:52","STORET",7,NA,2022-07-20 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926080-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085303",NA,"as N","Nitrogen","Total","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926080-0720-4-C/results/970085303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:52","STORET",7,NA,2022-07-20 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926080-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085322",NA,"as N","Nitrogen","Dissolved","0.494","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926080-0810-4-C/results/970085322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:53","STORET",7,NA,2022-08-10 17:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.494,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926080-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085325",NA,"as N","Nitrogen","Total","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926080-0810-4-C/results/970085325/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:53","STORET",7,NA,2022-08-10 17:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926080-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085335",NA,"as N","Nitrogen","Dissolved","0.976","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926080-0914-4-C/results/970085335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:54","STORET",7,NA,2022-09-14 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.976,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926080-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926080","HEINERS CK AB CNFL/ ECHO CK",NA,NA,NA,NA,"41.0332700000","-111.3347200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085344",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926080-0914-4-C/results/970085344/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:54","STORET",7,NA,2022-09-14 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"41.0332700000","-111.3347200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",41.03327,-111.33472,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926100-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085346",NA,"as N","Nitrogen","Dissolved","0.987","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926100-0406-4-C/results/970085346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:55","STORET",7,NA,2022-04-06 18:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.987,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926100-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085358",NA,"as N","Nitrogen","Total","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926100-0406-4-C/results/970085358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:55","STORET",7,NA,2022-04-06 18:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926100-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085377",NA,"as N","Nitrogen","Total","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926100-0511-4-C/results/970085377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:56","STORET",7,NA,2022-05-11 18:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926100-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085380",NA,"as N","Nitrogen","Dissolved","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926100-0511-4-C/results/970085380/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:56","STORET",7,NA,2022-05-11 18:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926100-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085389",NA,"as N","Nitrogen","Dissolved","0.806","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926100-0616-4-C/results/970085389/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:56","STORET",7,NA,2022-06-16 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.806,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926100-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085396",NA,"as N","Nitrogen","Total","0.648","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926100-0616-4-C/results/970085396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:56","STORET",7,NA,2022-06-16 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.648,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4926100-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085422",NA,"as N","Nitrogen","Total","0.723","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926100-0630-4-C/results/970085422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:58","STORET",7,NA,2022-06-30 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.723,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4926100-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085432",NA,"as N","Nitrogen","Dissolved","0.643","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926100-0630-4-C/results/970085432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:58","STORET",7,NA,2022-06-30 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.643,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926100-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085438",NA,"as N","Nitrogen","Dissolved","0.459","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926100-0720-4-C/results/970085438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:58","STORET",7,NA,2022-07-20 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.459,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926100-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085440",NA,"as N","Nitrogen","Total","0.619","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926100-0720-4-C/results/970085440/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:58","STORET",7,NA,2022-07-20 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.619,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926100-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085455",NA,"as N","Nitrogen","Total","0.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926100-0810-4-C/results/970085455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:59","STORET",7,NA,2022-08-10 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926100-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085459",NA,"as N","Nitrogen","Dissolved","0.695","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926100-0810-4-C/results/970085459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:23:59","STORET",7,NA,2022-08-10 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.695,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926100-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085470",NA,"as N","Nitrogen","Dissolved","0.959","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926100-0914-4-C/results/970085470/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:00","STORET",7,NA,2022-09-14 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.959,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926100-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085477",NA,"as N","Nitrogen","Total","0.656","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926100-0914-4-C/results/970085477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:00","STORET",7,NA,2022-09-14 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.656,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926100-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085484",NA,"as N","Nitrogen","Total","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0919-4-C/results/970085484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:01","STORET",7,NA,2022-09-19 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926100-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085511",NA,"as N","Nitrogen","Dissolved","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0919-4-C/results/970085511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:02","STORET",7,NA,2022-09-19 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926100-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085532",NA,"as N","Nitrogen","Total","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0926-4-C/results/970085532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:03","STORET",7,NA,2022-09-26 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926100-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085535",NA,"as N","Nitrogen","Dissolved","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0926-4-C/results/970085535/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:03","STORET",7,NA,2022-09-26 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926100-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085543",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0928-4-C/results/970085543/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:03","STORET",7,NA,2022-09-28 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4926100-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926100","WEBER R BL ECHO RES",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085545",NA,"as N","Nitrogen","Dissolved","0.377","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4926100-0928-4-C/results/970085545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:03","STORET",7,NA,2022-09-28 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.377,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926101-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085560",NA,"as N","Nitrogen","Dissolved","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926101-0406-4-C/results/970085560/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:04","STORET",7,NA,2022-04-06 18:10:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926101-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085566",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926101-0406-4-C/results/970085566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:04","STORET",7,NA,2022-04-06 18:10:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926101-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085588",NA,"as N","Nitrogen","Total","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926101-0511-4-C/results/970085588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:05","STORET",7,NA,2022-05-11 18:40:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926101-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085589",NA,"as N","Nitrogen","Dissolved","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926101-0511-4-C/results/970085589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:05","STORET",7,NA,2022-05-11 18:40:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926101-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085602",NA,"as N","Nitrogen","Dissolved","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926101-0616-4-C/results/970085602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:06","STORET",7,NA,2022-06-16 19:45:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926101-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085612",NA,"as N","Nitrogen","Total","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926101-0616-4-C/results/970085612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:06","STORET",7,NA,2022-06-16 19:45:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4926101-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085619",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926101-0630-4-C/results/970085619/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:07","STORET",7,NA,2022-06-30 18:10:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4926101-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085626",NA,"as N","Nitrogen","Total","0.694","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4926101-0630-4-C/results/970085626/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:07","STORET",7,NA,2022-06-30 18:10:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.694,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926101-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085645",NA,"as N","Nitrogen","Total","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926101-0720-4-C/results/970085645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:08","STORET",7,NA,2022-07-20 19:10:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926101-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085646",NA,"as N","Nitrogen","Dissolved","0.474","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926101-0720-4-C/results/970085646/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:08","STORET",7,NA,2022-07-20 19:10:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.474,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926101-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085677",NA,"as N","Nitrogen","Dissolved","0.624","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926101-0810-4-C/results/970085677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:09","STORET",7,NA,2022-08-10 17:05:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.624,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926101-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"10:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085678",NA,"as N","Nitrogen","Total","0.546","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926101-0810-4-C/results/970085678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:09","STORET",7,NA,2022-08-10 17:05:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.546,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926101-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085681",NA,"as N","Nitrogen","Dissolved","0.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926101-0914-4-C/results/970085681/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:09","STORET",7,NA,2022-09-14 19:55:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926101-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926101","WEBER R BL ECHO RES Replicate of 4926100",NA,NA,NA,NA,"40.9666100000","-111.4371400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085684",NA,"as N","Nitrogen","Total","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926101-0914-4-C/results/970085684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:09","STORET",7,NA,2022-09-14 19:55:00,NA,"River/Stream","Replicate of 4926100","16020101",NA,NA,NA,NA,"40.9666100000","-111.4371400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.96661,-111.43714,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926170-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085709",NA,"as N","Nitrogen","Dissolved","0.983","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926170-0406-4-C/results/970085709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:10","STORET",7,NA,2022-04-06 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.983,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926170-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085710",NA,"as N","Nitrogen","Total","0.809","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926170-0406-4-C/results/970085710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:10","STORET",7,NA,2022-04-06 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.809,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926170-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085718",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926170-0511-4-C/results/970085718/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:11","STORET",7,NA,2022-05-11 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926170-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085721",NA,"as N","Nitrogen","Dissolved","0.222","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926170-0511-4-C/results/970085721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:11","STORET",7,NA,2022-05-11 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.222,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926170-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085744",NA,"as N","Nitrogen","Dissolved","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926170-0616-4-C/results/970085744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:11","STORET",7,NA,2022-06-16 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926170-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085746",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926170-0616-4-C/results/970085746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:11","STORET",7,NA,2022-06-16 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926170-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085754",NA,"as N","Nitrogen","Total","0.717","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926170-0914-4-C/results/970085754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:12","STORET",7,NA,2022-09-14 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.717,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926170-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085755",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926170-0914-4-C/results/970085755/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:12","STORET",7,NA,2022-09-14 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4926170-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085770",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4926170-0929-4-C/results/970085770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:13","STORET",7,NA,2022-09-29 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4926170-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926170","LEWIS CK AB ECHO RES 1.0MI NW OF I80 JCT",NA,NA,NA,NA,"40.9203800000","-111.4105800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085779",NA,"as N","Nitrogen","Dissolved","2.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4926170-0929-4-C/results/970085779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:13","STORET",7,NA,2022-09-29 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9203800000","-111.4105800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.92038,-111.41058,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926203-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"09:41:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085790",NA,"as N","Nitrogen","Total","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926203-0525-4-C/results/970085790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:13","STORET",7,NA,2022-05-25 16:41:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926203-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085792",NA,"as N","Nitrogen","Total","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926203-0630-4-C/results/970085792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:14","STORET",7,NA,2022-06-30 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926203-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:36:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085795",NA,"as N","Nitrogen","Total","0.193","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926203-0719-4-C/results/970085795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:14","STORET",7,NA,2022-07-19 16:36:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.193,"MG/L","Numeric","Pass","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926203-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085798",NA,"as N","Nitrogen","Total","0.507","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926203-0818-4-C/results/970085798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:15","STORET",7,NA,2022-08-18 16:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.507,"MG/L","Numeric","Not Reviewed","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926203-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926203","Huff Ck at Flat Rock",NA,NA,NA,NA,"40.9931000000","-111.2255000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085801",NA,"as N","Nitrogen","Total","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926203-0922-4-C/results/970085801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:15","STORET",7,NA,2022-09-22 17:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9931000000","-111.2255000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",40.9931,-111.2255,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926260-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"10:03:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926260","HUFF CK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9630100000","-111.2349100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085806",NA,"as N","Nitrogen","Total","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926260-0525-4-C/results/970085806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:16","STORET",7,NA,2022-05-25 17:03:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",40.96301,-111.23491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926260-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"10:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926260","HUFF CK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9630100000","-111.2349100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085808",NA,"as N","Nitrogen","Total","0.335","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926260-0630-4-C/results/970085808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:16","STORET",7,NA,2022-06-30 17:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.335,"MG/L","Numeric","Not Reviewed","Uncensored",40.96301,-111.23491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926260-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926260","HUFF CK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9630100000","-111.2349100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085812",NA,"as N","Nitrogen","Total","0.557","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926260-0719-4-C/results/970085812/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:17","STORET",7,NA,2022-07-19 16:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.557,"MG/L","Numeric","Not Reviewed","Uncensored",40.96301,-111.23491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926260-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926260","HUFF CK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9630100000","-111.2349100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085815",NA,"as N","Nitrogen","Total","0.812","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926260-0818-4-C/results/970085815/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:17","STORET",7,NA,2022-08-18 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.812,"MG/L","Numeric","Not Reviewed","Uncensored",40.96301,-111.23491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926260-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926260","HUFF CK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9630100000","-111.2349100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085818",NA,"as N","Nitrogen","Total","0.367","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926260-0922-4-C/results/970085818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:18","STORET",7,NA,2022-09-22 17:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9630100000","-111.2349100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.367,"MG/L","Numeric","Not Reviewed","Uncensored",40.96301,-111.23491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926290-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085819",NA,"as N","Nitrogen","Total","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926290-0525-4-C/results/970085819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:18","STORET",7,NA,2022-05-25 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926290-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085823",NA,"as N","Nitrogen","Total","0.257","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926290-0630-4-C/results/970085823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:18","STORET",7,NA,2022-06-30 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.257,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926290-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085825",NA,"as N","Nitrogen","Total","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926290-0719-4-C/results/970085825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:19","STORET",7,NA,2022-07-19 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926290-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085828",NA,"as N","Nitrogen","Total","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926290-0818-4-C/results/970085828/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:19","STORET",7,NA,2022-08-18 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926290-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085860",NA,"as N","Nitrogen","Total","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926290-0922-4-C/results/970085860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:21","STORET",7,NA,2022-09-22 18:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926323-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085865",NA,"as N","Nitrogen","Dissolved","3.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926323-0406-4-C/results/970085865/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:21","STORET",7,NA,2022-04-06 17:20:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926323-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085869",NA,"as N","Nitrogen","Total","3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926323-0406-4-C/results/970085869/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:21","STORET",7,NA,2022-04-06 17:20:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926323-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085889",NA,"as N","Nitrogen","Dissolved","1.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926323-0511-4-C/results/970085889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:22","STORET",7,NA,2022-05-11 17:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926323-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085891",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926323-0511-4-C/results/970085891/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:22","STORET",7,NA,2022-05-11 17:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926323-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085905",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926323-0616-4-C/results/970085905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:23","STORET",7,NA,2022-06-16 19:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926323-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085911",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926323-0616-4-C/results/970085911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:23","STORET",7,NA,2022-06-16 19:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926323-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085928",NA,"as N","Nitrogen","Total","0.983","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926323-0720-4-C/results/970085928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:24","STORET",7,NA,2022-07-20 18:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.983,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926323-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085931",NA,"as N","Nitrogen","Dissolved","0.837","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926323-0720-4-C/results/970085931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:24","STORET",7,NA,2022-07-20 18:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.837,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926323-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085948",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926323-0810-4-C/results/970085948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:24","STORET",7,NA,2022-08-10 16:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926323-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085962",NA,"as N","Nitrogen","Dissolved","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926323-0810-4-C/results/970085962/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:25","STORET",7,NA,2022-08-10 16:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926325-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085983",NA,"as N","Nitrogen","Dissolved","5.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926325-0810-4-C/results/970085983/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:25","STORET",7,NA,2022-08-10 16:35:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926325-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085985",NA,"as N","Nitrogen","Total","4.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926325-0810-4-C/results/970085985/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:25","STORET",7,NA,2022-08-10 16:35:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926323-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970085994",NA,"as N","Nitrogen","Dissolved","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926323-0914-4-C/results/970085994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:26","STORET",7,NA,2022-09-14 19:20:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926323-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926323","Receiving Stream ab New Coalville WWTP Discharge",NA,NA,NA,NA,"40.9136400000","-111.3999700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086001",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926323-0914-4-C/results/970086001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:26","STORET",7,NA,2022-09-14 19:20:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9136400000","-111.3999700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.91364,-111.39997,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926325-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086008",NA,"as N","Nitrogen","Total","5.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926325-0406-4-C/results/970086008/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:27","STORET",7,NA,2022-04-06 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926325-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086016",NA,"as N","Nitrogen","Dissolved","5.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926325-0406-4-C/results/970086016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:27","STORET",7,NA,2022-04-06 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926325-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086031",NA,"as N","Nitrogen","Total","4.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926325-0511-4-C/results/970086031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:27","STORET",7,NA,2022-05-11 18:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926325-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086037",NA,"as N","Nitrogen","Dissolved","4.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926325-0511-4-C/results/970086037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:27","STORET",7,NA,2022-05-11 18:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926325-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086047",NA,"as N","Nitrogen","Dissolved","4.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926325-0616-4-C/results/970086047/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:28","STORET",7,NA,2022-06-16 19:20:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926325-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086049",NA,"as N","Nitrogen","Total","4.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926325-0616-4-C/results/970086049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:28","STORET",7,NA,2022-06-16 19:20:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926325-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086073",NA,"as N","Nitrogen","Dissolved","5.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926325-0720-4-C/results/970086073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:28","STORET",7,NA,2022-07-20 18:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926325-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086076",NA,"as N","Nitrogen","Total","5.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926325-0720-4-C/results/970086076/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:29","STORET",7,NA,2022-07-20 18:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926325-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086080",NA,"as N","Nitrogen","Total","4.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926325-0914-4-C/results/970086080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:29","STORET",7,NA,2022-09-14 19:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926325-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926325","New Coalville WWTP-Post 07/2015",NA,NA,NA,NA,"40.9163600000","-111.4024800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086087",NA,"as N","Nitrogen","Dissolved","4.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926325-0914-4-C/results/970086087/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:29","STORET",7,NA,2022-09-14 19:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.9163600000","-111.4024800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.95,"MG/L","Numeric","Not Reviewed","Uncensored",40.91636,-111.40248,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926350-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086092",NA,"as N","Nitrogen","Total","0.374","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926350-0525-4-C/results/970086092/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:30","STORET",7,NA,2022-05-25 21:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.374,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926350-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086093",NA,"as N","Nitrogen","Total","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926350-0630-4-C/results/970086093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:30","STORET",7,NA,2022-06-30 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926350-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086098",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926350-0719-4-C/results/970086098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:31","STORET",7,NA,2022-07-19 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926350-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086099",NA,"as N","Nitrogen","Total","0.463","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926350-0818-4-C/results/970086099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:31","STORET",7,NA,2022-08-18 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.463,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926350-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086132",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926350-0922-4-C/results/970086132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:32","STORET",7,NA,2022-09-22 21:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926352-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086133",NA,"as N","Nitrogen","Total","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926352-0525-4-C/results/970086133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:33","STORET",7,NA,2022-05-25 21:25:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926352-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086136",NA,"as N","Nitrogen","Total","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926352-0630-4-C/results/970086136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:33","STORET",7,NA,2022-06-30 21:00:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926352-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086141",NA,"as N","Nitrogen","Total","0.189","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926352-0719-4-C/results/970086141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:34","STORET",7,NA,2022-07-19 20:20:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.189,"MG/L","Numeric","Pass","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926352-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"13:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086144",NA,"as N","Nitrogen","Total","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926352-0818-4-C/results/970086144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:34","STORET",7,NA,2022-08-18 20:55:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926352-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"14:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926352","CHALK CK AT US189 XING COOP Replicate of 4926350",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086146",NA,"as N","Nitrogen","Total","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926352-0922-4-C/results/970086146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:34","STORET",7,NA,2022-09-22 21:40:00,NA,"River/Stream","Replicate of 4926350","16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926355-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"13:33:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086149",NA,"as N","Nitrogen","Total","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926355-0525-4-C/results/970086149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:35","STORET",7,NA,2022-05-25 20:33:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926355-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086152",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926355-0630-4-C/results/970086152/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:35","STORET",7,NA,2022-06-30 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926355-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086155",NA,"as N","Nitrogen","Total","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926355-0719-4-C/results/970086155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:36","STORET",7,NA,2022-07-19 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926355-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086159",NA,"as N","Nitrogen","Total","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926355-0818-4-C/results/970086159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:36","STORET",7,NA,2022-08-18 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926355-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926355","South Fk Chalk Ck at G&E Ranch",NA,NA,NA,NA,"40.9092700000","-111.2352500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086162",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926355-0922-4-C/results/970086162/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:37","STORET",7,NA,2022-09-22 18:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9092700000","-111.2352500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",40.90927,-111.23525,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926360-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"11:12:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086191",NA,"as N","Nitrogen","Total","0.276","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926360-0525-4-C/results/970086191/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:38","STORET",7,NA,2022-05-25 18:12:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.276,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926360-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086196",NA,"as N","Nitrogen","Total","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926360-0630-4-C/results/970086196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:38","STORET",7,NA,2022-06-30 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926360-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086198",NA,"as N","Nitrogen","Total","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926360-0719-4-C/results/970086198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:39","STORET",7,NA,2022-07-19 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926360-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086200",NA,"as N","Nitrogen","Total","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926360-0818-4-C/results/970086200/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:39","STORET",7,NA,2022-08-18 17:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926360-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086232",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926360-0922-4-C/results/970086232/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:41","STORET",7,NA,2022-09-22 18:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926361-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086236",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926361-0525-4-C/results/970086236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:41","STORET",7,NA,2022-05-25 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926361-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086238",NA,"as N","Nitrogen","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926361-0630-4-C/results/970086238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:42","STORET",7,NA,2022-06-30 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926361-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086240",NA,"as N","Nitrogen","Total","0.465","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Relative Percentage difference (RPD) criteria not within quality control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926361-0719-4-C/results/970086240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:42","STORET",7,NA,2022-07-19 19:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.465,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926361-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086243",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926361-0818-4-C/results/970086243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:42","STORET",7,NA,2022-08-18 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926361-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086274",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926361-0922-4-C/results/970086274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:44","STORET",7,NA,2022-09-22 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926363-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"11:42:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086306",NA,"as N","Nitrogen","Total","0.193","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926363-0525-4-C/results/970086306/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:45","STORET",7,NA,2022-05-25 18:42:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.193,"MG/L","Numeric","Pass","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926363-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086308",NA,"as N","Nitrogen","Total","0.236","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926363-0630-4-C/results/970086308/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:46","STORET",7,NA,2022-06-30 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.236,"MG/L","Numeric","Not Reviewed","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926363-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086313",NA,"as N","Nitrogen","Total","0.536","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926363-0719-4-C/results/970086313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:46","STORET",7,NA,2022-07-19 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.536,"MG/L","Numeric","Not Reviewed","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926363-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086315",NA,"as N","Nitrogen","Total","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926363-0818-4-C/results/970086315/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:47","STORET",7,NA,2022-08-18 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926363-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086346",NA,"as N","Nitrogen","Total","0.189","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926363-0922-4-C/results/970086346/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:48","STORET",7,NA,2022-09-22 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.189,"MG/L","Numeric","Pass","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926370-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"08:21:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086350",NA,"as N","Nitrogen","Total","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926370-0525-4-C/results/970086350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:48","STORET",7,NA,2022-05-25 15:21:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926370-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086351",NA,"as N","Nitrogen","Total","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926370-0630-4-C/results/970086351/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:49","STORET",7,NA,2022-06-30 15:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926370-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086356",NA,"as N","Nitrogen","Total","0.676","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926370-0719-4-C/results/970086356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:49","STORET",7,NA,2022-07-19 15:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.676,"MG/L","Numeric","Not Reviewed","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926370-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"08:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086359",NA,"as N","Nitrogen","Total","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926370-0818-4-C/results/970086359/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:50","STORET",7,NA,2022-08-18 15:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.331,"MG/L","Numeric","Not Reviewed","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926370-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086390","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926370-0922-4-C/results/970086390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:51","STORET",7,NA,2022-09-22 16:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926380-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"07:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086391",NA,"as N","Nitrogen","Total","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926380-0525-4-C/results/970086391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:51","STORET",7,NA,2022-05-25 14:57:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926380-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"08:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086395",NA,"as N","Nitrogen","Total","0.398","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926380-0630-4-C/results/970086395/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:52","STORET",7,NA,2022-06-30 15:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.398,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926380-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086398",NA,"as N","Nitrogen","Total","0.582","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926380-0719-4-C/results/970086398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:52","STORET",7,NA,2022-07-19 15:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.582,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926380-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"08:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086401",NA,"as N","Nitrogen","Total","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926380-0818-4-C/results/970086401/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:53","STORET",7,NA,2022-08-18 15:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926380-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086432",NA,"as N","Nitrogen","Total","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926380-0922-4-C/results/970086432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:54","STORET",7,NA,2022-09-22 16:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220525-4926390-0525-4-C","Sample-Routine","Water",NA,2022-05-25,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086436",NA,"as N","Nitrogen","Total","0.418","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220525-4926390-0525-4-C/results/970086436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:55","STORET",7,NA,2022-05-25 15:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.418,"MG/L","Numeric","Not Reviewed","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220630-4926390-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"09:19:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086438",NA,"as N","Nitrogen","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220630-4926390-0630-4-C/results/970086438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:55","STORET",7,NA,2022-06-30 16:19:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220719-4926390-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086442",NA,"as N","Nitrogen","Total","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220719-4926390-0719-4-C/results/970086442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:56","STORET",7,NA,2022-07-19 16:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220818-4926390-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086445",NA,"as N","Nitrogen","Total","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220818-4926390-0818-4-C/results/970086445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:56","STORET",7,NA,2022-08-18 15:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-CHALKCK220922-4926390-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086474",NA,"as N","Nitrogen","Total","0.164","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-CHALKCK220922-4926390-0922-4-C/results/970086474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:57","STORET",7,NA,2022-09-22 16:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.164,"MG/L","Numeric","Pass","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926400-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086477",NA,"as N","Nitrogen","Total","0.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926400-0406-4-C/results/970086477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:58","STORET",7,NA,2022-04-06 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926400-0406-4-C","Sample-Routine","Water",NA,2022-04-06,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086495",NA,"as N","Nitrogen","Dissolved","0.504","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926400-0406-4-C/results/970086495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:58","STORET",7,NA,2022-04-06 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.504,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926400-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086506",NA,"as N","Nitrogen","Dissolved","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926400-0511-4-C/results/970086506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:59","STORET",7,NA,2022-05-11 18:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926400-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086511",NA,"as N","Nitrogen","Total","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926400-0511-4-C/results/970086511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:59","STORET",7,NA,2022-05-11 18:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926400-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086516",NA,"as N","Nitrogen","Total","0.423","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926400-0616-4-C/results/970086516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:59","STORET",7,NA,2022-06-16 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.423,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926400-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086530",NA,"as N","Nitrogen","Dissolved","0.665","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926400-0616-4-C/results/970086530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:24:59","STORET",7,NA,2022-06-16 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.665,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926400-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086545",NA,"as N","Nitrogen","Total","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926400-0720-4-C/results/970086545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:00","STORET",7,NA,2022-07-20 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926400-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086547",NA,"as N","Nitrogen","Dissolved","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926400-0720-4-C/results/970086547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:00","STORET",7,NA,2022-07-20 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926400-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086550",NA,"as N","Nitrogen","Total","0.744","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926400-0810-4-C/results/970086550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:00","STORET",7,NA,2022-08-10 15:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.744,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926400-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086564",NA,"as N","Nitrogen","Dissolved","0.485","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926400-0810-4-C/results/970086564/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:01","STORET",7,NA,2022-08-10 15:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.485,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926400-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086575",NA,"as N","Nitrogen","Total","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926400-0914-4-C/results/970086575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:01","STORET",7,NA,2022-09-14 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926400-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926400","WEBER R AB ECHO RES",NA,NA,NA,NA,"40.9118900000","-111.4063100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086576",NA,"as N","Nitrogen","Dissolved","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926400-0914-4-C/results/970086576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:01","STORET",7,NA,2022-09-14 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9118900000","-111.4063100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.91189,-111.40631,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926700-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086601",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926700-0405-4-C/results/970086601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:02","STORET",7,NA,2022-04-05 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926700-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086609",NA,"as N","Nitrogen","Dissolved","0.339","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926700-0511-4-C/results/970086609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:03","STORET",7,NA,2022-05-11 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.339,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926700-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086616",NA,"as N","Nitrogen","Total","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926700-0511-4-C/results/970086616/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:03","STORET",7,NA,2022-05-11 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926700-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086631",NA,"as N","Nitrogen","Total","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926700-0616-4-C/results/970086631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:03","STORET",7,NA,2022-06-16 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926700-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086634",NA,"as N","Nitrogen","Dissolved","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926700-0616-4-C/results/970086634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:03","STORET",7,NA,2022-06-16 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926700-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086648",NA,"as N","Nitrogen","Total","0.812","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926700-0720-4-C/results/970086648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:04","STORET",7,NA,2022-07-20 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.812,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926700-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086650",NA,"as N","Nitrogen","Dissolved","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926700-0720-4-C/results/970086650/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:04","STORET",7,NA,2022-07-20 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926700-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086663",NA,"as N","Nitrogen","Dissolved","0.802","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926700-0809-4-C/results/970086663/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:04","STORET",7,NA,2022-08-09 21:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.802,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926700-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086673",NA,"as N","Nitrogen","Total","0.748","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926700-0809-4-C/results/970086673/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:05","STORET",7,NA,2022-08-09 21:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.748,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926700-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086679",NA,"as N","Nitrogen","Dissolved","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926700-0913-4-C/results/970086679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:05","STORET",7,NA,2022-09-13 21:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926700-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926700","Alexander Ck @ Highway Xing",NA,NA,NA,NA,"40.8057900000","-111.4367000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086688",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926700-0913-4-C/results/970086688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:05","STORET",7,NA,2022-09-13 21:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8057900000","-111.4367000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.80579,-111.4367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926740-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086707",NA,"as N","Nitrogen","Dissolved","0.942","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926740-0404-4-C/results/970086707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:06","STORET",7,NA,2022-04-04 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.942,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926740-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086708",NA,"as N","Nitrogen","Total","0.883","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926740-0404-4-C/results/970086708/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:06","STORET",7,NA,2022-04-04 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.883,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926740-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"15:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086736",NA,"as N","Nitrogen","Dissolved","0.894","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926740-0509-4-C/results/970086736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:07","STORET",7,NA,2022-05-09 22:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.894,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926740-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"15:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086745",NA,"as N","Nitrogen","Total","0.961","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926740-0509-4-C/results/970086745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:07","STORET",7,NA,2022-05-09 22:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.961,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926740-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086783",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926740-0613-4-C/results/970086783/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:08","STORET",7,NA,2022-06-13 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926740-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086809",NA,"as N","Nitrogen","Dissolved","2.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926740-0613-4-C/results/970086809/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:08","STORET",7,NA,2022-06-13 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926740-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086821",NA,"as N","Nitrogen","Dissolved","0.784","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926740-0718-4-C/results/970086821/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:09","STORET",7,NA,2022-07-18 22:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.784,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926740-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086843",NA,"as N","Nitrogen","Total","0.967","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926740-0718-4-C/results/970086843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:09","STORET",7,NA,2022-07-18 22:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.967,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926740-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"15:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086872",NA,"as N","Nitrogen","Dissolved","1.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926740-0808-4-C/results/970086872/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:10","STORET",7,NA,2022-08-08 22:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926740-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"15:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086894",NA,"as N","Nitrogen","Total","1.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926740-0808-4-C/results/970086894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:10","STORET",7,NA,2022-08-08 22:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926740-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926740","SILVER CK AT FARM XING IN ATKINSON",NA,NA,NA,NA,"40.7417500000","-111.4748500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086941",NA,"as N","Nitrogen","Dissolved","1.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926740-0912-4-C/results/970086941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:12","STORET",7,NA,2022-09-12 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7417500000","-111.4748500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.74175,-111.47485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926750-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086953",NA,"as N","Nitrogen","Dissolved","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926750-0405-4-C/results/970086953/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:13","STORET",7,NA,2022-04-05 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926750-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086955",NA,"as N","Nitrogen","Total","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926750-0405-4-C/results/970086955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:13","STORET",7,NA,2022-04-05 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926750-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970086996",NA,"as N","Nitrogen","Dissolved","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926750-0511-4-C/results/970086996/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:14","STORET",7,NA,2022-05-11 16:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926750-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087025",NA,"as N","Nitrogen","Total","0.569","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926750-0511-4-C/results/970087025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:15","STORET",7,NA,2022-05-11 16:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.569,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926750-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087041",NA,"as N","Nitrogen","Total","1.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926750-0616-4-C/results/970087041/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:16","STORET",7,NA,2022-06-16 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926750-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087049",NA,"as N","Nitrogen","Dissolved","1.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926750-0616-4-C/results/970087049/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:16","STORET",7,NA,2022-06-16 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"12999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926750-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087079",NA,"as N","Nitrogen","Total","0.716","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926750-0720-4-C/results/970087079/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:18","STORET",7,NA,2022-07-20 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.716,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926750-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087085",NA,"as N","Nitrogen","Dissolved","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926750-0720-4-C/results/970087085/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:18","STORET",7,NA,2022-07-20 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926750-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087140",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926750-0809-4-C/results/970087140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:20","STORET",7,NA,2022-08-09 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926750-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087148",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926750-0809-4-C/results/970087148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:21","STORET",7,NA,2022-08-09 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926750-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087163",NA,"as N","Nitrogen","Total","0.998","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926750-0913-4-C/results/970087163/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:22","STORET",7,NA,2022-09-13 21:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.998,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926750-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926750","SILVER CK AT WANSHIP AB CNFL / WEBER R",NA,NA,NA,NA,"40.8096700000","-111.4074200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087177",NA,"as N","Nitrogen","Dissolved","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926750-0913-4-C/results/970087177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:22","STORET",7,NA,2022-09-13 21:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8096700000","-111.4074200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.80967,-111.40742,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926790-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087197",NA,"as N","Nitrogen","Total","2.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926790-0404-4-C/results/970087197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:23","STORET",7,NA,2022-04-04 20:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926790-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087228",NA,"as N","Nitrogen","Dissolved","2.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926790-0404-4-C/results/970087228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:24","STORET",7,NA,2022-04-04 20:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926790-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"15:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087269",NA,"as N","Nitrogen","Total","2.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926790-0509-4-C/results/970087269/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:26","STORET",7,NA,2022-05-09 22:05:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926790-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"15:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087278",NA,"as N","Nitrogen","Dissolved","2.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926790-0509-4-C/results/970087278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:27","STORET",7,NA,2022-05-09 22:05:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926790-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087298",NA,"as N","Nitrogen","Dissolved","3.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926790-0613-4-C/results/970087298/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:28","STORET",7,NA,2022-06-13 20:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926790-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087299",NA,"as N","Nitrogen","Total","2.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926790-0613-4-C/results/970087299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:28","STORET",7,NA,2022-06-13 20:40:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926790-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"15:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087333",NA,"as N","Nitrogen","Total","1.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926790-0718-4-C/results/970087333/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:29","STORET",7,NA,2022-07-18 22:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926790-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"15:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087335",NA,"as N","Nitrogen","Dissolved","2.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926790-0718-4-C/results/970087335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:29","STORET",7,NA,2022-07-18 22:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937120-0602-4-C","Sample-Routine","Water",NA,2022-06-02,"10:30:00","MST",NA,NA,NA,"Surface","0.14","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937120","Ouray Park Canal ab Pelican Lake at 7000 S Xing",NA,NA,NA,NA,"40.2032900000","-109.7029200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087365",NA,"as N","Nitrogen","Total","2.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937120-0602-4-C/results/970087365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:30","STORET",7,NA,2022-06-02 17:30:00,NA,"Canal Irrigation",NA,"14060001",NA,NA,NA,NA,"40.2032900000","-109.7029200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.20329,-109.70292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.14,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926790-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087376",NA,"as N","Nitrogen","Dissolved","5.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926790-0808-4-C/results/970087376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:31","STORET",7,NA,2022-08-08 17:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926790-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087381",NA,"as N","Nitrogen","Total","5.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926790-0808-4-C/results/970087381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:31","STORET",7,NA,2022-08-08 17:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926790-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087434",NA,"as N","Nitrogen","Dissolved","3.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926790-0912-4-C/results/970087434/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:32","STORET",7,NA,2022-09-12 20:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.08,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926790-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926790","SILVER CREEK WWTP",NA,NA,NA,NA,"40.7344900000","-111.4798800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087443",NA,"as N","Nitrogen","Total","2.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926790-0912-4-C/results/970087443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:32","STORET",7,NA,2022-09-12 20:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7344900000","-111.4798800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.73449,-111.47988,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926800-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087471",NA,"as N","Nitrogen","Total","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926800-0404-4-C/results/970087471/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:33","STORET",7,NA,2022-04-04 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926800-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087491",NA,"as N","Nitrogen","Dissolved","0.396","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926800-0404-4-C/results/970087491/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:33","STORET",7,NA,2022-04-04 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.396,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926800-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"14:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087524",NA,"as N","Nitrogen","Dissolved","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926800-0509-4-C/results/970087524/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:34","STORET",7,NA,2022-05-09 21:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926800-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"14:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087542",NA,"as N","Nitrogen","Total","0.245","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926800-0509-4-C/results/970087542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:34","STORET",7,NA,2022-05-09 21:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.245,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926800-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087565",NA,"as N","Nitrogen","Total","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926800-0613-4-C/results/970087565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:35","STORET",7,NA,2022-06-13 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926800-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087583",NA,"as N","Nitrogen","Dissolved","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926800-0613-4-C/results/970087583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:35","STORET",7,NA,2022-06-13 20:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926800-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087614",NA,"as N","Nitrogen","Total","0.411","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926800-0718-4-C/results/970087614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:36","STORET",7,NA,2022-07-18 21:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.411,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926800-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087624",NA,"as N","Nitrogen","Dissolved","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926800-0718-4-C/results/970087624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:36","STORET",7,NA,2022-07-18 21:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926800-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087645",NA,"as N","Nitrogen","Total","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926800-0808-4-C/results/970087645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:37","STORET",7,NA,2022-08-08 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926800-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087664",NA,"as N","Nitrogen","Dissolved","0.525","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926800-0808-4-C/results/970087664/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:37","STORET",7,NA,2022-08-08 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.525,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926800-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087696",NA,"as N","Nitrogen","Dissolved","0.806","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926800-0912-4-C/results/970087696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:38","STORET",7,NA,2022-09-12 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.806,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926800-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926800","Silver Ck ab Silver Ck WWTP at Promontory Ranch Rd Xing",NA,NA,NA,NA,"40.7229700000","-111.4786800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087702",NA,"as N","Nitrogen","Total","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926800-0912-4-C/results/970087702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:38","STORET",7,NA,2022-09-12 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7229700000","-111.4786800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",40.72297,-111.47868,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926850-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087726",NA,"as N","Nitrogen","Total","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926850-0404-4-C/results/970087726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:39","STORET",7,NA,2022-04-04 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926850-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087759",NA,"as N","Nitrogen","Dissolved","0.543","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926850-0404-4-C/results/970087759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:40","STORET",7,NA,2022-04-04 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.543,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926850-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087780",NA,"as N","Nitrogen","Dissolved","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926850-0509-4-C/results/970087780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:41","STORET",7,NA,2022-05-09 21:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926850-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087783",NA,"as N","Nitrogen","Total","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926850-0509-4-C/results/970087783/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:41","STORET",7,NA,2022-05-09 21:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926850-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087813",NA,"as N","Nitrogen","Total","0.494","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926850-0613-4-C/results/970087813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:42","STORET",7,NA,2022-06-13 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.494,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926850-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087816",NA,"as N","Nitrogen","Dissolved","2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926850-0613-4-C/results/970087816/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:42","STORET",7,NA,2022-06-13 20:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926850-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087864",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926850-0718-4-C/results/970087864/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:44","STORET",7,NA,2022-07-18 21:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926850-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087866",NA,"as N","Nitrogen","Total","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926850-0718-4-C/results/970087866/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:44","STORET",7,NA,2022-07-18 21:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926850-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087903",NA,"as N","Nitrogen","Total","0.326","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926850-0808-4-C/results/970087903/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:46","STORET",7,NA,2022-08-08 21:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.326,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926850-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087910",NA,"as N","Nitrogen","Dissolved","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926850-0808-4-C/results/970087910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:46","STORET",7,NA,2022-08-08 21:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926850-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087917",NA,"as N","Nitrogen","Total","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926850-0912-4-C/results/970087917/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:46","STORET",7,NA,2022-09-12 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926850-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926850","SILVER CK AT US40 XING E OF PARK CITY",NA,NA,NA,NA,"40.6738400000","-111.4644500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087919",NA,"as N","Nitrogen","Dissolved","0.868","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926850-0912-4-C/results/970087919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:46","STORET",7,NA,2022-09-12 19:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6738400000","-111.4644500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.868,"MG/L","Numeric","Not Reviewed","Uncensored",40.67384,-111.46445,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926948-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087977",NA,"as N","Nitrogen","Dissolved","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926948-0404-4-C/results/970087977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:47","STORET",7,NA,2022-04-04 19:45:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926948-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970087994",NA,"as N","Nitrogen","Total","0.645","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926948-0404-4-C/results/970087994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:48","STORET",7,NA,2022-04-04 19:45:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.645,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926948-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088002",NA,"as N","Nitrogen","Total","0.491","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926948-0509-4-C/results/970088002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:48","STORET",7,NA,2022-05-09 21:10:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.491,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926948-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088028",NA,"as N","Nitrogen","Dissolved","0.432","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926948-0509-4-C/results/970088028/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:48","STORET",7,NA,2022-05-09 21:10:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.432,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926948-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088037",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926948-0613-4-C/results/970088037/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:49","STORET",7,NA,2022-06-13 19:50:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926948-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088050",NA,"as N","Nitrogen","Dissolved","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926948-0613-4-C/results/970088050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:49","STORET",7,NA,2022-06-13 19:50:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926948-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088080","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926948-0718-4-C/results/970088080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:50","STORET",7,NA,2022-07-18 21:00:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926948-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088101","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926948-0718-4-C/results/970088101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:50","STORET",7,NA,2022-07-18 21:00:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926948-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088125",NA,"as N","Nitrogen","Dissolved","0.177","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926948-0808-4-C/results/970088125/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:51","STORET",7,NA,2022-08-08 21:15:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.177,"MG/L","Numeric","Pass","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926948-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088144","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926948-0808-4-C/results/970088144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:51","STORET",7,NA,2022-08-08 21:15:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926948-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088147",NA,"as N","Nitrogen","Dissolved","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926948-0912-4-C/results/970088147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:52","STORET",7,NA,2022-09-12 19:35:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926948-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926948","Silver Ck @ Iron Horse Dr Xing Replicate of 4926950",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088158",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926948-0912-4-C/results/970088158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:52","STORET",7,NA,2022-09-12 19:35:00,NA,"River/Stream","Replicate of 4926950","16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926950-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088204",NA,"as N","Nitrogen","Total","0.784","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926950-0404-4-C/results/970088204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:53","STORET",7,NA,2022-04-04 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.784,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4926950-0404-4-C","Sample-Routine","Water",NA,2022-04-04,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088226",NA,"as N","Nitrogen","Dissolved","0.649","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4926950-0404-4-C/results/970088226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:53","STORET",7,NA,2022-04-04 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.649,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926950-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088261",NA,"as N","Nitrogen","Total","0.445","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926950-0509-4-C/results/970088261/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:53","STORET",7,NA,2022-05-09 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.445,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4926950-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088270",NA,"as N","Nitrogen","Dissolved","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4926950-0509-4-C/results/970088270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:54","STORET",7,NA,2022-05-09 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926950-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088281",NA,"as N","Nitrogen","Dissolved","2.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926950-0613-4-C/results/970088281/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:54","STORET",7,NA,2022-06-13 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4926950-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088294",NA,"as N","Nitrogen","Total","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4926950-0613-4-C/results/970088294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:54","STORET",7,NA,2022-06-13 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926950-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088323",NA,"as N","Nitrogen","Dissolved","0.325","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926950-0718-4-C/results/970088323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:55","STORET",7,NA,2022-07-18 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.325,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4926950-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088354",NA,"as N","Nitrogen","Total","0.272","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4926950-0718-4-C/results/970088354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:55","STORET",7,NA,2022-07-18 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.272,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926950-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088362",NA,"as N","Nitrogen","Dissolved","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926950-0808-4-C/results/970088362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:56","STORET",7,NA,2022-08-08 21:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4926950-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088372",NA,"as N","Nitrogen","Total","0.157","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4926950-0808-4-C/results/970088372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:56","STORET",7,NA,2022-08-08 21:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.157,"MG/L","Numeric","Pass","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926950-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088403",NA,"as N","Nitrogen","Total","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926950-0912-4-C/results/970088403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:57","STORET",7,NA,2022-09-12 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4926950-0912-4-C","Sample-Routine","Water",NA,2022-09-12,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4926950","Silver Ck @ Iron Horse Dr Xing",NA,NA,NA,NA,"40.6591500000","-111.5017500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088405",NA,"as N","Nitrogen","Dissolved","0.462","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4926950-0912-4-C/results/970088405/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:57","STORET",7,NA,2022-09-12 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6591500000","-111.5017500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.462,"MG/L","Numeric","Not Reviewed","Uncensored",40.65915,-111.50175,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927010-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088432",NA,"as N","Nitrogen","Total","0.623","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927010-0405-4-C/results/970088432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:57","STORET",7,NA,2022-04-05 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.623,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927010-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088449",NA,"as N","Nitrogen","Dissolved","0.672","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927010-0405-4-C/results/970088449/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:57","STORET",7,NA,2022-04-05 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.672,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927010-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088451",NA,"as N","Nitrogen","Total","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927010-0511-4-C/results/970088451/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:58","STORET",7,NA,2022-05-11 16:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927010-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088452",NA,"as N","Nitrogen","Dissolved","0.378","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927010-0511-4-C/results/970088452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:58","STORET",7,NA,2022-05-11 16:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.378,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4927010-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088466",NA,"as N","Nitrogen","Total","0.455","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927010-0616-4-C/results/970088466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:58","STORET",7,NA,2022-06-16 17:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.455,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4927010-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088485",NA,"as N","Nitrogen","Dissolved","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927010-0616-4-C/results/970088485/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:59","STORET",7,NA,2022-06-16 17:55:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4927010-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088493",NA,"as N","Nitrogen","Dissolved","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927010-0720-4-C/results/970088493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:59","STORET",7,NA,2022-07-20 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4927010-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088496",NA,"as N","Nitrogen","Total","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927010-0720-4-C/results/970088496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:25:59","STORET",7,NA,2022-07-20 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4927010-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088513",NA,"as N","Nitrogen","Total","0.514","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927010-0809-4-C/results/970088513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:00","STORET",7,NA,2022-08-09 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.514,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4927010-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088515",NA,"as N","Nitrogen","Dissolved","0.561","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927010-0809-4-C/results/970088515/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:00","STORET",7,NA,2022-08-09 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.561,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4927010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088526",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927010-0913-4-C/results/970088526/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:00","STORET",7,NA,2022-09-13 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4927010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927010","WEBER R BL ROCKPORT RES",NA,NA,NA,NA,"40.7921700000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088529",NA,"as N","Nitrogen","Total","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927010-0913-4-C/results/970088529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:00","STORET",7,NA,2022-09-13 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7921700000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",40.79217,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927245-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927245","Crandall Canyon AB Rockport Reservoir at U-302 xing",NA,NA,NA,NA,"40.7660400000","-111.3811600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088547",NA,"as N","Nitrogen","Dissolved","0.947","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927245-0405-4-C/results/970088547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:01","STORET",7,NA,2022-04-05 20:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7660400000","-111.3811600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.947,"MG/L","Numeric","Not Reviewed","Uncensored",40.76604,-111.38116,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927245-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927245","Crandall Canyon AB Rockport Reservoir at U-302 xing",NA,NA,NA,NA,"40.7660400000","-111.3811600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088552",NA,"as N","Nitrogen","Total","0.364","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927245-0405-4-C/results/970088552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:01","STORET",7,NA,2022-04-05 20:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7660400000","-111.3811600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.364,"MG/L","Numeric","Not Reviewed","Uncensored",40.76604,-111.38116,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927245-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927245","Crandall Canyon AB Rockport Reservoir at U-302 xing",NA,NA,NA,NA,"40.7660400000","-111.3811600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088562",NA,"as N","Nitrogen","Dissolved","0.265","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927245-0511-4-C/results/970088562/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:02","STORET",7,NA,2022-05-11 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7660400000","-111.3811600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.265,"MG/L","Numeric","Not Reviewed","Uncensored",40.76604,-111.38116,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927245-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927245","Crandall Canyon AB Rockport Reservoir at U-302 xing",NA,NA,NA,NA,"40.7660400000","-111.3811600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088565",NA,"as N","Nitrogen","Total","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927245-0511-4-C/results/970088565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:02","STORET",7,NA,2022-05-11 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7660400000","-111.3811600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",40.76604,-111.38116,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4927245-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927245","Crandall Canyon AB Rockport Reservoir at U-302 xing",NA,NA,NA,NA,"40.7660400000","-111.3811600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088576",NA,"as N","Nitrogen","Total","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4927245-0630-4-C/results/970088576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:02","STORET",7,NA,2022-06-30 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7660400000","-111.3811600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.76604,-111.38116,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4927245-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927245","Crandall Canyon AB Rockport Reservoir at U-302 xing",NA,NA,NA,NA,"40.7660400000","-111.3811600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088585",NA,"as N","Nitrogen","Dissolved","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4927245-0630-4-C/results/970088585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:02","STORET",7,NA,2022-06-30 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7660400000","-111.3811600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",40.76604,-111.38116,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927247-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088601",NA,"as N","Nitrogen","Dissolved","0.422","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927247-0405-4-C/results/970088601/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:03","STORET",7,NA,2022-04-05 20:10:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.422,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927247-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088617",NA,"as N","Nitrogen","Total","0.463","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927247-0405-4-C/results/970088617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:03","STORET",7,NA,2022-04-05 20:10:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.463,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927247-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088624",NA,"as N","Nitrogen","Total","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927247-0511-4-C/results/970088624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:04","STORET",7,NA,2022-05-11 16:10:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927247-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088625",NA,"as N","Nitrogen","Dissolved","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927247-0511-4-C/results/970088625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:04","STORET",7,NA,2022-05-11 16:10:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4927247-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"08:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088641",NA,"as N","Nitrogen","Total","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927247-0616-4-C/results/970088641/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:04","STORET",7,NA,2022-06-16 15:40:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4927247-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"08:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088644",NA,"as N","Nitrogen","Dissolved","0.541","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927247-0616-4-C/results/970088644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:04","STORET",7,NA,2022-06-16 15:40:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.541,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4927247-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088660",NA,"as N","Nitrogen","Dissolved","0.414","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927247-0720-4-C/results/970088660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:05","STORET",7,NA,2022-07-20 16:30:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.414,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4927247-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088661",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927247-0720-4-C/results/970088661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:05","STORET",7,NA,2022-07-20 16:30:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4927247-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088685",NA,"as N","Nitrogen","Dissolved","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927247-0809-4-C/results/970088685/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:06","STORET",7,NA,2022-08-09 20:20:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4927247-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088688",NA,"as N","Nitrogen","Total","0.373","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927247-0809-4-C/results/970088688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:06","STORET",7,NA,2022-08-09 20:20:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.373,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4927247-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088696",NA,"as N","Nitrogen","Total","0.487","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927247-0913-4-C/results/970088696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:06","STORET",7,NA,2022-09-13 20:35:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.487,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4927247-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927247","WEBER R AB ROCKPORT RES Replicate of 4927250",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088699",NA,"as N","Nitrogen","Dissolved","0.565","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927247-0913-4-C/results/970088699/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:06","STORET",7,NA,2022-09-13 20:35:00,NA,"River/Stream","Replicate of 4927250","16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.565,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927250-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088709",NA,"as N","Nitrogen","Total","0.529","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927250-0405-4-C/results/970088709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:07","STORET",7,NA,2022-04-05 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.529,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927250-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088725",NA,"as N","Nitrogen","Dissolved","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927250-0405-4-C/results/970088725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:07","STORET",7,NA,2022-04-05 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927250-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088734",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927250-0511-4-C/results/970088734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:07","STORET",7,NA,2022-05-11 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927250-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088736",NA,"as N","Nitrogen","Total","0.677","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927250-0511-4-C/results/970088736/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:08","STORET",7,NA,2022-05-11 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.677,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4927250-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"08:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088744",NA,"as N","Nitrogen","Dissolved","0.595","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927250-0616-4-C/results/970088744/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:08","STORET",7,NA,2022-06-16 15:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.595,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4927250-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"08:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088762",NA,"as N","Nitrogen","Total","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927250-0616-4-C/results/970088762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:08","STORET",7,NA,2022-06-16 15:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4927250-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088766",NA,"as N","Nitrogen","Total","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927250-0720-4-C/results/970088766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:09","STORET",7,NA,2022-07-20 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4927250-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088774",NA,"as N","Nitrogen","Dissolved","0.456","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927250-0720-4-C/results/970088774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:09","STORET",7,NA,2022-07-20 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.456,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4927250-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088790",NA,"as N","Nitrogen","Total","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927250-0809-4-C/results/970088790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:09","STORET",7,NA,2022-08-09 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4927250-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088799",NA,"as N","Nitrogen","Dissolved","0.474","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927250-0809-4-C/results/970088799/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:09","STORET",7,NA,2022-08-09 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.474,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4927250-0907-4-C","Sample-Routine","Water",NA,2022-09-07,"10:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088810",NA,"as N","Nitrogen","Dissolved","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4927250-0907-4-C/results/970088810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:10","STORET",7,NA,2022-09-07 17:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4927250-0907-4-C","Sample-Routine","Water",NA,2022-09-07,"10:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088819",NA,"as N","Nitrogen","Total","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4927250-0907-4-C/results/970088819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:10","STORET",7,NA,2022-09-07 17:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4927250-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088834",NA,"as N","Nitrogen","Total","0.673","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927250-0913-4-C/results/970088834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:11","STORET",7,NA,2022-09-13 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.673,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4927250-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927250","WEBER R AB ROCKPORT RES",NA,NA,NA,NA,"40.7529100000","-111.3737500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088837",NA,"as N","Nitrogen","Dissolved","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927250-0913-4-C/results/970088837/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:11","STORET",7,NA,2022-09-13 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7529100000","-111.3737500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.75291,-111.37375,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927500-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088847",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927500-0405-4-C/results/970088847/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:11","STORET",7,NA,2022-04-05 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4927500-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088851",NA,"as N","Nitrogen","Total","0.944","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4927500-0405-4-C/results/970088851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:11","STORET",7,NA,2022-04-05 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.944,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927500-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088874",NA,"as N","Nitrogen","Total","0.764","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927500-0510-4-C/results/970088874/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:12","STORET",7,NA,2022-05-10 22:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.764,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4927500-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088875",NA,"as N","Nitrogen","Dissolved","0.815","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4927500-0510-4-C/results/970088875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:12","STORET",7,NA,2022-05-10 22:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.815,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4927500-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"14:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088879",NA,"as N","Nitrogen","Dissolved","0.876","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927500-0614-4-C/results/970088879/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:12","STORET",7,NA,2022-06-14 21:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.876,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4927500-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"14:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088892",NA,"as N","Nitrogen","Total","0.699","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4927500-0614-4-C/results/970088892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:13","STORET",7,NA,2022-06-14 21:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.699,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4927500-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088904",NA,"as N","Nitrogen","Total","0.676","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927500-0719-4-C/results/970088904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:13","STORET",7,NA,2022-07-19 22:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.676,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4927500-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088905",NA,"as N","Nitrogen","Dissolved","0.611","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4927500-0719-4-C/results/970088905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:13","STORET",7,NA,2022-07-19 22:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.611,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4927500-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088934",NA,"as N","Nitrogen","Total","0.644","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927500-0809-4-C/results/970088934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:14","STORET",7,NA,2022-08-09 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.644,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4927500-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088938",NA,"as N","Nitrogen","Dissolved","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4927500-0809-4-C/results/970088938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:14","STORET",7,NA,2022-08-09 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4927500-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088945",NA,"as N","Nitrogen","Total","0.781","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927500-0913-4-C/results/970088945/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:14","STORET",7,NA,2022-09-13 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.781,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4927500-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4927500","FORT CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7247100000","-111.3415100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088948",NA,"as N","Nitrogen","Dissolved","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4927500-0913-4-C/results/970088948/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:15","STORET",7,NA,2022-09-13 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7247100000","-111.3415100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.72471,-111.34151,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928005-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088950",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928005-0405-4-C/results/970088950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:15","STORET",7,NA,2022-04-05 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928005-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088974",NA,"as N","Nitrogen","Dissolved","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928005-0405-4-C/results/970088974/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:15","STORET",7,NA,2022-04-05 17:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928005-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088982",NA,"as N","Nitrogen","Dissolved","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928005-0510-4-C/results/970088982/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:16","STORET",7,NA,2022-05-10 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928005-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088987",NA,"as N","Nitrogen","Total","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928005-0510-4-C/results/970088987/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:16","STORET",7,NA,2022-05-10 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928005-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970088999",NA,"as N","Nitrogen","Dissolved","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928005-0614-4-C/results/970088999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:17","STORET",7,NA,2022-06-14 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928005-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089002",NA,"as N","Nitrogen","Total","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928005-0614-4-C/results/970089002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:17","STORET",7,NA,2022-06-14 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928005-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089020",NA,"as N","Nitrogen","Dissolved","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928005-0719-4-C/results/970089020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:17","STORET",7,NA,2022-07-19 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928005-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089022",NA,"as N","Nitrogen","Total","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928005-0719-4-C/results/970089022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:18","STORET",7,NA,2022-07-19 19:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928005-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089027",NA,"as N","Nitrogen","Total","0.406","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928005-0809-4-C/results/970089027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:18","STORET",7,NA,2022-08-09 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.406,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928005-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089036",NA,"as N","Nitrogen","Dissolved","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928005-0809-4-C/results/970089036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:18","STORET",7,NA,2022-08-09 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928005-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089055",NA,"as N","Nitrogen","Dissolved","0.968","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928005-0913-4-C/results/970089055/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:19","STORET",7,NA,2022-09-13 17:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.968,"MG/L","Numeric","Not Reviewed","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928005-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928005","Weber River AB Oakley City WWTP AB Millrace Rd",NA,NA,NA,NA,"40.7094600000","-111.2999300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089056",NA,"as N","Nitrogen","Total","0.174","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928005-0913-4-C/results/970089056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:19","STORET",7,NA,2022-09-13 17:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7094600000","-111.2999300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.174,"MG/L","Numeric","Pass","Uncensored",40.70946,-111.29993,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928010-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089064",NA,"as N","Nitrogen","Dissolved","15.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928010-0405-4-C/results/970089064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:19","STORET",7,NA,2022-04-05 17:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928010-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089083",NA,"as N","Nitrogen","Total","15.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928010-0405-4-C/results/970089083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:19","STORET",7,NA,2022-04-05 17:50:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",15.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928010-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089097",NA,"as N","Nitrogen","Total","14.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928010-0510-4-C/results/970089097/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:20","STORET",7,NA,2022-05-10 18:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928010-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089100",NA,"as N","Nitrogen","Dissolved","14.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928010-0510-4-C/results/970089100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:20","STORET",7,NA,2022-05-10 18:10:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",14.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928010-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089108",NA,"as N","Nitrogen","Dissolved","12.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928010-0614-4-C/results/970089108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:21","STORET",7,NA,2022-06-14 18:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928010-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089115",NA,"as N","Nitrogen","Total","12.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928010-0614-4-C/results/970089115/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:21","STORET",7,NA,2022-06-14 18:30:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928010-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089133",NA,"as N","Nitrogen","Total","11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928010-0719-4-C/results/970089133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:22","STORET",7,NA,2022-07-19 18:55:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928010-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089136",NA,"as N","Nitrogen","Dissolved","11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928010-0719-4-C/results/970089136/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:22","STORET",7,NA,2022-07-19 18:55:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928010-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089150",NA,"as N","Nitrogen","Dissolved","5.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928010-0809-4-C/results/970089150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:23","STORET",7,NA,2022-08-09 17:15:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928010-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089161",NA,"as N","Nitrogen","Total","5.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928010-0809-4-C/results/970089161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:23","STORET",7,NA,2022-08-09 17:15:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.97,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089170",NA,"as N","Nitrogen","Total","8.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928010-0913-4-C/results/970089170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:24","STORET",7,NA,2022-09-13 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928010","Oakley WWTP 002 New Plant",NA,NA,NA,NA,"40.7096400000","-111.3003700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089174",NA,"as N","Nitrogen","Dissolved","8.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928010-0913-4-C/results/970089174/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:24","STORET",7,NA,2022-09-13 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.7096400000","-111.3003700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.70964,-111.30037,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928300-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089182",NA,"as N","Nitrogen","Dissolved","0.969","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928300-0405-4-C/results/970089182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:24","STORET",7,NA,2022-04-05 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.969,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928300-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089195",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928300-0405-4-C/results/970089195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:25","STORET",7,NA,2022-04-05 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928300-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality;Drinking Water Systems","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089215",NA,"as N","Nitrogen","Dissolved","0.875","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928300-0614-4-C/results/970089215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:25","STORET",7,NA,2022-06-14 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.875,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928300-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality;Drinking Water Systems","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089219",NA,"as N","Nitrogen","Total","0.851","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928300-0614-4-C/results/970089219/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:25","STORET",7,NA,2022-06-14 18:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.851,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928300-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089234",NA,"as N","Nitrogen","Total","0.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928300-0719-4-C/results/970089234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:26","STORET",7,NA,2022-07-19 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.86,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928300-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089236",NA,"as N","Nitrogen","Dissolved","0.808","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928300-0719-4-C/results/970089236/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:26","STORET",7,NA,2022-07-19 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.808,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928300-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089254",NA,"as N","Nitrogen","Dissolved","0.917","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928300-0809-4-C/results/970089254/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:27","STORET",7,NA,2022-08-09 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.917,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928300-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089260",NA,"as N","Nitrogen","Total","0.863","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928300-0809-4-C/results/970089260/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:27","STORET",7,NA,2022-08-09 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.863,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928300-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089270",NA,"as N","Nitrogen","Dissolved","0.992","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928300-0913-4-C/results/970089270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:28","STORET",7,NA,2022-09-13 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.992,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928300-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928300","BEAVER CK AB CROOKED CK",NA,NA,NA,NA,"40.6805500000","-111.3190800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089272",NA,"as N","Nitrogen","Total","0.804","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928300-0913-4-C/results/970089272/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:28","STORET",7,NA,2022-09-13 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6805500000","-111.3190800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.804,"MG/L","Numeric","Not Reviewed","Uncensored",40.68055,-111.31908,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928500-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089279",NA,"as N","Nitrogen","Total","3.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928500-0510-4-C/results/970089279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:28","STORET",7,NA,2022-05-10 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928500-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089287",NA,"as N","Nitrogen","Dissolved","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928500-0510-4-C/results/970089287/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:28","STORET",7,NA,2022-05-10 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928500-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089295",NA,"as N","Nitrogen","Dissolved","5.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928500-0614-4-C/results/970089295/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:29","STORET",7,NA,2022-06-14 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.95,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928500-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089313",NA,"as N","Nitrogen","Total","5.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928500-0614-4-C/results/970089313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:29","STORET",7,NA,2022-06-14 17:45:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.97,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928500-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089319",NA,"as N","Nitrogen","Total","2.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928500-0913-4-C/results/970089319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:30","STORET",7,NA,2022-09-13 17:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928500-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928500","KAMAS LAGOONS",NA,NA,NA,NA,"40.6538700000","-111.2915600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089323",NA,"as N","Nitrogen","Dissolved","2.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928500-0913-4-C/results/970089323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:30","STORET",7,NA,2022-09-13 17:00:00,NA,"Facility Other",NA,"16020101",NA,NA,NA,NA,"40.6538700000","-111.2915600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.65387,-111.29156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928530-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089347",NA,"as N","Nitrogen","Total","0.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928530-0405-4-C/results/970089347/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:31","STORET",7,NA,2022-04-05 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928530-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089349",NA,"as N","Nitrogen","Dissolved","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928530-0405-4-C/results/970089349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:31","STORET",7,NA,2022-04-05 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928530-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089356",NA,"as N","Nitrogen","Total","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928530-0510-4-C/results/970089356/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:31","STORET",7,NA,2022-05-10 15:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928530-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089360",NA,"as N","Nitrogen","Dissolved","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928530-0510-4-C/results/970089360/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:31","STORET",7,NA,2022-05-10 15:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928530-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089368",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928530-0614-4-C/results/970089368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:32","STORET",7,NA,2022-06-14 16:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928530-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089378",NA,"as N","Nitrogen","Total","0.675","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928530-0614-4-C/results/970089378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:32","STORET",7,NA,2022-06-14 16:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.675,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928530-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089391",NA,"as N","Nitrogen","Dissolved","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928530-0719-4-C/results/970089391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:32","STORET",7,NA,2022-07-19 16:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928530-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089397",NA,"as N","Nitrogen","Total","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928530-0719-4-C/results/970089397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:32","STORET",7,NA,2022-07-19 16:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928530-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"08:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089416",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928530-0809-4-C/results/970089416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:33","STORET",7,NA,2022-08-09 15:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928530-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"08:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089421",NA,"as N","Nitrogen","Total","0.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928530-0809-4-C/results/970089421/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:33","STORET",7,NA,2022-08-09 15:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.77,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928530-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089431",NA,"as N","Nitrogen","Total","0.784","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928530-0913-4-C/results/970089431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:34","STORET",7,NA,2022-09-13 15:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.784,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928530-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928530","BEAVER CREEK ABOVE WEBER-PROVO CANAL",NA,NA,NA,NA,"40.6448800000","-111.2840500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089435",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928530-0913-4-C/results/970089435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:34","STORET",7,NA,2022-09-13 15:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6448800000","-111.2840500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.64488,-111.28405,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928540-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089438",NA,"as N","Nitrogen","Total","0.645","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928540-0405-4-C/results/970089438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:34","STORET",7,NA,2022-04-05 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.645,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928540-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089454",NA,"as N","Nitrogen","Dissolved","0.693","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928540-0405-4-C/results/970089454/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:35","STORET",7,NA,2022-04-05 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.693,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928540-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089465",NA,"as N","Nitrogen","Total","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928540-0510-4-C/results/970089465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:35","STORET",7,NA,2022-05-10 16:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928540-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089472",NA,"as N","Nitrogen","Dissolved","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928540-0510-4-C/results/970089472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:35","STORET",7,NA,2022-05-10 16:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928540-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089477",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928540-0614-4-C/results/970089477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:36","STORET",7,NA,2022-06-14 16:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928540-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089495",NA,"as N","Nitrogen","Total","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928540-0614-4-C/results/970089495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:36","STORET",7,NA,2022-06-14 16:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928540-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089500",NA,"as N","Nitrogen","Total","0.457","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928540-0719-4-C/results/970089500/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:37","STORET",7,NA,2022-07-19 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.457,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928540-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089505",NA,"as N","Nitrogen","Dissolved","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928540-0719-4-C/results/970089505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:37","STORET",7,NA,2022-07-19 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928540-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089518",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928540-0809-4-C/results/970089518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:37","STORET",7,NA,2022-08-09 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928540-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089527",NA,"as N","Nitrogen","Total","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928540-0809-4-C/results/970089527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:37","STORET",7,NA,2022-08-09 16:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928540-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089539",NA,"as N","Nitrogen","Dissolved","0.887","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928540-0913-4-C/results/970089539/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:38","STORET",7,NA,2022-09-13 16:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.887,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928540-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928540","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089541",NA,"as N","Nitrogen","Total","0.747","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928540-0913-4-C/results/970089541/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:38","STORET",7,NA,2022-09-13 16:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.747,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928541-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089546",NA,"as N","Nitrogen","Dissolved","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928541-0405-4-C/results/970089546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:39","STORET",7,NA,2022-04-05 16:20:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4928541-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089548",NA,"as N","Nitrogen","Total","0.446","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4928541-0405-4-C/results/970089548/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:39","STORET",7,NA,2022-04-05 16:20:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.446,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928541-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089580",NA,"as N","Nitrogen","Dissolved","0.386","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928541-0510-4-C/results/970089580/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:40","STORET",7,NA,2022-05-10 16:30:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.386,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4928541-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089581",NA,"as N","Nitrogen","Total","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4928541-0510-4-C/results/970089581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:40","STORET",7,NA,2022-05-10 16:30:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928541-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089583",NA,"as N","Nitrogen","Total","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928541-0614-4-C/results/970089583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:40","STORET",7,NA,2022-06-14 16:45:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4928541-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089584",NA,"as N","Nitrogen","Dissolved","0.476","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4928541-0614-4-C/results/970089584/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:40","STORET",7,NA,2022-06-14 16:45:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.476,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928541-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089608",NA,"as N","Nitrogen","Dissolved","0.513","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928541-0719-4-C/results/970089608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:41","STORET",7,NA,2022-07-19 17:10:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.513,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4928541-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089616",NA,"as N","Nitrogen","Total","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4928541-0719-4-C/results/970089616/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:41","STORET",7,NA,2022-07-19 17:10:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928541-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089618",NA,"as N","Nitrogen","Dissolved","0.779","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928541-0809-4-C/results/970089618/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:42","STORET",7,NA,2022-08-09 16:10:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.779,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4928541-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089642",NA,"as N","Nitrogen","Total","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4928541-0809-4-C/results/970089642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:42","STORET",7,NA,2022-08-09 16:10:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928541-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089644",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928541-0913-4-C/results/970089644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:43","STORET",7,NA,2022-09-13 16:15:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4928541-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4928541","BEAVER CK AT BRIDGE TO LUMBER MILL 1MI AB KAMAS 19 Replicate of 4928540",NA,NA,NA,NA,"40.6382900000","-111.2624100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089647",NA,"as N","Nitrogen","Total","0.531","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4928541-0913-4-C/results/970089647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:43","STORET",7,NA,2022-09-13 16:15:00,NA,"River/Stream","Replicate of 4928540","16020101",NA,NA,NA,NA,"40.6382900000","-111.2624100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.531,"MG/L","Numeric","Not Reviewed","Uncensored",40.63829,-111.26241,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4929010-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089656",NA,"as N","Nitrogen","Total","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929010-0405-4-C/results/970089656/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:44","STORET",7,NA,2022-04-05 16:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4929010-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089672",NA,"as N","Nitrogen","Dissolved","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929010-0405-4-C/results/970089672/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:44","STORET",7,NA,2022-04-05 16:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929010-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089684",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929010-0510-4-C/results/970089684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:45","STORET",7,NA,2022-05-10 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929010-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089688",NA,"as N","Nitrogen","Dissolved","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929010-0510-4-C/results/970089688/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:45","STORET",7,NA,2022-05-10 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929010-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089691",NA,"as N","Nitrogen","Dissolved","0.798","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929010-0614-4-C/results/970089691/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:45","STORET",7,NA,2022-06-14 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.798,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929010-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089696",NA,"as N","Nitrogen","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929010-0614-4-C/results/970089696/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:46","STORET",7,NA,2022-06-14 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929010-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089717",NA,"as N","Nitrogen","Dissolved","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929010-0719-4-C/results/970089717/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:47","STORET",7,NA,2022-07-19 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929010-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089727",NA,"as N","Nitrogen","Total","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929010-0719-4-C/results/970089727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:47","STORET",7,NA,2022-07-19 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929010-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089733",NA,"as N","Nitrogen","Total","0.289","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929010-0809-4-C/results/970089733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:47","STORET",7,NA,2022-08-09 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.289,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929010-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089745",NA,"as N","Nitrogen","Dissolved","0.685","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929010-0809-4-C/results/970089745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:48","STORET",7,NA,2022-08-09 16:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.685,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089759",NA,"as N","Nitrogen","Dissolved","0.258","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929010-0913-4-C/results/970089759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:48","STORET",7,NA,2022-09-13 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.258,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929010-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929010","BEAVER CK AT BEAVER CK RD XING",NA,NA,NA,NA,"40.6163700000","-111.2115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089763",NA,"as N","Nitrogen","Total","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929010-0913-4-C/results/970089763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:49","STORET",7,NA,2022-09-13 16:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6163700000","-111.2115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",40.61637,-111.21153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4929100-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089769",NA,"as N","Nitrogen","Dissolved","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929100-0405-4-C/results/970089769/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:49","STORET",7,NA,2022-04-05 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4929100-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089770",NA,"as N","Nitrogen","Total","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929100-0405-4-C/results/970089770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:49","STORET",7,NA,2022-04-05 16:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929100-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089792",NA,"as N","Nitrogen","Dissolved","0.344","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929100-0510-4-C/results/970089792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:50","STORET",7,NA,2022-05-10 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.344,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929100-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089794",NA,"as N","Nitrogen","Total","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929100-0510-4-C/results/970089794/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:51","STORET",7,NA,2022-05-10 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929100-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089817",NA,"as N","Nitrogen","Dissolved","0.743","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929100-0614-4-C/results/970089817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:52","STORET",7,NA,2022-06-14 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.743,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929100-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089822",NA,"as N","Nitrogen","Total","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929100-0614-4-C/results/970089822/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:52","STORET",7,NA,2022-06-14 17:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929100-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089834",NA,"as N","Nitrogen","Dissolved","0.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929100-0630-4-C/results/970089834/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:53","STORET",7,NA,2022-06-30 21:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.77,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929100-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089835",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929100-0630-4-C/results/970089835/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:53","STORET",7,NA,2022-06-30 21:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929100-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089858",NA,"as N","Nitrogen","Dissolved","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929100-0719-4-C/results/970089858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:54","STORET",7,NA,2022-07-19 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929100-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089860",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929100-0719-4-C/results/970089860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:54","STORET",7,NA,2022-07-19 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929100-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089867",NA,"as N","Nitrogen","Total","0.465","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929100-0809-4-C/results/970089867/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:55","STORET",7,NA,2022-08-09 16:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.465,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929100-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089876",NA,"as N","Nitrogen","Dissolved","0.511","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929100-0809-4-C/results/970089876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:55","STORET",7,NA,2022-08-09 16:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.511,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929100-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089890",NA,"as N","Nitrogen","Total","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929100-0913-4-C/results/970089890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:56","STORET",7,NA,2022-09-13 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929100-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929100","BEAVER CK AT USFS BOUNDARY 10",NA,NA,NA,NA,"40.6307300000","-111.1868300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089895",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929100-0913-4-C/results/970089895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:56","STORET",7,NA,2022-09-13 16:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.6307300000","-111.1868300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.63073,-111.18683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929200-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089919",NA,"as N","Nitrogen","Dissolved","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929200-0510-4-C/results/970089919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:57","STORET",7,NA,2022-05-10 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929200-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089920",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929200-0510-4-C/results/970089920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:57","STORET",7,NA,2022-05-10 18:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929200-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089941",NA,"as N","Nitrogen","Total","0.315","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929200-0614-4-C/results/970089941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:58","STORET",7,NA,2022-06-14 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.315,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929200-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089950",NA,"as N","Nitrogen","Dissolved","0.437","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929200-0614-4-C/results/970089950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:58","STORET",7,NA,2022-06-14 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.437,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929200-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089960",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929200-0719-4-C/results/970089960/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:59","STORET",7,NA,2022-07-19 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929200-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089962","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929200-0719-4-C/results/970089962/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:26:59","STORET",7,NA,2022-07-19 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929200-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089968",NA,"as N","Nitrogen","Dissolved","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929200-0809-4-C/results/970089968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:00","STORET",7,NA,2022-08-09 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929200-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089976",NA,"as N","Nitrogen","Total","0.279","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929200-0809-4-C/results/970089976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:00","STORET",7,NA,2022-08-09 17:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.279,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929200-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089990",NA,"as N","Nitrogen","Dissolved","0.967","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929200-0913-4-C/results/970089990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:01","STORET",7,NA,2022-09-13 17:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.967,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929200-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929200","WEBER R AB WEBER/PROVO DIVERSION",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970089994",NA,"as N","Nitrogen","Total","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929200-0913-4-C/results/970089994/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:01","STORET",7,NA,2022-09-13 17:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929201-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090026",NA,"as N","Nitrogen","Dissolved","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929201-0510-4-C/results/970090026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:03","STORET",7,NA,2022-05-10 19:00:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929201-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090027",NA,"as N","Nitrogen","Total","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929201-0510-4-C/results/970090027/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:03","STORET",7,NA,2022-05-10 19:00:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929201-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090035",NA,"as N","Nitrogen","Dissolved","0.477","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929201-0614-4-C/results/970090035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:04","STORET",7,NA,2022-06-14 19:10:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.477,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929201-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090046",NA,"as N","Nitrogen","Total","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929201-0614-4-C/results/970090046/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:04","STORET",7,NA,2022-06-14 19:10:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929201-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090060",NA,"as N","Nitrogen","Total","0.172","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929201-0719-4-C/results/970090060/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:05","STORET",7,NA,2022-07-19 19:30:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.172,"MG/L","Numeric","Pass","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929201-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090063","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929201-0719-4-C/results/970090063/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:05","STORET",7,NA,2022-07-19 19:30:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929201-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090068",NA,"as N","Nitrogen","Total","0.188","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929201-0809-4-C/results/970090068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:06","STORET",7,NA,2022-08-09 17:50:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.188,"MG/L","Numeric","Pass","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929201-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090073",NA,"as N","Nitrogen","Dissolved","0.306","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929201-0809-4-C/results/970090073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:06","STORET",7,NA,2022-08-09 17:50:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.306,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929201-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090092",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929201-0913-4-C/results/970090092/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:07","STORET",7,NA,2022-09-13 18:00:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929201-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929201","WEBER R AB WEBER/PROVO DIVERSION Replicate of 4929200",NA,NA,NA,NA,"40.7307800000","-111.2549100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090099",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929201-0913-4-C/results/970090099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:07","STORET",7,NA,2022-09-13 18:00:00,NA,"River/Stream","Replicate of 4929200","16020101",NA,NA,NA,NA,"40.7307800000","-111.2549100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",40.73078,-111.25491,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929394-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929394","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing",NA,NA,NA,NA,"40.7908800000","-110.9938500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090104",NA,"as N","Nitrogen","Total","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929394-0510-4-C/results/970090104/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:07","STORET",7,NA,2022-05-10 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7908800000","-110.9938500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",40.79088,-110.99385,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929394-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929394","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing",NA,NA,NA,NA,"40.7908800000","-110.9938500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090106",NA,"as N","Nitrogen","Dissolved","0.188","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929394-0510-4-C/results/970090106/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:07","STORET",7,NA,2022-05-10 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7908800000","-110.9938500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.188,"MG/L","Numeric","Pass","Uncensored",40.79088,-110.99385,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929394-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929394","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing",NA,NA,NA,NA,"40.7908800000","-110.9938500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090121",NA,"as N","Nitrogen","Dissolved","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929394-0614-4-C/results/970090121/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:08","STORET",7,NA,2022-06-14 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7908800000","-110.9938500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",40.79088,-110.99385,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929394-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929394","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing",NA,NA,NA,NA,"40.7908800000","-110.9938500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090123",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929394-0614-4-C/results/970090123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:08","STORET",7,NA,2022-06-14 20:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7908800000","-110.9938500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",40.79088,-110.99385,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929394-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929394","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing",NA,NA,NA,NA,"40.7908800000","-110.9938500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090153",NA,"as N","Nitrogen","Dissolved","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929394-0630-4-C/results/970090153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:09","STORET",7,NA,2022-06-30 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7908800000","-110.9938500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",40.79088,-110.99385,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929394-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929394","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing",NA,NA,NA,NA,"40.7908800000","-110.9938500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090158",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929394-0630-4-C/results/970090158/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:09","STORET",7,NA,2022-06-30 20:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7908800000","-110.9938500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",40.79088,-110.99385,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4929394-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"16:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929394","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing",NA,NA,NA,NA,"40.7908800000","-110.9938500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090175",NA,"as N","Nitrogen","Total","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929394-0823-4-C/results/970090175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:10","STORET",7,NA,2022-08-23 23:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7908800000","-110.9938500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",40.79088,-110.99385,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4929394-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"16:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929394","Dry Fork above conflluence with Weber River at Weber Canyon Rd xing",NA,NA,NA,NA,"40.7908800000","-110.9938500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090186","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929394-0823-4-C/results/970090186/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:11","STORET",7,NA,2022-08-23 23:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7908800000","-110.9938500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.79088,-110.99385,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929397-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090197",NA,"as N","Nitrogen","Total","0.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929397-0510-4-C/results/970090197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:11","STORET",7,NA,2022-05-10 21:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929397-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090199",NA,"as N","Nitrogen","Dissolved","0.345","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929397-0510-4-C/results/970090199/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:11","STORET",7,NA,2022-05-10 21:05:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.345,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929397-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090214",NA,"as N","Nitrogen","Total","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929397-0614-4-C/results/970090214/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:12","STORET",7,NA,2022-06-14 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929397-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090222",NA,"as N","Nitrogen","Dissolved","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929397-0614-4-C/results/970090222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:12","STORET",7,NA,2022-06-14 20:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929397-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090245",NA,"as N","Nitrogen","Total","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929397-0630-4-C/results/970090245/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:14","STORET",7,NA,2022-06-30 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929397-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090246",NA,"as N","Nitrogen","Dissolved","0.165","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929397-0630-4-C/results/970090246/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:14","STORET",7,NA,2022-06-30 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.165,"MG/L","Numeric","Pass","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929397-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090268",NA,"as N","Nitrogen","Dissolved","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929397-0719-4-C/results/970090268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:14","STORET",7,NA,2022-07-19 21:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929397-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090277",NA,"as N","Nitrogen","Total","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929397-0719-4-C/results/970090277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:15","STORET",7,NA,2022-07-19 21:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929397-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090286",NA,"as N","Nitrogen","Dissolved","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929397-0809-4-C/results/970090286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:15","STORET",7,NA,2022-08-09 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929397-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090289",NA,"as N","Nitrogen","Total","0.354","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929397-0809-4-C/results/970090289/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:16","STORET",7,NA,2022-08-09 19:15:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.354,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4929397-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090309",NA,"as N","Nitrogen","Dissolved","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929397-0823-4-C/results/970090309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:16","STORET",7,NA,2022-08-23 23:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4929397-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090312","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929397-0823-4-C/results/970090312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:17","STORET",7,NA,2022-08-23 23:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929397-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090334",NA,"as N","Nitrogen","Total","0.326","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929397-0913-4-C/results/970090334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:18","STORET",7,NA,2022-09-13 19:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.326,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929397-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090336",NA,"as N","Nitrogen","Dissolved","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929397-0913-4-C/results/970090336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:18","STORET",7,NA,2022-09-13 19:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4929397-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090358",NA,"as N","Nitrogen","Dissolved","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4929397-0929-4-C/results/970090358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:19","STORET",7,NA,2022-09-29 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4929397-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929397","Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7830000000","-110.9911400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090372",NA,"as N","Nitrogen","Total","0.163","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4929397-0929-4-C/results/970090372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:19","STORET",7,NA,2022-09-29 17:10:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7830000000","-110.9911400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.163,"MG/L","Numeric","Pass","Uncensored",40.783,-110.99114,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929403-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090385",NA,"as N","Nitrogen","Dissolved","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929403-0510-4-C/results/970090385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:20","STORET",7,NA,2022-05-10 21:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929403-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090386",NA,"as N","Nitrogen","Total","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929403-0510-4-C/results/970090386/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:20","STORET",7,NA,2022-05-10 21:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929403-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Drinking Water Systems;Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090414",NA,"as N","Nitrogen","Dissolved","0.469","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929403-0614-4-C/results/970090414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:21","STORET",7,NA,2022-06-14 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.469,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929403-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Drinking Water Systems;Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090415",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929403-0614-4-C/results/970090415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:21","STORET",7,NA,2022-06-14 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929403-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090423",NA,"as N","Nitrogen","Total","0.204","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929403-0630-4-C/results/970090423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:22","STORET",7,NA,2022-06-30 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.204,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929403-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090431",NA,"as N","Nitrogen","Dissolved","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929403-0630-4-C/results/970090431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:22","STORET",7,NA,2022-06-30 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929403-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"14:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090454",NA,"as N","Nitrogen","Total","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929403-0719-4-C/results/970090454/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:23","STORET",7,NA,2022-07-19 21:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929403-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"14:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090461",NA,"as N","Nitrogen","Dissolved","0.179","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929403-0719-4-C/results/970090461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:23","STORET",7,NA,2022-07-19 21:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.179,"MG/L","Numeric","Pass","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929403-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090493",NA,"as N","Nitrogen","Dissolved","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929403-0809-4-C/results/970090493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:23","STORET",7,NA,2022-08-09 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929403-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090494",NA,"as N","Nitrogen","Total","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929403-0809-4-C/results/970090494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:23","STORET",7,NA,2022-08-09 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4929403-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090506",NA,"as N","Nitrogen","Total","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929403-0823-4-C/results/970090506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:24","STORET",7,NA,2022-08-23 22:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220829-4929403-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090511",NA,"as N","Nitrogen","Dissolved","0.403","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220829-4929403-0823-4-C/results/970090511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:24","STORET",7,NA,2022-08-23 22:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.403,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929403-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090535",NA,"as N","Nitrogen","Dissolved","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929403-0913-4-C/results/970090535/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:25","STORET",7,NA,2022-09-13 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929403-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090542",NA,"as N","Nitrogen","Total","0.17","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929403-0913-4-C/results/970090542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:25","STORET",7,NA,2022-09-13 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.17,"MG/L","Numeric","Pass","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4929403-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090566",NA,"as N","Nitrogen","Total","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4929403-0929-4-C/results/970090566/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:26","STORET",7,NA,2022-09-29 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220926-4929403-0929-4-C","Sample-Routine","Water",NA,2022-09-29,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929403","Middle Fork Weber River at Weber Canyon Rd (Holiday Park) Xing",NA,NA,NA,NA,"40.7763400000","-110.9939600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090575",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220926-4929403-0929-4-C/results/970090575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:26","STORET",7,NA,2022-09-29 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7763400000","-110.9939600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",40.77634,-110.99396,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4929490-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090578",NA,"as N","Nitrogen","Total","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929490-0405-4-C/results/970090578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:27","STORET",7,NA,2022-04-05 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4929490-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090600",NA,"as N","Nitrogen","Dissolved","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929490-0405-4-C/results/970090600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:27","STORET",7,NA,2022-04-05 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929490-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090608",NA,"as N","Nitrogen","Dissolved","0.268","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929490-0510-4-C/results/970090608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:28","STORET",7,NA,2022-05-10 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.268,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929490-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090610",NA,"as N","Nitrogen","Total","0.307","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929490-0510-4-C/results/970090610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:28","STORET",7,NA,2022-05-10 19:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.307,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929490-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090634",NA,"as N","Nitrogen","Dissolved","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929490-0614-4-C/results/970090634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:28","STORET",7,NA,2022-06-14 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929490-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090637",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929490-0614-4-C/results/970090637/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:28","STORET",7,NA,2022-06-14 19:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929490-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090647",NA,"as N","Nitrogen","Dissolved","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929490-0630-4-C/results/970090647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:29","STORET",7,NA,2022-06-30 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220629-4929490-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090658",NA,"as N","Nitrogen","Total","0.27","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220629-4929490-0630-4-C/results/970090658/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:29","STORET",7,NA,2022-06-30 20:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.27,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929490-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090670","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929490-0719-4-C/results/970090670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:30","STORET",7,NA,2022-07-19 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929490-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090672",NA,"as N","Nitrogen","Dissolved","0.229","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929490-0719-4-C/results/970090672/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:30","STORET",7,NA,2022-07-19 20:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.229,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929490-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090679",NA,"as N","Nitrogen","Dissolved","0.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929490-0809-4-C/results/970090679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:30","STORET",7,NA,2022-08-09 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929490-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090697",NA,"as N","Nitrogen","Total","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929490-0809-4-C/results/970090697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:31","STORET",7,NA,2022-08-09 18:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929490-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090701",NA,"as N","Nitrogen","Dissolved","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929490-0913-4-C/results/970090701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:31","STORET",7,NA,2022-09-13 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929490-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929490","SMITH MOREHOUSE CK AB CNFL/ WEBER R",NA,NA,NA,NA,"40.7849500000","-111.1554600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090707",NA,"as N","Nitrogen","Total","0.183","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929490-0913-4-C/results/970090707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:31","STORET",7,NA,2022-09-13 18:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7849500000","-111.1554600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.183,"MG/L","Numeric","Pass","Uncensored",40.78495,-111.15546,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4929590-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090731",NA,"as N","Nitrogen","Total","0.276","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929590-0405-4-C/results/970090731/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:32","STORET",7,NA,2022-04-05 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.276,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220404-4929590-0405-4-C","Sample-Routine","Water",NA,2022-04-05,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090733",NA,"as N","Nitrogen","Dissolved","0.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220404-4929590-0405-4-C/results/970090733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:32","STORET",7,NA,2022-04-05 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929590-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090739",NA,"as N","Nitrogen","Dissolved","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929590-0510-4-C/results/970090739/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:33","STORET",7,NA,2022-05-10 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220509-4929590-0510-4-C","Sample-Routine","Water",NA,2022-05-10,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090743",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220509-4929590-0510-4-C/results/970090743/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:33","STORET",7,NA,2022-05-10 19:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929590-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090762",NA,"as N","Nitrogen","Total","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-28,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929590-0614-4-C/results/970090762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:33","STORET",7,NA,2022-06-14 19:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220613-4929590-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090772",NA,"as N","Nitrogen","Dissolved","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220613-4929590-0614-4-C/results/970090772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:33","STORET",7,NA,2022-06-14 19:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929590-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090774",NA,"as N","Nitrogen","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929590-0719-4-C/results/970090774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:34","STORET",7,NA,2022-07-19 20:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220711-4929590-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090779",NA,"as N","Nitrogen","Dissolved","0.172","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220711-4929590-0719-4-C/results/970090779/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:34","STORET",7,NA,2022-07-19 20:25:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.172,"MG/L","Numeric","Pass","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929590-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090792",NA,"as N","Nitrogen","Dissolved","0.655","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929590-0809-4-C/results/970090792/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:35","STORET",7,NA,2022-08-09 18:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.655,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220801-4929590-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090809",NA,"as N","Nitrogen","Total","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-18,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220801-4929590-0809-4-C/results/970090809/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:35","STORET",7,NA,2022-08-09 18:35:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929590-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090816","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929590-0913-4-C/results/970090816/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:35","STORET",7,NA,2022-09-13 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WRI220912-4929590-0913-4-C","Sample-Routine","Water",NA,2022-09-13,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4929590","WEBER R AB CNFL/ SMITH MOREHOUSE CK",NA,NA,NA,NA,"40.7874500000","-111.1335200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090818",NA,"as N","Nitrogen","Dissolved","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WRI220912-4929590-0913-4-C/results/970090818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:35","STORET",7,NA,2022-09-13 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7874500000","-111.1335200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",40.78745,-111.13352,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4930007-0602-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-02,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090824","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4930007-0602-4-C/results/970090824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:36","STORET",7,NA,2022-06-02 22:10:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4930007-0602-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-02,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090825","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4930007-0602-4-C/results/970090825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:36","STORET",7,NA,2022-06-02 22:10:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4930007-0713-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090853","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4930007-0713-4-C/results/970090853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:37","STORET",7,NA,2022-07-13 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4930007-0713-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-13,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090863","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4930007-0713-4-C/results/970090863/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:37","STORET",7,NA,2022-07-13 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4930007-0908-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-08,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090889",NA,"as N","Nitrogen","Dissolved","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Relative Percentage difference (RPD) criteria not within quality control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4930007-0908-4-C/results/970090889/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:38","STORET",7,NA,2022-09-08 20:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4930007-0908-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-08,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090908","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4930007-0908-4-C/results/970090908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:38","STORET",7,NA,2022-09-08 20:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4930007-0922-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-22,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090928","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4930007-0922-4-C/results/970090928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:39","STORET",7,NA,2022-09-22 21:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4930007-0922-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-22,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930007","Clean Lakes equipment blank Kemmerer",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090942","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4930007-0922-4-C/results/970090942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:39","STORET",7,NA,2022-09-22 21:30:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4930009-0602-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-02,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090949","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4930009-0602-4-C/results/970090949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:40","STORET",7,NA,2022-06-02 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4930009-0602-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-02,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090955","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4930009-0602-4-C/results/970090955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:40","STORET",7,NA,2022-06-02 22:00:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4930009-0713-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-13,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090963",NA,"as N","Nitrogen","Dissolved","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-26,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4930009-0713-4-C/results/970090963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:40","STORET",7,NA,2022-07-13 21:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4930009-0713-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-13,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090966","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4930009-0713-4-C/results/970090966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:40","STORET",7,NA,2022-07-13 21:45:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4930009-0908-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-08,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090972",NA,"as N","Nitrogen","Dissolved","0.763","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4930009-0908-4-C/results/970090972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:41","STORET",7,NA,2022-09-08 20:55:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.763,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-4930009-0908-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-08,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090978","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-4930009-0908-4-C/results/970090978/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:41","STORET",7,NA,2022-09-08 20:55:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4930009-0922-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-22,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090988","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4930009-0922-4-C/results/970090988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:42","STORET",7,NA,2022-09-22 21:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-4930009-0922-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-22,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4930009","Clean Lakes equipment blank Vertigrator",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970090991","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-4930009-0922-4-C/results/970090991/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:42","STORET",7,NA,2022-09-22 21:40:00,NA,"Lake","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4930010-0420-4-C","Sample-Routine","Water",NA,2022-04-20,"08:17:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091005",NA,"as N","Nitrogen","Dissolved","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4930010-0420-4-C/results/970091005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:43","STORET",7,NA,2022-04-20 15:17:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4930010-0420-4-C","Sample-Routine","Water",NA,2022-04-20,"08:17:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091019",NA,"as N","Nitrogen","Total","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4930010-0420-4-C/results/970091019/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:43","STORET",7,NA,2022-04-20 15:17:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4930010-0526-4-C","Sample-Routine","Water",NA,2022-05-26,"16:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091042",NA,"as N","Nitrogen","Dissolved","0.613","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4930010-0526-4-C/results/970091042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:44","STORET",7,NA,2022-05-26 23:40:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.613,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4930010-0526-4-C","Sample-Routine","Water",NA,2022-05-26,"16:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091056",NA,"as N","Nitrogen","Total","0.608","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4930010-0526-4-C/results/970091056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:44","STORET",7,NA,2022-05-26 23:40:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.608,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4930010-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091061",NA,"as N","Nitrogen","Dissolved","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4930010-0630-4-C/results/970091061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:45","STORET",7,NA,2022-06-30 18:30:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4930010-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091062",NA,"as N","Nitrogen","Total","0.246","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4930010-0630-4-C/results/970091062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:45","STORET",7,NA,2022-06-30 18:30:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.246,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4930010-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"08:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091102",NA,"as N","Nitrogen","Dissolved","0.398","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4930010-0727-4-C/results/970091102/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:46","STORET",7,NA,2022-07-27 15:20:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.398,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4930010-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"08:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091103",NA,"as N","Nitrogen","Total","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4930010-0727-4-C/results/970091103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:46","STORET",7,NA,2022-07-27 15:20:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4930010-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"15:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091128",NA,"as N","Nitrogen","Dissolved","0.713","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4930010-0818-4-C/results/970091128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:46","STORET",7,NA,2022-08-18 22:20:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.713,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4930010-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"15:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930010","GREEN R AB CNFL / COLORADO R",NA,NA,NA,NA,"38.1902600000","-109.8898400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091140",NA,"as N","Nitrogen","Total","0.679","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4930010-0818-4-C/results/970091140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:46","STORET",7,NA,2022-08-18 22:20:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.1902600000","-109.8898400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.679,"MG/L","Numeric","Not Reviewed","Uncensored",38.19026,-109.88984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4930017-0609-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-09,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4930017","EQUIPMENT BLANK-NFS Ashley",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091169","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4930017-0609-4-C/results/970091169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:47","STORET",7,NA,2022-06-09 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4930017-0609-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-09,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4930017","EQUIPMENT BLANK-NFS Ashley",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091175","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4930017-0609-4-C/results/970091175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:47","STORET",7,NA,2022-06-09 22:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4930017-0818-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-18,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4930017","EQUIPMENT BLANK-NFS Ashley",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091186","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4930017-0818-4-C/results/970091186/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:48","STORET",7,NA,2022-08-18 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4930017-0818-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-18,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4930017","EQUIPMENT BLANK-NFS Ashley",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091198","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4930017-0818-4-C/results/970091198/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:48","STORET",7,NA,2022-08-18 21:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4930150-0422-4-C","Sample-Routine","Water",NA,2022-04-22,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091210",NA,"as N","Nitrogen","Total","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4930150-0422-4-C/results/970091210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:49","STORET",7,NA,2022-04-22 19:10:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4930150-0422-4-C","Sample-Routine","Water",NA,2022-04-22,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091239",NA,"as N","Nitrogen","Dissolved","0.425","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4930150-0422-4-C/results/970091239/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:49","STORET",7,NA,2022-04-22 19:10:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.425,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4930150-0530-4-C","Sample-Routine","Water",NA,2022-05-30,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091265",NA,"as N","Nitrogen","Dissolved","0.524","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4930150-0530-4-C/results/970091265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:50","STORET",7,NA,2022-05-30 18:25:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.524,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4930150-0530-4-C","Sample-Routine","Water",NA,2022-05-30,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091274",NA,"as N","Nitrogen","Total","0.353","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4930150-0530-4-C/results/970091274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:50","STORET",7,NA,2022-05-30 18:25:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.353,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4930150-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091293",NA,"as N","Nitrogen","Dissolved","0.263","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4930150-0630-4-C/results/970091293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:51","STORET",7,NA,2022-06-30 17:10:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.263,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4930150-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091300",NA,"as N","Nitrogen","Total","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4930150-0630-4-C/results/970091300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:51","STORET",7,NA,2022-06-30 17:10:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4930150-0816-4-C","Sample-Routine","Water",NA,2022-08-16,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091314",NA,"as N","Nitrogen","Total","0.505","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4930150-0816-4-C/results/970091314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:51","STORET",7,NA,2022-08-16 16:20:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.505,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4930150-0816-4-C","Sample-Routine","Water",NA,2022-08-16,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4930150","GREEN R AT MINERAL BOTTOMS",NA,NA,NA,NA,"38.5266400000","-109.9934600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091326",NA,"as N","Nitrogen","Dissolved","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4930150-0816-4-C/results/970091326/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:52","STORET",7,NA,2022-08-16 16:20:00,NA,"River/Stream",NA,"14060008",NA,NA,NA,NA,"38.5266400000","-109.9934600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",38.52664,-109.99346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4932910-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4932910","MUD CREEK AB SCOFIELD RES",NA,NA,NA,NA,"39.7271800000","-111.1610100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091341",NA,"as N","Nitrogen","Total","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4932910-0712-4-C/results/970091341/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:52","STORET",7,NA,2022-07-12 20:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",39.72718,-111.16101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-4932910-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4932910","MUD CREEK AB SCOFIELD RES",NA,NA,NA,NA,"39.7271800000","-111.1610100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091368",NA,"as N","Nitrogen","Dissolved","0.453","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-4932910-0712-4-C/results/970091368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:52","STORET",7,NA,2022-07-12 20:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7271800000","-111.1610100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.453,"MG/L","Numeric","Not Reviewed","Uncensored",39.72718,-111.16101,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4935450-0608-4-C","Sample-Routine","Water",NA,2022-06-08,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935450","ROCK CREEK @ USFS BNDRY",NA,NA,NA,NA,"40.5040300000","-110.5811100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091376",NA,"as N","Nitrogen","Dissolved","0.333","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935450-0608-4-C/results/970091376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:53","STORET",7,NA,2022-06-08 22:30:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5040300000","-110.5811100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.333,"MG/L","Numeric","Not Reviewed","Uncensored",40.50403,-110.58111,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4935450-0608-4-C","Sample-Routine","Water",NA,2022-06-08,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935450","ROCK CREEK @ USFS BNDRY",NA,NA,NA,NA,"40.5040300000","-110.5811100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091385",NA,"as N","Nitrogen","Total","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935450-0608-4-C/results/970091385/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:53","STORET",7,NA,2022-06-08 22:30:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5040300000","-110.5811100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",40.50403,-110.58111,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4935450-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935450","ROCK CREEK @ USFS BNDRY",NA,NA,NA,NA,"40.5040300000","-110.5811100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091402",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935450-0818-4-C/results/970091402/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:54","STORET",7,NA,2022-08-18 18:30:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5040300000","-110.5811100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",40.50403,-110.58111,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4935450-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935450","ROCK CREEK @ USFS BNDRY",NA,NA,NA,NA,"40.5040300000","-110.5811100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091403",NA,"as N","Nitrogen","Dissolved","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935450-0818-4-C/results/970091403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:54","STORET",7,NA,2022-08-18 18:30:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5040300000","-110.5811100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",40.50403,-110.58111,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4935860-0608-4-C","Sample-Routine","Water",NA,2022-06-08,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935860","Lake Fork River at Fisher Ranch",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091429",NA,"as N","Nitrogen","Dissolved","0.287","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935860-0608-4-C/results/970091429/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:54","STORET",7,NA,2022-06-08 21:00:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.287,"MG/L","Numeric","Not Reviewed","Uncensored",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4935860-0608-4-C","Sample-Routine","Water",NA,2022-06-08,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935860","Lake Fork River at Fisher Ranch",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091430",NA,"as N","Nitrogen","Total","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935860-0608-4-C/results/970091430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:54","STORET",7,NA,2022-06-08 21:00:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4935860-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935860","Lake Fork River at Fisher Ranch",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091452",NA,"as N","Nitrogen","Dissolved","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935860-0817-4-C/results/970091452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:55","STORET",7,NA,2022-08-17 21:00:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4935860-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935860","Lake Fork River at Fisher Ranch",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091458",NA,"as N","Nitrogen","Total","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935860-0817-4-C/results/970091458/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:55","STORET",7,NA,2022-08-17 21:00:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4935861-0608-4-C","Sample-Routine","Water",NA,2022-06-08,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935861","Lake Fork River at Fisher Ranch Replicate of 4935860",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091478",NA,"as N","Nitrogen","Dissolved","0.311","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935861-0608-4-C/results/970091478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:56","STORET",7,NA,2022-06-08 21:05:00,NA,"River/Stream","Replicate of 4935860","14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.311,"MG/L","Numeric","Not Reviewed","Uncensored",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4935861-0608-4-C","Sample-Routine","Water",NA,2022-06-08,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935861","Lake Fork River at Fisher Ranch Replicate of 4935860",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091488",NA,"as N","Nitrogen","Total","0.297","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935861-0608-4-C/results/970091488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:56","STORET",7,NA,2022-06-08 21:05:00,NA,"River/Stream","Replicate of 4935860","14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.297,"MG/L","Numeric","Not Reviewed","Uncensored",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4935861-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935861","Lake Fork River at Fisher Ranch Replicate of 4935860",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091498",NA,"as N","Nitrogen","Dissolved","0.329","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935861-0817-4-C/results/970091498/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:57","STORET",7,NA,2022-08-17 21:05:00,NA,"River/Stream","Replicate of 4935860","14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.329,"MG/L","Numeric","Not Reviewed","Uncensored",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4935861-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935861","Lake Fork River at Fisher Ranch Replicate of 4935860",NA,NA,NA,NA,"40.5306800000","-110.4535000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091518",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935861-0817-4-C/results/970091518/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:57","STORET",7,NA,2022-08-17 21:05:00,NA,"River/Stream","Replicate of 4935860","14060003",NA,NA,NA,NA,"40.5306800000","-110.4535000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",40.53068,-110.4535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4935970-0608-4-C","Sample-Routine","Water",NA,2022-06-08,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935970","LAKE FK R AB MOON LAKE",NA,NA,NA,NA,"40.6032800000","-110.5201600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091527",NA,"as N","Nitrogen","Total","0.227","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935970-0608-4-C/results/970091527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:58","STORET",7,NA,2022-06-08 18:55:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.6032800000","-110.5201600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.227,"MG/L","Numeric","Not Reviewed","Uncensored",40.60328,-110.52016,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220608-4935970-0608-4-C","Sample-Routine","Water",NA,2022-06-08,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935970","LAKE FK R AB MOON LAKE",NA,NA,NA,NA,"40.6032800000","-110.5201600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091538",NA,"as N","Nitrogen","Dissolved","0.226","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220608-4935970-0608-4-C/results/970091538/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:58","STORET",7,NA,2022-06-08 18:55:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.6032800000","-110.5201600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.226,"MG/L","Numeric","Not Reviewed","Uncensored",40.60328,-110.52016,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4935970-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935970","LAKE FK R AB MOON LAKE",NA,NA,NA,NA,"40.6032800000","-110.5201600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091547",NA,"as N","Nitrogen","Total","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935970-0817-4-C/results/970091547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:58","STORET",7,NA,2022-08-17 17:50:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.6032800000","-110.5201600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.60328,-110.52016,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFSASHLEY220817-4935970-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-4935970","LAKE FK R AB MOON LAKE",NA,NA,NA,NA,"40.6032800000","-110.5201600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091549",NA,"as N","Nitrogen","Dissolved","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFSASHLEY220817-4935970-0817-4-C/results/970091549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:58","STORET",7,NA,2022-08-17 17:50:00,NA,"River/Stream",NA,"14060003",NA,NA,NA,NA,"40.6032800000","-110.5201600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",13,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",40.60328,-110.52016,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937130-0602-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-02,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091576",NA,"as N","Nitrogen","Total","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937130-0602-2-C/results/970091576/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:59","STORET",7,NA,2022-06-02 15:40:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937130-0602-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-02,"08:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091577",NA,"as N","Nitrogen","Dissolved","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937130-0602-2-C/results/970091577/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:27:59","STORET",7,NA,2022-06-02 15:40:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937130-0602-29-C","Sample-Routine","Water",NA,2022-06-02,"09:10:00","MST",NA,NA,NA,"Bottom","3.39","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937130","PELICAN LAKE 01 W MIDLAKE",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091583",NA,"as N","Nitrogen","Total","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937130-0602-29-C/results/970091583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:00","STORET",7,NA,2022-06-02 16:10:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.39,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937140-0602-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-02,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091591",NA,"as N","Nitrogen","Dissolved","0.394","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937140-0602-2-C/results/970091591/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:00","STORET",7,NA,2022-06-02 16:30:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.394,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937140-0602-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-02,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091594",NA,"as N","Nitrogen","Total","0.365","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937140-0602-2-C/results/970091594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:00","STORET",7,NA,2022-06-02 16:30:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.365,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937140-0602-29-C","Sample-Routine","Water",NA,2022-06-02,"09:40:00","MST",NA,NA,NA,"Bottom","3.17","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091600",NA,"as N","Nitrogen","Dissolved","0.359","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937140-0602-29-C/results/970091600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:01","STORET",7,NA,2022-06-02 16:40:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.359,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937140-0602-29-C","Sample-Routine","Water",NA,2022-06-02,"09:40:00","MST",NA,NA,NA,"Bottom","3.17","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937140","PELICAN LAKE 02 E MIDLAKE",NA,NA,NA,NA,"40.1924600000","-109.6715200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091604",NA,"as N","Nitrogen","Total","0.339","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937140-0602-29-C/results/970091604/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:01","STORET",7,NA,2022-06-02 16:40:00,NA,"Lake",NA,"14060001",NA,NA,NA,NA,"40.1924600000","-109.6715200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.339,"MG/L","Numeric","Not Reviewed","Uncensored",40.19246,-109.67152,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937180-0602-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-02,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091607",NA,"as N","Nitrogen","Total","0.496","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937180-0602-2-C/results/970091607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:01","STORET",7,NA,2022-06-02 15:50:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.496,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-4937180-0602-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-02,"08:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4937180","PELICAN LAKE 01 W MIDLAKE Replicate of 4937130",NA,NA,NA,NA,"40.1908000000","-109.6890300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091614",NA,"as N","Nitrogen","Dissolved","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-4937180-0602-2-C/results/970091614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:01","STORET",7,NA,2022-06-02 15:50:00,NA,"Lake","Replicate of 4937130","14060001",NA,NA,NA,NA,"40.1908000000","-109.6890300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",40.1908,-109.68903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946000-0503-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-03,"10:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946000","San Pitch River NPS QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091622","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946000-0503-4-C/results/970091622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:02","STORET",7,NA,2022-05-03 17:35:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946450-0503-4-C","Sample-Routine","Water",NA,2022-05-03,"12:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946450","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING",NA,NA,NA,NA,"39.2787100000","-111.6782500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091628",NA,"as N","Nitrogen","Total","1.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946450-0503-4-C/results/970091628/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:03","STORET",7,NA,2022-05-03 19:35:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.9,"MG/L","Numeric","Not Reviewed","Uncensored",39.27871,-111.67825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946650-0503-4-C","Sample-Routine","Water",NA,2022-05-03,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946650","SAN PITCH R 1MI W OF CHESTER ON U-117",NA,NA,NA,NA,"39.4756600000","-111.5991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091661",NA,"as N","Nitrogen","Total","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946650-0503-4-C/results/970091661/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:04","STORET",7,NA,2022-05-03 19:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",39.47566,-111.59911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946750-0503-4-C","Sample-Routine","Water",NA,2022-05-03,"11:23:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946750","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091697",NA,"as N","Nitrogen","Total","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946750-0503-4-C/results/970091697/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:06","STORET",7,NA,2022-05-03 18:23:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946751-0503-4-C","Sample-Routine","Water",NA,2022-05-03,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946751","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING Replicate of 4946750",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091728",NA,"as N","Nitrogen","Total","0.484","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946751-0503-4-C/results/970091728/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:07","STORET",7,NA,2022-05-03 18:25:00,NA,"River/Stream","Replicate of 4946750","16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.484,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946756-0503-4-C","Sample-Routine","Water",NA,2022-05-03,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946756","San Pitch R Bl Fairview WWTP",NA,NA,NA,NA,"39.5747900000","-111.4703900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091733",NA,"as N","Nitrogen","Total","0.861","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946756-0503-4-C/results/970091733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:08","STORET",7,NA,2022-05-03 18:05:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.861,"MG/L","Numeric","Not Reviewed","Uncensored",39.57479,-111.47039,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946790-0503-4-C","Sample-Routine","Water",NA,2022-05-03,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946790","SAN PITCH R @ US 89 XING N OF FAIRVIEW",NA,NA,NA,NA,"39.6382900000","-111.4465800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091771",NA,"as N","Nitrogen","Total","0.94","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946790-0503-4-C/results/970091771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:09","STORET",7,NA,2022-05-03 17:35:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6382900000","-111.4465800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.94,"MG/L","Numeric","Not Reviewed","Uncensored",39.63829,-111.44658,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946840-0503-4-C","Sample-Routine","Water",NA,2022-05-03,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946840","San Pitch R ab Fairview WWTP @ Restoration Project",NA,NA,NA,NA,"39.6086000000","-111.4483200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091776",NA,"as N","Nitrogen","Total","0.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946840-0503-4-C/results/970091776/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:10","STORET",7,NA,2022-05-03 17:40:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.84,"MG/L","Numeric","Not Reviewed","Uncensored",39.6086,-111.44832,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946960-0503-4-C","Sample-Routine","Water",NA,2022-05-03,"11:38:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946960","SAN PITCH R AB MORONI WWTP",NA,NA,NA,NA,"39.5147000000","-111.5862800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091809",NA,"as N","Nitrogen","Total","0.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946960-0503-4-C/results/970091809/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:12","STORET",7,NA,2022-05-03 18:38:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.92,"MG/L","Numeric","Not Reviewed","Uncensored",39.5147,-111.58628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANPITCHNPS220502-4946980-0503-4-C","Sample-Routine","Water",NA,2022-05-03,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4946980","SAN PITCH R AT BRIDGE BL MORONI WWTP",NA,NA,NA,NA,"39.5010700000","-111.5854800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091843",NA,"as N","Nitrogen","Total","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANPITCHNPS220502-4946980-0503-4-C/results/970091843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:14","STORET",7,NA,2022-05-03 18:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",39.50107,-111.58548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS220502-4948868-0502-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-02,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948868","EQUIPMENT BLANK-Otter Creek Nonpoint Source QA/QC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091876","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4948868-0502-4-C/results/970091876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:15","STORET",7,NA,2022-05-02 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS220502-4948870-0502-4-C","Sample-Routine","Water",NA,2022-05-02,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948870","OTTER CK AB DIVERSION 1MI N OF ANGLE",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091885",NA,"as N","Nitrogen","Total","0.657","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4948870-0502-4-C/results/970091885/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:16","STORET",7,NA,2022-05-02 21:05:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.657,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS220502-4948930-0502-4-C","Sample-Routine","Water",NA,2022-05-02,"14:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948930","OTTER CK AT CR XING 2MI S E OF GREENWICH",NA,NA,NA,NA,"38.4160900000","-111.9029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091922",NA,"as N","Nitrogen","Total","0.859","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4948930-0502-4-C/results/970091922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:18","STORET",7,NA,2022-05-02 21:55:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.4160900000","-111.9029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.859,"MG/L","Numeric","Not Reviewed","Uncensored",38.41609,-111.90297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS220502-4948940-0502-4-C","Sample-Routine","Water",NA,2022-05-02,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4948940","OTTER CREEK AT THE NARROWS",NA,NA,NA,NA,"38.3520900000","-111.9464200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091956",NA,"as N","Nitrogen","Total","0.256","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4948940-0502-4-C/results/970091956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:20","STORET",7,NA,2022-05-02 21:35:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.256,"MG/L","Numeric","Not Reviewed","Uncensored",38.35209,-111.94642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS220502-4949040-0502-4-C","Sample-Routine","Water",NA,2022-05-02,"15:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949040","OTTER CK AT CR XING NE OF KOOSHAREM",NA,NA,NA,NA,"38.5202600000","-111.8638000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970091990",NA,"as N","Nitrogen","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4949040-0502-4-C/results/970091990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:22","STORET",7,NA,2022-05-02 22:20:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5202600000","-111.8638000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",38.52026,-111.8638,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS220502-4949070-0502-4-C","Sample-Routine","Water",NA,2022-05-02,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949070","OTTER CK AT U62 XING N OF KOOSHAREM",NA,NA,NA,NA,"38.5641400000","-111.8493600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092023",NA,"as N","Nitrogen","Total","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4949070-0502-4-C/results/970092023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:24","STORET",7,NA,2022-05-02 22:30:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5641400000","-111.8493600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",38.56414,-111.84936,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSEVNPS220504-4949630-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949630","SEVIER R AT U12 XING",NA,NA,NA,NA,"37.7494200000","-112.3749200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092057",NA,"as N","Nitrogen","Total","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949630-0504-4-C/results/970092057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:26","STORET",7,NA,2022-05-04 18:10:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7494200000","-112.3749200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",37.74942,-112.37492,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSEVNPS220504-4949640-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949640","SEVIER R @ SANFORD ROAD XING",NA,NA,NA,NA,"37.9419200000","-112.4166000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092091",NA,"as N","Nitrogen","Total","0.473","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949640-0504-4-C/results/970092091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:28","STORET",7,NA,2022-05-04 18:55:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.9419200000","-112.4166000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.473,"MG/L","Numeric","Not Reviewed","Uncensored",37.94192,-112.4166,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSEVNPS220504-4949650-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949650","SEVIER R NEAR HATCH",NA,NA,NA,NA,"37.6515000000","-112.4304300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092128",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949650-0504-4-C/results/970092128/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:29","STORET",7,NA,2022-05-04 17:50:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6515000000","-112.4304300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",37.6515,-112.43043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSEVNPS220504-4949670-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949670","SEVIER R @ PANGUITCH AIRPORT RD XING",NA,NA,NA,NA,"37.8516400000","-112.4360400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092161",NA,"as N","Nitrogen","Total","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949670-0504-4-C/results/970092161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:30","STORET",7,NA,2022-05-04 19:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8516400000","-112.4360400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",37.85164,-112.43604,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSEVNPS220504-4949700-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949700","MAMMOTH CK AT US89 XING",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092168",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949700-0504-4-C/results/970092168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:31","STORET",7,NA,2022-05-04 17:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSEVNPS220504-4949702-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949702","MAMMOTH CK AT US89 XING Replicate of 4949700",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092200",NA,"as N","Nitrogen","Total","0.336","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949702-0504-4-C/results/970092200/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:32","STORET",7,NA,2022-05-04 17:30:00,NA,"River/Stream","Replicate of 4949700","16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.336,"MG/L","Numeric","Not Reviewed","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSEVNPS220504-4949710-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949710","Sevier R bl USU Farm @ Sandwash Rd Xing",NA,NA,NA,NA,"37.8762300000","-112.4277600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092208",NA,"as N","Nitrogen","Total","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949710-0504-4-C/results/970092208/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:33","STORET",7,NA,2022-05-04 18:40:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8762300000","-112.4277600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",37.87623,-112.42776,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSEVNPS220504-4949718-0504-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-04,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949718","Upper Sevier Watershed Nonpoint Source Monitoring Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092243",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949718-0504-4-C/results/970092243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:34","STORET",7,NA,2022-05-04 18:40:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UPRSEVNPS220504-4949900-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949900","ASAY CK AT US89 XING",NA,NA,NA,NA,"37.5841500000","-112.4766000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092249","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UPRSEVNPS220504-4949900-0504-4-C/results/970092249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:35","STORET",7,NA,2022-05-04 17:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.5841500000","-112.4766000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.58415,-112.4766,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-OTTERCKNPS220502-4949950-0502-4-C","Sample-Routine","Water",NA,2022-05-02,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4949950","OTTER CK AB DIVERSION 1MI N OF ANGLE Replicate of 4948870",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092282",NA,"as N","Nitrogen","Total","0.735","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-OTTERCKNPS220502-4949950-0502-4-C/results/970092282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:37","STORET",7,NA,2022-05-02 21:05:00,NA,"River/Stream","Replicate of 4948870","16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.735,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950003-0620-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-20,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950003","Trip Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092290","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950003-0620-4-C/results/970092290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:37","STORET",7,NA,2022-06-20 22:10:00,NA,"River/Stream","Trip Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950020-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950020","VIRGIN R BL FIRST NARROWS & New St George WWTP",NA,NA,NA,NA,"37.0201200000","-113.6727200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092296",NA,"as N","Nitrogen","Total","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950020-0619-4-C/results/970092296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:38","STORET",7,NA,2022-06-19 19:20:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0201200000","-113.6727200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",37.02012,-113.67272,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950020-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"12:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950020","VIRGIN R BL FIRST NARROWS & New St George WWTP",NA,NA,NA,NA,"37.0201200000","-113.6727200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092332",NA,"as N","Nitrogen","Dissolved","0.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950020-0619-4-C/results/970092332/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:39","STORET",7,NA,2022-06-19 19:20:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0201200000","-113.6727200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.79,"MG/L","Numeric","Not Reviewed","Uncensored",37.02012,-113.67272,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950020-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950020","VIRGIN R BL FIRST NARROWS & New St George WWTP",NA,NA,NA,NA,"37.0201200000","-113.6727200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092362",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950020-0620-4-C/results/970092362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:40","STORET",7,NA,2022-06-20 17:00:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0201200000","-113.6727200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",37.02012,-113.67272,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950020-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950020","VIRGIN R BL FIRST NARROWS & New St George WWTP",NA,NA,NA,NA,"37.0201200000","-113.6727200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092384",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950020-0620-4-C/results/970092384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:41","STORET",7,NA,2022-06-20 17:00:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0201200000","-113.6727200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",37.02012,-113.67272,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950046-0617-4-C","Sample-Routine","Water",NA,2022-06-17,"11:00:00","MST",NA,NA,NA,"Surface","#N/A","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950046","Virgin River 1000 ft BL St. George WWTP","No field data available for this sampling event.",NA,NA,NA,"37.0355100000","-113.6317700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092425",NA,"as N","Nitrogen","Dissolved","1.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"No field data were available for this sample",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950046-0617-4-C/results/970092425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:43","STORET",7,NA,2022-06-17 18:00:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0355100000","-113.6317700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.43,"MG/L","Numeric","Not Reviewed","Uncensored",37.03551,-113.63177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,"m","Text",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950046-0617-4-C","Sample-Routine","Water",NA,2022-06-17,"11:00:00","MST",NA,NA,NA,"Surface","#N/A","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950046","Virgin River 1000 ft BL St. George WWTP","No field data available for this sampling event.",NA,NA,NA,"37.0355100000","-113.6317700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092445",NA,"as N","Nitrogen","Total","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"No field data were available for this sample",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950046-0617-4-C/results/970092445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:43","STORET",7,NA,2022-06-17 18:00:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0355100000","-113.6317700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",37.03551,-113.63177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,"m","Text",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950046-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"13:50:00","MST",NA,NA,NA,"Surface","#N/A","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950046","Virgin River 1000 ft BL St. George WWTP","No field data available for this sampling event.",NA,NA,NA,"37.0355100000","-113.6317700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092484",NA,"as N","Nitrogen","Dissolved","2.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"No field data were available for this sample",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950046-0621-4-C/results/970092484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:45","STORET",7,NA,2022-06-21 20:50:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0355100000","-113.6317700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.5,"MG/L","Numeric","Not Reviewed","Uncensored",37.03551,-113.63177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,"m","Text",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950046-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"13:50:00","MST",NA,NA,NA,"Surface","#N/A","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950046","Virgin River 1000 ft BL St. George WWTP","No field data available for this sampling event.",NA,NA,NA,"37.0355100000","-113.6317700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092495",NA,"as N","Nitrogen","Total","2.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"No field data were available for this sample",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950046-0621-4-C/results/970092495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:45","STORET",7,NA,2022-06-21 20:50:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0355100000","-113.6317700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.51,"MG/L","Numeric","Not Reviewed","Uncensored",37.03551,-113.63177,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,"m","Text",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950048-0617-4-C","Sample-Routine","Water",NA,2022-06-17,"10:00:00","MST",NA,NA,NA,"Surface","#N/A","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950048","Virgin River 500 ft AB St. George WWTP","No field data available for this sampling event.",NA,NA,NA,"37.0383200000","-113.6283000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092515",NA,"as N","Nitrogen","Total","0.691","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"No field data were available for this sample",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950048-0617-4-C/results/970092515/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:46","STORET",7,NA,2022-06-17 17:00:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0383200000","-113.6283000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.691,"MG/L","Numeric","Not Reviewed","Uncensored",37.03832,-113.6283,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,"m","Text",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950048-0617-4-C","Sample-Routine","Water",NA,2022-06-17,"10:00:00","MST",NA,NA,NA,"Surface","#N/A","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950048","Virgin River 500 ft AB St. George WWTP","No field data available for this sampling event.",NA,NA,NA,"37.0383200000","-113.6283000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092527",NA,"as N","Nitrogen","Dissolved","0.664","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"No field data were available for this sample",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950048-0617-4-C/results/970092527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:46","STORET",7,NA,2022-06-17 17:00:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0383200000","-113.6283000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.664,"MG/L","Numeric","Not Reviewed","Uncensored",37.03832,-113.6283,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,"m","Text",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950048-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"13:40:00","MST",NA,NA,NA,"Surface","#N/A","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950048","Virgin River 500 ft AB St. George WWTP","No field data available for this sampling event.",NA,NA,NA,"37.0383200000","-113.6283000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092554",NA,"as N","Nitrogen","Total","0.882","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"No field data were available for this sample",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950048-0621-4-C/results/970092554/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:47","STORET",7,NA,2022-06-21 20:40:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0383200000","-113.6283000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.882,"MG/L","Numeric","Not Reviewed","Uncensored",37.03832,-113.6283,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,"m","Text",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950048-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"13:40:00","MST",NA,NA,NA,"Surface","#N/A","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950048","Virgin River 500 ft AB St. George WWTP","No field data available for this sampling event.",NA,NA,NA,"37.0383200000","-113.6283000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092593",NA,"as N","Nitrogen","Dissolved","0.942","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"No field data were available for this sample",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950048-0621-4-C/results/970092593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:48","STORET",7,NA,2022-06-21 20:40:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0383200000","-113.6283000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.942,"MG/L","Numeric","Not Reviewed","Uncensored",37.03832,-113.6283,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,"m","Text",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0614-4/1-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"19:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092615","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0614-4%2F1-C/results/970092615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:48","STORET",7,NA,2022-06-15 02:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0614-4/1-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"19:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092631","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0614-4%2F1-C/results/970092631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:48","STORET",7,NA,2022-06-15 02:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092665","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0614-4-C/results/970092665/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:49","STORET",7,NA,2022-06-14 15:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"08:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092700","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0614-4-C/results/970092700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:50","STORET",7,NA,2022-06-14 15:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-15,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092725",NA,"as N","Nitrogen","Dissolved","0.273","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0615-4-C/results/970092725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:51","STORET",7,NA,2022-06-16 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.273,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0615-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-15,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092754","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0615-4-C/results/970092754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:51","STORET",7,NA,2022-06-16 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0616-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092770","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0616-4-C/results/970092770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:51","STORET",7,NA,2022-06-16 21:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0616-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092785","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0616-4-C/results/970092785/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:51","STORET",7,NA,2022-06-16 21:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0619-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-19,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092823","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0619-4-C/results/970092823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:52","STORET",7,NA,2022-06-19 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0619-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-19,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092839","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0619-4-C/results/970092839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:52","STORET",7,NA,2022-06-19 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950053-0620-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-20,"15:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950053","Equipment Blank-Colorado Basin Intensive Crew #3",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092873","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950053-0620-4-C/results/970092873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:53","STORET",7,NA,2022-06-20 22:10:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950060-0617-4-C","Sample-Routine","Water",NA,2022-06-17,"09:24:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950060","St. George WWTP new plant",NA,NA,NA,NA,"37.0386000000","-113.6299800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092915",NA,"as N","Nitrogen","Dissolved","4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950060-0617-4-C/results/970092915/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:54","STORET",7,NA,2022-06-17 16:24:00,NA,"Facility Other",NA,"15010010",NA,NA,NA,NA,"37.0386000000","-113.6299800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4,"MG/L","Numeric","Not Reviewed","Uncensored",37.0386,-113.62998,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950060-0617-4-C","Sample-Routine","Water",NA,2022-06-17,"09:24:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950060","St. George WWTP new plant",NA,NA,NA,NA,"37.0386000000","-113.6299800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970092955",NA,"as N","Nitrogen","Total","4.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950060-0617-4-C/results/970092955/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:54","STORET",7,NA,2022-06-17 16:24:00,NA,"Facility Other",NA,"15010010",NA,NA,NA,NA,"37.0386000000","-113.6299800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.41,"MG/L","Numeric","Not Reviewed","Uncensored",37.0386,-113.62998,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950060-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950060","St. George WWTP new plant",NA,NA,NA,NA,"37.0386000000","-113.6299800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093001",NA,"as N","Nitrogen","Dissolved","3.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950060-0621-4-C/results/970093001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:55","STORET",7,NA,2022-06-21 20:30:00,NA,"Facility Other",NA,"15010010",NA,NA,NA,NA,"37.0386000000","-113.6299800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.86,"MG/L","Numeric","Not Reviewed","Uncensored",37.0386,-113.62998,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950060-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950060","St. George WWTP new plant",NA,NA,NA,NA,"37.0386000000","-113.6299800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093002",NA,"as N","Nitrogen","Total","4.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950060-0621-4-C/results/970093002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:55","STORET",7,NA,2022-06-21 20:30:00,NA,"Facility Other",NA,"15010010",NA,NA,NA,NA,"37.0386000000","-113.6299800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.4,"MG/L","Numeric","Not Reviewed","Uncensored",37.0386,-113.62998,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950090-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950090","SANTA CLARA R AB VIRGIN RIVER",NA,NA,NA,NA,"37.0737600000","-113.5836200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093035",NA,"as N","Nitrogen","Dissolved","1.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950090-0619-4-C/results/970093035/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:56","STORET",7,NA,2022-06-19 17:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0737600000","-113.5836200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.88,"MG/L","Numeric","Not Reviewed","Uncensored",37.07376,-113.58362,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950090-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950090","SANTA CLARA R AB VIRGIN RIVER",NA,NA,NA,NA,"37.0737600000","-113.5836200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093048",NA,"as N","Nitrogen","Total","2.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950090-0619-4-C/results/970093048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:56","STORET",7,NA,2022-06-19 17:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0737600000","-113.5836200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.07,"MG/L","Numeric","Not Reviewed","Uncensored",37.07376,-113.58362,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950090-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950090","SANTA CLARA R AB VIRGIN RIVER",NA,NA,NA,NA,"37.0737600000","-113.5836200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093070",NA,"as N","Nitrogen","Total","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950090-0620-4-C/results/970093070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:57","STORET",7,NA,2022-06-20 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0737600000","-113.5836200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",37.07376,-113.58362,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950090-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950090","SANTA CLARA R AB VIRGIN RIVER",NA,NA,NA,NA,"37.0737600000","-113.5836200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093072",NA,"as N","Nitrogen","Dissolved","1.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950090-0620-4-C/results/970093072/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:57","STORET",7,NA,2022-06-20 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0737600000","-113.5836200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.72,"MG/L","Numeric","Not Reviewed","Uncensored",37.07376,-113.58362,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950120-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950120","VIRGIN R AT BLOOMINGTON XING ab St George WWTP",NA,NA,NA,NA,"37.0522000000","-113.6007900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093131",NA,"as N","Nitrogen","Dissolved","0.727","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950120-0619-4-C/results/970093131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:58","STORET",7,NA,2022-06-19 18:00:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0522000000","-113.6007900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.727,"MG/L","Numeric","Not Reviewed","Uncensored",37.0522,-113.60079,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950120-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950120","VIRGIN R AT BLOOMINGTON XING ab St George WWTP",NA,NA,NA,NA,"37.0522000000","-113.6007900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093140",NA,"as N","Nitrogen","Total","0.767","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950120-0619-4-C/results/970093140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:28:58","STORET",7,NA,2022-06-19 18:00:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0522000000","-113.6007900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.767,"MG/L","Numeric","Not Reviewed","Uncensored",37.0522,-113.60079,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950120-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950120","VIRGIN R AT BLOOMINGTON XING ab St George WWTP",NA,NA,NA,NA,"37.0522000000","-113.6007900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093175",NA,"as N","Nitrogen","Dissolved","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950120-0620-4-C/results/970093175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:00","STORET",7,NA,2022-06-20 18:15:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0522000000","-113.6007900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.869,"MG/L","Numeric","Not Reviewed","Uncensored",37.0522,-113.60079,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950120-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950120","VIRGIN R AT BLOOMINGTON XING ab St George WWTP",NA,NA,NA,NA,"37.0522000000","-113.6007900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093192",NA,"as N","Nitrogen","Total","0.936","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950120-0620-4-C/results/970093192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:00","STORET",7,NA,2022-06-20 18:15:00,NA,"River/Stream",NA,"15010010",NA,NA,NA,NA,"37.0522000000","-113.6007900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.936,"MG/L","Numeric","Not Reviewed","Uncensored",37.0522,-113.60079,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950132-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950132","Fort Pearce Wash AB confluence with Virgin River",NA,NA,NA,NA,"37.0775200000","-113.5719700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093226",NA,"as N","Nitrogen","Total","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950132-0619-4-C/results/970093226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:01","STORET",7,NA,2022-06-19 17:30:00,NA,"River/Stream",NA,"15010009",NA,NA,NA,NA,"37.0775200000","-113.5719700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",37.07752,-113.57197,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950132-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950132","Fort Pearce Wash AB confluence with Virgin River",NA,NA,NA,NA,"37.0775200000","-113.5719700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093241",NA,"as N","Nitrogen","Dissolved","1.85","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950132-0619-4-C/results/970093241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:01","STORET",7,NA,2022-06-19 17:30:00,NA,"River/Stream",NA,"15010009",NA,NA,NA,NA,"37.0775200000","-113.5719700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.85,"MG/L","Numeric","Not Reviewed","Uncensored",37.07752,-113.57197,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950132-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950132","Fort Pearce Wash AB confluence with Virgin River",NA,NA,NA,NA,"37.0775200000","-113.5719700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093285",NA,"as N","Nitrogen","Dissolved","0.932","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950132-0620-4-C/results/970093285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:03","STORET",7,NA,2022-06-20 19:00:00,NA,"River/Stream",NA,"15010009",NA,NA,NA,NA,"37.0775200000","-113.5719700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.932,"MG/L","Numeric","Not Reviewed","Uncensored",37.07752,-113.57197,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950132-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950132","Fort Pearce Wash AB confluence with Virgin River",NA,NA,NA,NA,"37.0775200000","-113.5719700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093292",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950132-0620-4-C/results/970093292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:03","STORET",7,NA,2022-06-20 19:00:00,NA,"River/Stream",NA,"15010009",NA,NA,NA,NA,"37.0775200000","-113.5719700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",37.07752,-113.57197,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950200-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950200","VIRGIN R SE OF ST GEORGE @ CR XING",NA,NA,NA,NA,"37.0863700000","-113.5566200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093334",NA,"as N","Nitrogen","Dissolved","0.935","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950200-0619-4-C/results/970093334/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:04","STORET",7,NA,2022-06-19 16:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0863700000","-113.5566200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.935,"MG/L","Numeric","Not Reviewed","Uncensored",37.08637,-113.55662,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950200-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950200","VIRGIN R SE OF ST GEORGE @ CR XING",NA,NA,NA,NA,"37.0863700000","-113.5566200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093365",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950200-0619-4-C/results/970093365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:04","STORET",7,NA,2022-06-19 16:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0863700000","-113.5566200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",37.08637,-113.55662,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950200-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950200","VIRGIN R SE OF ST GEORGE @ CR XING",NA,NA,NA,NA,"37.0863700000","-113.5566200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093404",NA,"as N","Nitrogen","Dissolved","0.639","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950200-0620-4-C/results/970093404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:05","STORET",7,NA,2022-06-20 20:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0863700000","-113.5566200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.639,"MG/L","Numeric","Not Reviewed","Uncensored",37.08637,-113.55662,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950200-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950200","VIRGIN R SE OF ST GEORGE @ CR XING",NA,NA,NA,NA,"37.0863700000","-113.5566200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093431",NA,"as N","Nitrogen","Total","0.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950200-0620-4-C/results/970093431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:05","STORET",7,NA,2022-06-20 20:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0863700000","-113.5566200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.72,"MG/L","Numeric","Not Reviewed","Uncensored",37.08637,-113.55662,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950251-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"08:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950251","Virgin River at Mall Drive bridge",NA,NA,NA,NA,"37.0966500000","-113.5328700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093438",NA,"as N","Nitrogen","Total","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950251-0619-4-C/results/970093438/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:06","STORET",7,NA,2022-06-19 15:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0966500000","-113.5328700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",37.09665,-113.53287,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950251-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"08:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950251","Virgin River at Mall Drive bridge",NA,NA,NA,NA,"37.0966500000","-113.5328700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093442",NA,"as N","Nitrogen","Dissolved","0.653","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950251-0619-4-C/results/970093442/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:06","STORET",7,NA,2022-06-19 15:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0966500000","-113.5328700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.653,"MG/L","Numeric","Not Reviewed","Uncensored",37.09665,-113.53287,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950251-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950251","Virgin River at Mall Drive bridge",NA,NA,NA,NA,"37.0966500000","-113.5328700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093507",NA,"as N","Nitrogen","Dissolved","0.525","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950251-0620-4-C/results/970093507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:07","STORET",7,NA,2022-06-20 20:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0966500000","-113.5328700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.525,"MG/L","Numeric","Not Reviewed","Uncensored",37.09665,-113.53287,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950251-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950251","Virgin River at Mall Drive bridge",NA,NA,NA,NA,"37.0966500000","-113.5328700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093516",NA,"as N","Nitrogen","Total","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950251-0620-4-C/results/970093516/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:07","STORET",7,NA,2022-06-20 20:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.0966500000","-113.5328700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",37.09665,-113.53287,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950263-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"07:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950263","Virgin River at Country Way Bridge crossing",NA,NA,NA,NA,"37.1200500000","-113.4662800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093565",NA,"as N","Nitrogen","Dissolved","0.601","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950263-0619-4-C/results/970093565/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:09","STORET",7,NA,2022-06-19 14:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1200500000","-113.4662800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.601,"MG/L","Numeric","Not Reviewed","Uncensored",37.12005,-113.46628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950263-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"07:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950263","Virgin River at Country Way Bridge crossing",NA,NA,NA,NA,"37.1200500000","-113.4662800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093573",NA,"as N","Nitrogen","Total","0.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950263-0619-4-C/results/970093573/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:09","STORET",7,NA,2022-06-19 14:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1200500000","-113.4662800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.76,"MG/L","Numeric","Not Reviewed","Uncensored",37.12005,-113.46628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950263-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"14:23:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950263","Virgin River at Country Way Bridge crossing",NA,NA,NA,NA,"37.1200500000","-113.4662800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093606",NA,"as N","Nitrogen","Total","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950263-0620-4-C/results/970093606/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:09","STORET",7,NA,2022-06-20 21:23:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1200500000","-113.4662800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",37.12005,-113.46628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950263-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"14:23:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950263","Virgin River at Country Way Bridge crossing",NA,NA,NA,NA,"37.1200500000","-113.4662800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093642",NA,"as N","Nitrogen","Dissolved","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950263-0620-4-C/results/970093642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:10","STORET",7,NA,2022-06-20 21:23:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1200500000","-113.4662800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.331,"MG/L","Numeric","Not Reviewed","Uncensored",37.12005,-113.46628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950268-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"15:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950268","Virgin River 0.9 mile via road AB St. George/Washington Canal dam entrance",NA,NA,NA,NA,"37.1202300000","-113.4299000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093645",NA,"as N","Nitrogen","Dissolved","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950268-0613-4-C/results/970093645/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:10","STORET",7,NA,2022-06-13 22:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1202300000","-113.4299000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",37.12023,-113.4299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950268-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"15:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950268","Virgin River 0.9 mile via road AB St. George/Washington Canal dam entrance",NA,NA,NA,NA,"37.1202300000","-113.4299000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093695",NA,"as N","Nitrogen","Total","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950268-0613-4-C/results/970093695/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:11","STORET",7,NA,2022-06-13 22:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1202300000","-113.4299000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",37.12023,-113.4299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950268-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950268","Virgin River 0.9 mile via road AB St. George/Washington Canal dam entrance",NA,NA,NA,NA,"37.1202300000","-113.4299000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093730",NA,"as N","Nitrogen","Dissolved","0.551","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950268-0615-4-C/results/970093730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:12","STORET",7,NA,2022-06-15 16:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1202300000","-113.4299000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.551,"MG/L","Numeric","Not Reviewed","Uncensored",37.12023,-113.4299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950268-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950268","Virgin River 0.9 mile via road AB St. George/Washington Canal dam entrance",NA,NA,NA,NA,"37.1202300000","-113.4299000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093742",NA,"as N","Nitrogen","Total","0.591","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950268-0615-4-C/results/970093742/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:12","STORET",7,NA,2022-06-15 16:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1202300000","-113.4299000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.591,"MG/L","Numeric","Not Reviewed","Uncensored",37.12023,-113.4299,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950300-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950300","VIRGIN R SE OF ST GEORGE @ CR XING Replicate of 4950200",NA,NA,NA,NA,"37.0863700000","-113.5566200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093766",NA,"as N","Nitrogen","Total","0.846","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950300-0619-4-C/results/970093766/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:13","STORET",7,NA,2022-06-19 19:30:00,NA,"River/Stream","Replicate of 4950200","15010008",NA,NA,NA,NA,"37.0863700000","-113.5566200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.846,"MG/L","Numeric","Not Reviewed","Uncensored",37.08637,-113.55662,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950300-0619-4-C","Sample-Routine","Water",NA,2022-06-19,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950300","VIRGIN R SE OF ST GEORGE @ CR XING Replicate of 4950200",NA,NA,NA,NA,"37.0863700000","-113.5566200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093793",NA,"as N","Nitrogen","Dissolved","0.775","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950300-0619-4-C/results/970093793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:13","STORET",7,NA,2022-06-19 19:30:00,NA,"River/Stream","Replicate of 4950200","15010008",NA,NA,NA,NA,"37.0863700000","-113.5566200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.775,"MG/L","Numeric","Not Reviewed","Uncensored",37.08637,-113.55662,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950300-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950300","VIRGIN R SE OF ST GEORGE @ CR XING Replicate of 4950200",NA,NA,NA,NA,"37.0863700000","-113.5566200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093805",NA,"as N","Nitrogen","Dissolved","0.927","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950300-0620-4-C/results/970093805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:14","STORET",7,NA,2022-06-20 17:15:00,NA,"River/Stream","Replicate of 4950200","15010008",NA,NA,NA,NA,"37.0863700000","-113.5566200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.927,"MG/L","Numeric","Not Reviewed","Uncensored",37.08637,-113.55662,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950300-0620-4-C","Sample-Routine","Water",NA,2022-06-20,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950300","VIRGIN R SE OF ST GEORGE @ CR XING Replicate of 4950200",NA,NA,NA,NA,"37.0863700000","-113.5566200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093839",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950300-0620-4-C/results/970093839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:14","STORET",7,NA,2022-06-20 17:15:00,NA,"River/Stream","Replicate of 4950200","15010008",NA,NA,NA,NA,"37.0863700000","-113.5566200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",37.08637,-113.55662,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950320-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"18:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950320","VIRGIN R AT HWY 9 XING W OF HURRICANE",NA,NA,NA,NA,"37.1627600000","-113.3955000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093857",NA,"as N","Nitrogen","Total","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950320-0614-4-C/results/970093857/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:15","STORET",7,NA,2022-06-15 01:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1627600000","-113.3955000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",37.16276,-113.3955,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950320-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"18:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950320","VIRGIN R AT HWY 9 XING W OF HURRICANE",NA,NA,NA,NA,"37.1627600000","-113.3955000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093904",NA,"as N","Nitrogen","Dissolved","0.557","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950320-0614-4-C/results/970093904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:16","STORET",7,NA,2022-06-15 01:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1627600000","-113.3955000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.557,"MG/L","Numeric","Not Reviewed","Uncensored",37.16276,-113.3955,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950320-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950320","VIRGIN R AT HWY 9 XING W OF HURRICANE",NA,NA,NA,NA,"37.1627600000","-113.3955000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093925",NA,"as N","Nitrogen","Dissolved","0.509","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950320-0615-4-C/results/970093925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:17","STORET",7,NA,2022-06-15 17:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1627600000","-113.3955000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.509,"MG/L","Numeric","Not Reviewed","Uncensored",37.16276,-113.3955,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950320-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950320","VIRGIN R AT HWY 9 XING W OF HURRICANE",NA,NA,NA,NA,"37.1627600000","-113.3955000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093950",NA,"as N","Nitrogen","Total","0.525","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950320-0615-4-C/results/970093950/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:17","STORET",7,NA,2022-06-15 17:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1627600000","-113.3955000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.525,"MG/L","Numeric","Not Reviewed","Uncensored",37.16276,-113.3955,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950321-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"19:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950321","VIRGIN R AT HWY 9 XING W OF HURRICANE Replicate of 4950320",NA,NA,NA,NA,"37.1627600000","-113.3955000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093966",NA,"as N","Nitrogen","Dissolved","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950321-0614-4-C/results/970093966/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:17","STORET",7,NA,2022-06-15 02:00:00,NA,"River/Stream","Replicate of 4950320","15010008",NA,NA,NA,NA,"37.1627600000","-113.3955000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",37.16276,-113.3955,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950321-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"19:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950321","VIRGIN R AT HWY 9 XING W OF HURRICANE Replicate of 4950320",NA,NA,NA,NA,"37.1627600000","-113.3955000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970093980",NA,"as N","Nitrogen","Total","0.577","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950321-0614-4-C/results/970093980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:18","STORET",7,NA,2022-06-15 02:00:00,NA,"River/Stream","Replicate of 4950320","15010008",NA,NA,NA,NA,"37.1627600000","-113.3955000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.577,"MG/L","Numeric","Not Reviewed","Uncensored",37.16276,-113.3955,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950321-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950321","VIRGIN R AT HWY 9 XING W OF HURRICANE Replicate of 4950320",NA,NA,NA,NA,"37.1627600000","-113.3955000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094044",NA,"as N","Nitrogen","Dissolved","0.472","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950321-0615-4-C/results/970094044/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:19","STORET",7,NA,2022-06-15 17:30:00,NA,"River/Stream","Replicate of 4950320","15010008",NA,NA,NA,NA,"37.1627600000","-113.3955000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.472,"MG/L","Numeric","Not Reviewed","Uncensored",37.16276,-113.3955,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950321-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950321","VIRGIN R AT HWY 9 XING W OF HURRICANE Replicate of 4950320",NA,NA,NA,NA,"37.1627600000","-113.3955000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094057",NA,"as N","Nitrogen","Total","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950321-0615-4-C/results/970094057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:19","STORET",7,NA,2022-06-15 17:30:00,NA,"River/Stream","Replicate of 4950320","15010008",NA,NA,NA,NA,"37.1627600000","-113.3955000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",37.16276,-113.3955,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950418-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"17:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950418","Interstate Rock Products pond outlet to Virgin River",NA,NA,NA,NA,"37.1754200000","-113.3778900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094073",NA,"as N","Nitrogen","Total","0.369","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950418-0614-4-C/results/970094073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:20","STORET",7,NA,2022-06-15 00:45:00,NA,"Facility Other",NA,"15010008",NA,NA,NA,NA,"37.1754200000","-113.3778900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.369,"MG/L","Numeric","Not Reviewed","Uncensored",37.17542,-113.37789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950418-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"17:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950418","Interstate Rock Products pond outlet to Virgin River",NA,NA,NA,NA,"37.1754200000","-113.3778900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094074",NA,"as N","Nitrogen","Dissolved","0.33","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950418-0614-4-C/results/970094074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:20","STORET",7,NA,2022-06-15 00:45:00,NA,"Facility Other",NA,"15010008",NA,NA,NA,NA,"37.1754200000","-113.3778900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.33,"MG/L","Numeric","Not Reviewed","Uncensored",37.17542,-113.37789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950418-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950418","Interstate Rock Products pond outlet to Virgin River",NA,NA,NA,NA,"37.1754200000","-113.3778900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094122",NA,"as N","Nitrogen","Total","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950418-0615-4-C/results/970094122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:21","STORET",7,NA,2022-06-15 18:45:00,NA,"Facility Other",NA,"15010008",NA,NA,NA,NA,"37.1754200000","-113.3778900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",37.17542,-113.37789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950418-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950418","Interstate Rock Products pond outlet to Virgin River",NA,NA,NA,NA,"37.1754200000","-113.3778900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094134",NA,"as N","Nitrogen","Dissolved","0.327","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950418-0615-4-C/results/970094134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:21","STORET",7,NA,2022-06-15 18:45:00,NA,"Facility Other",NA,"15010008",NA,NA,NA,NA,"37.1754200000","-113.3778900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.327,"MG/L","Numeric","Not Reviewed","Uncensored",37.17542,-113.37789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950422-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950422","Virgin River 0.3mi BL confl w/Grapevine Wash at Stormont Mill homestead",NA,NA,NA,NA,"37.1920100000","-113.3529200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094182",NA,"as N","Nitrogen","Total","0.628","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950422-0614-4-C/results/970094182/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:22","STORET",7,NA,2022-06-14 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1920100000","-113.3529200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.628,"MG/L","Numeric","Not Reviewed","Uncensored",37.19201,-113.35292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950422-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950422","Virgin River 0.3mi BL confl w/Grapevine Wash at Stormont Mill homestead",NA,NA,NA,NA,"37.1920100000","-113.3529200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094188",NA,"as N","Nitrogen","Dissolved","0.557","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950422-0614-4-C/results/970094188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:22","STORET",7,NA,2022-06-14 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1920100000","-113.3529200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.557,"MG/L","Numeric","Not Reviewed","Uncensored",37.19201,-113.35292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950422-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950422","Virgin River 0.3mi BL confl w/Grapevine Wash at Stormont Mill homestead",NA,NA,NA,NA,"37.1920100000","-113.3529200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094247",NA,"as N","Nitrogen","Total","0.498","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950422-0616-4-C/results/970094247/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:24","STORET",7,NA,2022-06-16 21:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1920100000","-113.3529200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.498,"MG/L","Numeric","Not Reviewed","Uncensored",37.19201,-113.35292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950422-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950422","Virgin River 0.3mi BL confl w/Grapevine Wash at Stormont Mill homestead",NA,NA,NA,NA,"37.1920100000","-113.3529200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094257",NA,"as N","Nitrogen","Dissolved","0.517","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950422-0616-4-C/results/970094257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:24","STORET",7,NA,2022-06-16 21:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1920100000","-113.3529200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.517,"MG/L","Numeric","Not Reviewed","Uncensored",37.19201,-113.35292,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950770-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950770","LA VERKIN CK AT U17 XING",NA,NA,NA,NA,"37.2197000000","-113.2760000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094303",NA,"as N","Nitrogen","Total","0.434","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950770-0613-4-C/results/970094303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:25","STORET",7,NA,2022-06-13 17:40:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2197000000","-113.2760000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.434,"MG/L","Numeric","Not Reviewed","Uncensored",37.2197,-113.276,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950770-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950770","LA VERKIN CK AT U17 XING",NA,NA,NA,NA,"37.2197000000","-113.2760000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094316",NA,"as N","Nitrogen","Dissolved","0.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950770-0613-4-C/results/970094316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:26","STORET",7,NA,2022-06-13 17:40:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2197000000","-113.2760000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.4,"MG/L","Numeric","Not Reviewed","Uncensored",37.2197,-113.276,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950770-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950770","LA VERKIN CK AT U17 XING",NA,NA,NA,NA,"37.2197000000","-113.2760000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094369",NA,"as N","Nitrogen","Total","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950770-0615-4-C/results/970094369/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:27","STORET",7,NA,2022-06-15 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2197000000","-113.2760000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",37.2197,-113.276,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950770-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950770","LA VERKIN CK AT U17 XING",NA,NA,NA,NA,"37.2197000000","-113.2760000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094382",NA,"as N","Nitrogen","Dissolved","0.356","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950770-0615-4-C/results/970094382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:27","STORET",7,NA,2022-06-15 19:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2197000000","-113.2760000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.356,"MG/L","Numeric","Not Reviewed","Uncensored",37.2197,-113.276,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4950800-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"12:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094392","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4950800-0413-4-C/results/970094392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:28","STORET",7,NA,2022-04-13 19:05:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4950800-0413-4-C","Sample-Routine","Water",NA,2022-04-13,"12:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094397",NA,"as N","Nitrogen","Dissolved","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4950800-0413-4-C/results/970094397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:28","STORET",7,NA,2022-04-13 19:05:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4950800-0508-4-C","Sample-Routine","Water",NA,2022-05-08,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094418","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4950800-0508-4-C/results/970094418/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:29","STORET",7,NA,2022-05-08 18:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4950800-0508-4-C","Sample-Routine","Water",NA,2022-05-08,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094431","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4950800-0508-4-C/results/970094431/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:29","STORET",7,NA,2022-05-08 18:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4950800-0610-4-C","Sample-Routine","Water",NA,2022-06-10,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094446","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4950800-0610-4-C/results/970094446/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:30","STORET",7,NA,2022-06-10 17:50:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4950800-0610-4-C","Sample-Routine","Water",NA,2022-06-10,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094447","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4950800-0610-4-C/results/970094447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:30","STORET",7,NA,2022-06-10 17:50:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4950800-0708-4-C","Sample-Routine","Water",NA,2022-07-08,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094466","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4950800-0708-4-C/results/970094466/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:30","STORET",7,NA,2022-07-08 18:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4950800-0708-4-C","Sample-Routine","Water",NA,2022-07-08,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094478","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4950800-0708-4-C/results/970094478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:31","STORET",7,NA,2022-07-08 18:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4950800-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094489","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4950800-0809-4-C/results/970094489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:31","STORET",7,NA,2022-08-09 17:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4950800-0809-4-C","Sample-Routine","Water",NA,2022-08-09,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094496","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4950800-0809-4-C/results/970094496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:31","STORET",7,NA,2022-08-09 17:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4950800-0902-4-C","Sample-Routine","Water",NA,2022-09-02,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094500","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4950800-0902-4-C/results/970094500/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:32","STORET",7,NA,2022-09-02 18:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4950800-0902-4-C","Sample-Routine","Water",NA,2022-09-02,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950800","La Verkin Ck at Lee Pass Trail",NA,NA,NA,NA,"37.4072000000","-113.1757800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094514","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4950800-0902-4-C/results/970094514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:32","STORET",7,NA,2022-09-02 18:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.4072000000","-113.1757800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.4072,-113.17578,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950807-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950807","Virgin River 0.4 mile BL Powerplant BL SR9",NA,NA,NA,NA,"37.1974100000","-113.2853800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094533",NA,"as N","Nitrogen","Dissolved","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950807-0613-4-C/results/970094533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:32","STORET",7,NA,2022-06-13 15:55:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1974100000","-113.2853800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",37.19741,-113.28538,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950807-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950807","Virgin River 0.4 mile BL Powerplant BL SR9",NA,NA,NA,NA,"37.1974100000","-113.2853800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094551",NA,"as N","Nitrogen","Total","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950807-0613-4-C/results/970094551/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:33","STORET",7,NA,2022-06-13 15:55:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1974100000","-113.2853800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",37.19741,-113.28538,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950807-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950807","Virgin River 0.4 mile BL Powerplant BL SR9",NA,NA,NA,NA,"37.1974100000","-113.2853800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094581",NA,"as N","Nitrogen","Dissolved","0.519","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950807-0615-4-C/results/970094581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:33","STORET",7,NA,2022-06-15 20:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1974100000","-113.2853800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.519,"MG/L","Numeric","Not Reviewed","Uncensored",37.19741,-113.28538,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950807-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950807","Virgin River 0.4 mile BL Powerplant BL SR9",NA,NA,NA,NA,"37.1974100000","-113.2853800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094599",NA,"as N","Nitrogen","Total","0.578","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950807-0615-4-C/results/970094599/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:34","STORET",7,NA,2022-06-15 20:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1974100000","-113.2853800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.578,"MG/L","Numeric","Not Reviewed","Uncensored",37.19741,-113.28538,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950812-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950812","Pah Tempe Hot Springs Outfall to Virgin River",NA,NA,NA,NA,"37.1885300000","-113.2691300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094630",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950812-0613-4-C/results/970094630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:35","STORET",7,NA,2022-06-13 18:45:00,NA,"Spring",NA,"15010008",NA,NA,NA,NA,"37.1885300000","-113.2691300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",37.18853,-113.26913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950812-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950812","Pah Tempe Hot Springs Outfall to Virgin River",NA,NA,NA,NA,"37.1885300000","-113.2691300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094650",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950812-0613-4-C/results/970094650/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:35","STORET",7,NA,2022-06-13 18:45:00,NA,"Spring",NA,"15010008",NA,NA,NA,NA,"37.1885300000","-113.2691300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",37.18853,-113.26913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950812-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950812","Pah Tempe Hot Springs Outfall to Virgin River",NA,NA,NA,NA,"37.1885300000","-113.2691300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094677",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950812-0615-4-C/results/970094677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:36","STORET",7,NA,2022-06-15 20:30:00,NA,"Spring",NA,"15010008",NA,NA,NA,NA,"37.1885300000","-113.2691300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",37.18853,-113.26913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950812-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950812","Pah Tempe Hot Springs Outfall to Virgin River",NA,NA,NA,NA,"37.1885300000","-113.2691300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094719",NA,"as N","Nitrogen","Total","1.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950812-0615-4-C/results/970094719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:36","STORET",7,NA,2022-06-15 20:30:00,NA,"Spring",NA,"15010008",NA,NA,NA,NA,"37.1885300000","-113.2691300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.41,"MG/L","Numeric","Not Reviewed","Uncensored",37.18853,-113.26913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950814-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950814","Virgin River below Quail Creek Diversion Structure",NA,NA,NA,NA,"37.1991200000","-113.2348500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094738",NA,"as N","Nitrogen","Total","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950814-0613-4-C/results/970094738/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:37","STORET",7,NA,2022-06-13 21:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1991200000","-113.2348500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",37.19912,-113.23485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950814-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950814","Virgin River below Quail Creek Diversion Structure",NA,NA,NA,NA,"37.1991200000","-113.2348500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094748",NA,"as N","Nitrogen","Dissolved","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950814-0613-4-C/results/970094748/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:37","STORET",7,NA,2022-06-13 21:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1991200000","-113.2348500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",37.19912,-113.23485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950814-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950814","Virgin River below Quail Creek Diversion Structure",NA,NA,NA,NA,"37.1991200000","-113.2348500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094790",NA,"as N","Nitrogen","Total","0.393","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950814-0615-4-C/results/970094790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:38","STORET",7,NA,2022-06-15 22:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1991200000","-113.2348500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.393,"MG/L","Numeric","Not Reviewed","Uncensored",37.19912,-113.23485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950814-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950814","Virgin River below Quail Creek Diversion Structure",NA,NA,NA,NA,"37.1991200000","-113.2348500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094793",NA,"as N","Nitrogen","Dissolved","0.321","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950814-0615-4-C/results/970094793/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:38","STORET",7,NA,2022-06-15 22:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1991200000","-113.2348500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.321,"MG/L","Numeric","Not Reviewed","Uncensored",37.19912,-113.23485,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950816-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"16:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950816","Virgin River 0.4 mi AB Sheep Bridge Rd crossing at Virgin Falls Park",NA,NA,NA,NA,"37.1980200000","-113.2073500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094875",NA,"as N","Nitrogen","Total","0.416","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950816-0614-4-C/results/970094875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:40","STORET",7,NA,2022-06-14 23:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1980200000","-113.2073500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.416,"MG/L","Numeric","Not Reviewed","Uncensored",37.19802,-113.20735,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950816-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"16:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950816","Virgin River 0.4 mi AB Sheep Bridge Rd crossing at Virgin Falls Park",NA,NA,NA,NA,"37.1980200000","-113.2073500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094886",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950816-0614-4-C/results/970094886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:40","STORET",7,NA,2022-06-14 23:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1980200000","-113.2073500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",37.19802,-113.20735,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950816-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"15:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950816","Virgin River 0.4 mi AB Sheep Bridge Rd crossing at Virgin Falls Park",NA,NA,NA,NA,"37.1980200000","-113.2073500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094911",NA,"as N","Nitrogen","Dissolved","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950816-0615-4-C/results/970094911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:41","STORET",7,NA,2022-06-15 22:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1980200000","-113.2073500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",37.19802,-113.20735,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950816-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"15:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950816","Virgin River 0.4 mi AB Sheep Bridge Rd crossing at Virgin Falls Park",NA,NA,NA,NA,"37.1980200000","-113.2073500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094923",NA,"as N","Nitrogen","Total","0.438","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950816-0615-4-C/results/970094923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:41","STORET",7,NA,2022-06-15 22:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1980200000","-113.2073500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.438,"MG/L","Numeric","Not Reviewed","Uncensored",37.19802,-113.20735,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950850-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"16:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950850","VIRGIN R 1 MI E OF VIRGIN",NA,NA,NA,NA,"37.2037600000","-113.1800800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094979",NA,"as N","Nitrogen","Total","0.466","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950850-0614-4-C/results/970094979/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:42","STORET",7,NA,2022-06-14 23:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2037600000","-113.1800800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.466,"MG/L","Numeric","Not Reviewed","Uncensored",37.20376,-113.18008,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950850-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"16:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950850","VIRGIN R 1 MI E OF VIRGIN",NA,NA,NA,NA,"37.2037600000","-113.1800800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970094984",NA,"as N","Nitrogen","Dissolved","0.404","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950850-0614-4-C/results/970094984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:42","STORET",7,NA,2022-06-14 23:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2037600000","-113.1800800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.404,"MG/L","Numeric","Not Reviewed","Uncensored",37.20376,-113.18008,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950850-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950850","VIRGIN R 1 MI E OF VIRGIN",NA,NA,NA,NA,"37.2037600000","-113.1800800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095025",NA,"as N","Nitrogen","Dissolved","0.371","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950850-0616-4-C/results/970095025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:43","STORET",7,NA,2022-06-16 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2037600000","-113.1800800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.371,"MG/L","Numeric","Not Reviewed","Uncensored",37.20376,-113.18008,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950850-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950850","VIRGIN R 1 MI E OF VIRGIN",NA,NA,NA,NA,"37.2037600000","-113.1800800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095045",NA,"as N","Nitrogen","Total","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950850-0616-4-C/results/970095045/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:44","STORET",7,NA,2022-06-16 18:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2037600000","-113.1800800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",37.20376,-113.18008,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950890-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950890","NORTH CK AB CNFL/ VIRGIN R",NA,NA,NA,NA,"37.2027600000","-113.1752200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095050",NA,"as N","Nitrogen","Dissolved","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950890-0614-4-C/results/970095050/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:45","STORET",7,NA,2022-06-14 23:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2027600000","-113.1752200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",37.20276,-113.17522,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950890-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950890","NORTH CK AB CNFL/ VIRGIN R",NA,NA,NA,NA,"37.2027600000","-113.1752200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095066",NA,"as N","Nitrogen","Total","0.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950890-0614-4-C/results/970095066/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:45","STORET",7,NA,2022-06-14 23:00:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2027600000","-113.1752200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.36,"MG/L","Numeric","Not Reviewed","Uncensored",37.20276,-113.17522,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950890-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950890","NORTH CK AB CNFL/ VIRGIN R",NA,NA,NA,NA,"37.2027600000","-113.1752200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095102",NA,"as N","Nitrogen","Total","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950890-0616-4-C/results/970095102/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:47","STORET",7,NA,2022-06-16 17:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2027600000","-113.1752200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",37.20276,-113.17522,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950890-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950890","NORTH CK AB CNFL/ VIRGIN R",NA,NA,NA,NA,"37.2027600000","-113.1752200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095103",NA,"as N","Nitrogen","Dissolved","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950890-0616-4-C/results/970095103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:47","STORET",7,NA,2022-06-16 17:45:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2027600000","-113.1752200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",37.20276,-113.17522,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950892-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950892","Virgin River at 2020 E crossing near Virgin",NA,NA,NA,NA,"37.1936200000","-113.1522500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095159",NA,"as N","Nitrogen","Total","0.458","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950892-0614-4-C/results/970095159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:48","STORET",7,NA,2022-06-14 22:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1936200000","-113.1522500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.458,"MG/L","Numeric","Not Reviewed","Uncensored",37.19362,-113.15225,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950892-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"15:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950892","Virgin River at 2020 E crossing near Virgin",NA,NA,NA,NA,"37.1936200000","-113.1522500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095177",NA,"as N","Nitrogen","Dissolved","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950892-0614-4-C/results/970095177/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:49","STORET",7,NA,2022-06-14 22:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1936200000","-113.1522500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",37.19362,-113.15225,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950892-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950892","Virgin River at 2020 E crossing near Virgin",NA,NA,NA,NA,"37.1936200000","-113.1522500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095230",NA,"as N","Nitrogen","Total","0.397","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950892-0616-4-C/results/970095230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:51","STORET",7,NA,2022-06-16 17:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1936200000","-113.1522500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.397,"MG/L","Numeric","Not Reviewed","Uncensored",37.19362,-113.15225,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950892-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950892","Virgin River at 2020 E crossing near Virgin",NA,NA,NA,NA,"37.1936200000","-113.1522500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095243",NA,"as N","Nitrogen","Dissolved","0.414","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950892-0616-4-C/results/970095243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:51","STORET",7,NA,2022-06-16 17:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1936200000","-113.1522500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.414,"MG/L","Numeric","Not Reviewed","Uncensored",37.19362,-113.15225,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950900-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"15:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950900","VIRGIN R AT CR XING IN ROCKVILLE",NA,NA,NA,NA,"37.1588100000","-113.0376300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095264",NA,"as N","Nitrogen","Total","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950900-0614-4-C/results/970095264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:52","STORET",7,NA,2022-06-14 22:40:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1588100000","-113.0376300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",37.15881,-113.03763,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950900-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"15:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950900","VIRGIN R AT CR XING IN ROCKVILLE",NA,NA,NA,NA,"37.1588100000","-113.0376300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095278",NA,"as N","Nitrogen","Dissolved","0.465","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950900-0614-4-C/results/970095278/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:53","STORET",7,NA,2022-06-14 22:40:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1588100000","-113.0376300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.465,"MG/L","Numeric","Not Reviewed","Uncensored",37.15881,-113.03763,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950900-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950900","VIRGIN R AT CR XING IN ROCKVILLE",NA,NA,NA,NA,"37.1588100000","-113.0376300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095342",NA,"as N","Nitrogen","Dissolved","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950900-0616-4-C/results/970095342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:55","STORET",7,NA,2022-06-16 16:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1588100000","-113.0376300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",37.15881,-113.03763,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-WLA2022-4950900-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4950900","VIRGIN R AT CR XING IN ROCKVILLE",NA,NA,NA,NA,"37.1588100000","-113.0376300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095362",NA,"as N","Nitrogen","Total","0.501","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-WLA2022-4950900-0616-4-C/results/970095362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:55","STORET",7,NA,2022-06-16 16:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.1588100000","-113.0376300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.501,"MG/L","Numeric","Not Reviewed","Uncensored",37.15881,-113.03763,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4950920-0414-4-C","Sample-Routine","Water",NA,2022-04-14,"10:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095374",NA,"as N","Nitrogen","Total","0.643","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4950920-0414-4-C/results/970095374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:56","STORET",7,NA,2022-04-14 17:57:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.643,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4950920-0414-4-C","Sample-Routine","Water",NA,2022-04-14,"10:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095393",NA,"as N","Nitrogen","Dissolved","0.594","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4950920-0414-4-C/results/970095393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:57","STORET",7,NA,2022-04-14 17:57:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.594,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4950920-0506-4-C","Sample-Routine","Water",NA,2022-05-06,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095396",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4950920-0506-4-C/results/970095396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:57","STORET",7,NA,2022-05-06 21:20:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4950920-0506-4-C","Sample-Routine","Water",NA,2022-05-06,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095400",NA,"as N","Nitrogen","Dissolved","0.596","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4950920-0506-4-C/results/970095400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:57","STORET",7,NA,2022-05-06 21:20:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.596,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4950920-0610-4-C","Sample-Routine","Water",NA,2022-06-10,"16:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095424",NA,"as N","Nitrogen","Total","0.547","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4950920-0610-4-C/results/970095424/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:58","STORET",7,NA,2022-06-10 23:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.547,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4950920-0610-4-C","Sample-Routine","Water",NA,2022-06-10,"16:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095428",NA,"as N","Nitrogen","Dissolved","0.548","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4950920-0610-4-C/results/970095428/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:59","STORET",7,NA,2022-06-10 23:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.548,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4950920-0708-4-C","Sample-Routine","Water",NA,2022-07-08,"17:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095437",NA,"as N","Nitrogen","Total","0.465","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4950920-0708-4-C/results/970095437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:59","STORET",7,NA,2022-07-09 00:35:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.465,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4950920-0708-4-C","Sample-Routine","Water",NA,2022-07-08,"17:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095441",NA,"as N","Nitrogen","Dissolved","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4950920-0708-4-C/results/970095441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:29:59","STORET",7,NA,2022-07-09 00:35:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4950920-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095465",NA,"as N","Nitrogen","Total","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4950920-0810-4-C/results/970095465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:00","STORET",7,NA,2022-08-10 16:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4950920-0810-4-C","Sample-Routine","Water",NA,2022-08-10,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095476",NA,"as N","Nitrogen","Dissolved","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4950920-0810-4-C/results/970095476/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:01","STORET",7,NA,2022-08-10 16:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4950920-0902-4-C","Sample-Routine","Water",NA,2022-09-02,"17:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095488",NA,"as N","Nitrogen","Dissolved","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4950920-0902-4-C/results/970095488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:01","STORET",7,NA,2022-09-03 00:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4950920-0902-4-C","Sample-Routine","Water",NA,2022-09-02,"17:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4950920","North Ck at Planned Gage in Park",NA,NA,NA,NA,"37.2616900000","-113.1071900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095494",NA,"as N","Nitrogen","Total","0.479","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4950920-0902-4-C/results/970095494/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:02","STORET",7,NA,2022-09-03 00:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.2616900000","-113.1071900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",53,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.479,"MG/L","Numeric","Not Reviewed","Uncensored",37.26169,-113.10719,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4951265-0412-4-C","Sample-Routine","Water",NA,2022-04-12,"12:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095510","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951265-0412-4-C/results/970095510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:02","STORET",7,NA,2022-04-12 19:35:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4951265-0412-4-C","Sample-Routine","Water",NA,2022-04-12,"12:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095515","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951265-0412-4-C/results/970095515/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:02","STORET",7,NA,2022-04-12 19:35:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4951265-0507-4-C","Sample-Routine","Water",NA,2022-05-07,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095529","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951265-0507-4-C/results/970095529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:03","STORET",7,NA,2022-05-07 18:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4951265-0507-4-C","Sample-Routine","Water",NA,2022-05-07,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095530",NA,"as N","Nitrogen","Total","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951265-0507-4-C/results/970095530/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:03","STORET",7,NA,2022-05-07 18:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4951265-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095547","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951265-0609-4-C/results/970095547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:04","STORET",7,NA,2022-06-09 21:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4951265-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095554",NA,"as N","Nitrogen","Total","0.215","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951265-0609-4-C/results/970095554/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:04","STORET",7,NA,2022-06-09 21:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.215,"MG/L","Numeric","Not Reviewed","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4951265-0707-4-C","Sample-Routine","Water",NA,2022-07-07,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095570","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951265-0707-4-C/results/970095570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:05","STORET",7,NA,2022-07-07 22:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4951265-0707-4-C","Sample-Routine","Water",NA,2022-07-07,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095582","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951265-0707-4-C/results/970095582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:05","STORET",7,NA,2022-07-07 22:15:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4951265-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095600","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951265-0808-4-C/results/970095600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:06","STORET",7,NA,2022-08-08 20:35:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4951265-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095603","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951265-0808-4-C/results/970095603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:06","STORET",7,NA,2022-08-08 20:35:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4951265-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095617",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951265-0901-4-C/results/970095617/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:06","STORET",7,NA,2022-09-01 20:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4951265-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951265","N FK VIRGIN R AT WSA BNDRY",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095618","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951265-0901-4-C/results/970095618/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:06","STORET",7,NA,2022-09-01 20:30:00,NA,"River/Stream",NA,"15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4951266-0412-4-C","Sample-Routine","Water",NA,2022-04-12,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095634","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951266-0412-4-C/results/970095634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:07","STORET",7,NA,2022-04-12 19:50:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4951266-0412-4-C","Sample-Routine","Water",NA,2022-04-12,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095652","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951266-0412-4-C/results/970095652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:08","STORET",7,NA,2022-04-12 19:50:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4951266-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095662","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951266-0609-4-C/results/970095662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:08","STORET",7,NA,2022-06-09 21:35:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4951266-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095668","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951266-0609-4-C/results/970095668/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:09","STORET",7,NA,2022-06-09 21:35:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4951266-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095681",NA,"as N","Nitrogen","Dissolved","0.161","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951266-0808-4-C/results/970095681/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:09","STORET",7,NA,2022-08-08 20:40:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.161,"MG/L","Numeric","Pass","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4951266-0808-4-C","Sample-Routine","Water",NA,2022-08-08,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951266","N FK VIRGIN R AT WSA BNDRY Replicate of 4951265",NA,NA,NA,NA,"37.3709800000","-112.8827700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095684",NA,"as N","Nitrogen","Total","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951266-0808-4-C/results/970095684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:09","STORET",7,NA,2022-08-08 20:40:00,NA,"River/Stream","Replicate of 4951265","15010008",NA,NA,NA,NA,"37.3709800000","-112.8827700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",37.37098,-112.88277,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-4951766-0513-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-13,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095703","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4951766-0513-4-C/results/970095703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:10","STORET",7,NA,2022-05-13 22:05:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-4951766-0513-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-13,"15:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095719","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4951766-0513-4-C/results/970095719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:11","STORET",7,NA,2022-05-13 22:05:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-4951766-0628-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-28,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095726","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4951766-0628-4-C/results/970095726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:11","STORET",7,NA,2022-06-28 16:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-4951766-0628-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-28,"09:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095730","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4951766-0628-4-C/results/970095730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:11","STORET",7,NA,2022-06-28 16:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-4951766-0717-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-17,"10:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095752","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4951766-0717-4-C/results/970095752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:12","STORET",7,NA,2022-07-17 17:08:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-4951766-0717-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-17,"10:08:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095754","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4951766-0717-4-C/results/970095754/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:12","STORET",7,NA,2022-07-17 17:08:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-4951766-0801-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-01,"18:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095780","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4951766-0801-4-C/results/970095780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:13","STORET",7,NA,2022-08-02 01:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-4951766-0801-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-01,"18:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095787",NA,"as N","Nitrogen","Dissolved","0.313","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4951766-0801-4-C/results/970095787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:13","STORET",7,NA,2022-08-02 01:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.313,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-4951766-0928-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-28,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095806","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4951766-0928-4-C/results/970095806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:14","STORET",7,NA,2022-09-28 21:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-4951766-0928-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-28,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-4951766","Equipment blank GSENM field crew",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095808","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4951766-0928-4-C/results/970095808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:14","STORET",7,NA,2022-09-28 21:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-4951850-0512-4-C","Sample-Routine","Water",NA,2022-05-12,"13:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951850","PARIA R AT US89 XING",NA,NA,NA,NA,"37.1074900000","-111.9068500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095831",NA,"as N","Nitrogen","Total","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4951850-0512-4-C/results/970095831/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:14","STORET",7,NA,2022-05-12 20:25:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",37.10749,-111.90685,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-4951850-0716-4-C","Sample-Routine","Water",NA,2022-07-16,"08:44:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management;National Park Service","UTAHDWQ_WQX-4951850","PARIA R AT US89 XING",NA,NA,NA,NA,"37.1074900000","-111.9068500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095842",NA,"as N","Nitrogen","Total","0.808","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4951850-0716-4-C/results/970095842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:15","STORET",7,NA,2022-07-16 15:44:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.808,"MG/L","Numeric","Not Reviewed","Uncensored",37.10749,-111.90685,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-4951850-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"11:27:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4951850","PARIA R AT US89 XING",NA,NA,NA,NA,"37.1074900000","-111.9068500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095844",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4951850-0801-4-C/results/970095844/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:15","STORET",7,NA,2022-08-01 18:27:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",37.10749,-111.90685,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-4951850-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"12:52:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-4951850","PARIA R AT US89 XING",NA,NA,NA,NA,"37.1074900000","-111.9068500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095851",NA,"as N","Nitrogen","Total","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4951850-0928-4-C/results/970095851/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:16","STORET",7,NA,2022-09-28 19:52:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.1074900000","-111.9068500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",37.10749,-111.90685,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4951855-0410-4-C","Sample-Routine","Water",NA,2022-04-10,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095857","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951855-0410-4-C/results/970095857/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:16","STORET",7,NA,2022-04-10 21:25:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4951855-0410-4-C","Sample-Routine","Water",NA,2022-04-10,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095876","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951855-0410-4-C/results/970095876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:17","STORET",7,NA,2022-04-10 21:25:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4951855-0516-4-C","Sample-Routine","Water",NA,2022-05-16,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095893","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951855-0516-4-C/results/970095893/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:17","STORET",7,NA,2022-05-16 22:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4951855-0516-4-C","Sample-Routine","Water",NA,2022-05-16,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095896","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951855-0516-4-C/results/970095896/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:17","STORET",7,NA,2022-05-16 22:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4951855-0606-4-C","Sample-Routine","Water",NA,2022-06-06,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095905","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951855-0606-4-C/results/970095905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:18","STORET",7,NA,2022-06-06 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4951855-0606-4-C","Sample-Routine","Water",NA,2022-06-06,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095919","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951855-0606-4-C/results/970095919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:18","STORET",7,NA,2022-06-06 21:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4951855-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095939","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951855-0719-4-C/results/970095939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:19","STORET",7,NA,2022-07-19 18:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4951855-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095943",NA,"as N","Nitrogen","Dissolved","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951855-0719-4-C/results/970095943/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:19","STORET",7,NA,2022-07-19 18:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4951855-0828-4-C","Sample-Routine","Water",NA,2022-08-28,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095959","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951855-0828-4-C/results/970095959/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:19","STORET",7,NA,2022-08-28 19:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4951855-0828-4-C","Sample-Routine","Water",NA,2022-08-28,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095963","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951855-0828-4-C/results/970095963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:19","STORET",7,NA,2022-08-28 19:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4951855-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"14:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095973","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951855-0919-4-C/results/970095973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:20","STORET",7,NA,2022-09-19 21:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4951855-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"14:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951855","Sheep Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5713700000","-112.2010300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095976","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951855-0919-4-C/results/970095976/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:20","STORET",7,NA,2022-09-19 21:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5713700000","-112.2010300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57137,-112.20103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4951857-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970095992","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951857-0411-4-C/results/970095992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:21","STORET",7,NA,2022-04-11 17:40:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4951857-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096006","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4951857-0411-4-C/results/970096006/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:21","STORET",7,NA,2022-04-11 17:40:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4951857-0516-4-C","Sample-Routine","Water",NA,2022-05-16,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096023","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951857-0516-4-C/results/970096023/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:22","STORET",7,NA,2022-05-16 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4951857-0516-4-C","Sample-Routine","Water",NA,2022-05-16,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096026","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4951857-0516-4-C/results/970096026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:22","STORET",7,NA,2022-05-16 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4951857-0606-4-C","Sample-Routine","Water",NA,2022-06-06,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096048","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951857-0606-4-C/results/970096048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:22","STORET",7,NA,2022-06-06 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4951857-0606-4-C","Sample-Routine","Water",NA,2022-06-06,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096053","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4951857-0606-4-C/results/970096053/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:22","STORET",7,NA,2022-06-06 19:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4951857-0714-4-C","Sample-Routine","Water",NA,2022-07-14,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096065","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951857-0714-4-C/results/970096065/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:23","STORET",7,NA,2022-07-14 18:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13588","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4951857-0714-4-C","Sample-Routine","Water",NA,2022-07-14,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096068",NA,"as N","Nitrogen","Dissolved","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4951857-0714-4-C/results/970096068/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:23","STORET",7,NA,2022-07-14 18:45:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13589","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4951857-0825-4-C","Sample-Routine","Water",NA,2022-08-25,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096098","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951857-0825-4-C/results/970096098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:24","STORET",7,NA,2022-08-25 18:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13590","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4951857-0825-4-C","Sample-Routine","Water",NA,2022-08-25,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096100","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4951857-0825-4-C/results/970096100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:24","STORET",7,NA,2022-08-25 18:00:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13591","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4951857-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096111","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951857-0919-4-C/results/970096111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:24","STORET",7,NA,2022-09-19 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13592","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4951857-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4951857","Yellow Ck bl Spring in Bryce Cyn NP",NA,NA,NA,NA,"37.5744200000","-112.1410300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096112","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4951857-0919-4-C/results/970096112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:24","STORET",7,NA,2022-09-19 18:30:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.5744200000","-112.1410300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.57442,-112.14103,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13593","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-4952370-0615-4-C","Sample-Routine","Water",NA,2022-06-15,"18:15:00","MST",NA,NA,NA,"Surface","0.418","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952370","COLORADO R AB DARK CANYON",NA,NA,NA,NA,"37.8977700000","-110.2051400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096132",NA,"as N","Nitrogen","Dissolved","0.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-4952370-0615-4-C/results/970096132/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:28","STORET",7,NA,2022-06-16 01:15:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"37.8977700000","-110.2051400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.92,"MG/L","Numeric","Not Reviewed","Uncensored",37.89777,-110.20514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.418,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13594","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-4952370-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"13:31:00","MST",NA,NA,NA,"Surface","1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952370","COLORADO R AB DARK CANYON",NA,NA,NA,NA,"37.8977700000","-110.2051400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096179",NA,"as N","Nitrogen","Dissolved","0.778","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-4952370-0921-4-C/results/970096179/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:30","STORET",7,NA,2022-09-21 20:31:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"37.8977700000","-110.2051400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.778,"MG/L","Numeric","Not Reviewed","Uncensored",37.89777,-110.20514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13595","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4952380-0420-4-C","Sample-Routine","Water",NA,2022-04-20,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096193",NA,"as N","Nitrogen","Total","0.603","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4952380-0420-4-C/results/970096193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:30","STORET",7,NA,2022-04-20 16:55:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.603,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13596","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4952380-0420-4-C","Sample-Routine","Water",NA,2022-04-20,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096203",NA,"as N","Nitrogen","Dissolved","0.874","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4952380-0420-4-C/results/970096203/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:30","STORET",7,NA,2022-04-20 16:55:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.874,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13597","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4952380-0526-4-C","Sample-Routine","Water",NA,2022-05-26,"17:49:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096222",NA,"as N","Nitrogen","Dissolved","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4952380-0526-4-C/results/970096222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:31","STORET",7,NA,2022-05-27 00:49:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13598","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4952380-0526-4-C","Sample-Routine","Water",NA,2022-05-26,"17:49:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096235",NA,"as N","Nitrogen","Total","0.543","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4952380-0526-4-C/results/970096235/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:31","STORET",7,NA,2022-05-27 00:49:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.543,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13599","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4952380-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096259",NA,"as N","Nitrogen","Total","0.477","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4952380-0630-4-C/results/970096259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:32","STORET",7,NA,2022-06-30 16:30:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.477,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13600","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4952380-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096275",NA,"as N","Nitrogen","Dissolved","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4952380-0630-4-C/results/970096275/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:32","STORET",7,NA,2022-06-30 16:30:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13601","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4952380-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"07:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096294",NA,"as N","Nitrogen","Total","0.564","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4952380-0727-4-C/results/970096294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:33","STORET",7,NA,2022-07-27 14:25:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.564,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13602","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4952380-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"07:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096311",NA,"as N","Nitrogen","Dissolved","0.599","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4952380-0727-4-C/results/970096311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:33","STORET",7,NA,2022-07-27 14:25:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.599,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13603","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4952380-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"16:08:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096316",NA,"as N","Nitrogen","Total","0.663","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4952380-0818-4-C/results/970096316/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:33","STORET",7,NA,2022-08-18 23:08:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.663,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13604","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4952380-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"16:08:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952380","COLORADO R. BL BIG DROP #3 RAPIDS",NA,NA,NA,NA,"38.0708200000","-110.0470700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096333",NA,"as N","Nitrogen","Dissolved","0.955","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4952380-0818-4-C/results/970096333/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:34","STORET",7,NA,2022-08-18 23:08:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"38.0708200000","-110.0470700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.955,"MG/L","Numeric","Not Reviewed","Uncensored",38.07082,-110.04707,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13605","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4952400-0420-4-C","Sample-Routine","Water",NA,2022-04-20,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096355",NA,"as N","Nitrogen","Total","0.672","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4952400-0420-4-C/results/970096355/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:34","STORET",7,NA,2022-04-20 18:40:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.672,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13606","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4952400-0420-4-C","Sample-Routine","Water",NA,2022-04-20,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096362",NA,"as N","Nitrogen","Dissolved","0.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4952400-0420-4-C/results/970096362/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:35","STORET",7,NA,2022-04-20 18:40:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.73,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13607","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4952400-0527-4-C","Sample-Routine","Water",NA,2022-05-27,"08:36:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096393",NA,"as N","Nitrogen","Total","0.506","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4952400-0527-4-C/results/970096393/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:35","STORET",7,NA,2022-05-27 15:36:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.506,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13608","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4952400-0527-4-C","Sample-Routine","Water",NA,2022-05-27,"08:36:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096397",NA,"as N","Nitrogen","Dissolved","0.566","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4952400-0527-4-C/results/970096397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:35","STORET",7,NA,2022-05-27 15:36:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.566,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13609","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4952400-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096419",NA,"as N","Nitrogen","Total","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4952400-0630-4-C/results/970096419/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:36","STORET",7,NA,2022-06-30 18:40:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13610","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4952400-0630-4-C","Sample-Routine","Water",NA,2022-06-30,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096436",NA,"as N","Nitrogen","Dissolved","0.564","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4952400-0630-4-C/results/970096436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:36","STORET",7,NA,2022-06-30 18:40:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.564,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13611","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4952400-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096455",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4952400-0727-4-C/results/970096455/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:37","STORET",7,NA,2022-07-27 15:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13612","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4952400-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096472",NA,"as N","Nitrogen","Dissolved","1.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4952400-0727-4-C/results/970096472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:37","STORET",7,NA,2022-07-27 15:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.31,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13613","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4952400-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096490",NA,"as N","Nitrogen","Dissolved","0.674","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4952400-0818-4-C/results/970096490/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:38","STORET",7,NA,2022-08-18 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.674,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13614","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4952400-0818-4-C","Sample-Routine","Water",NA,2022-08-18,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4952400","COLORADO R AB CNFL / GREEN R",NA,NA,NA,NA,"38.1924900000","-109.8845700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096493",NA,"as N","Nitrogen","Total","0.666","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4952400-0818-4-C/results/970096493/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:38","STORET",7,NA,2022-08-18 22:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.1924900000","-109.8845700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.666,"MG/L","Numeric","Not Reviewed","Uncensored",38.19249,-109.88457,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13615","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-4952940-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"17:25:00","MST",NA,NA,NA,"Surface","1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096535",NA,"as N","Nitrogen","Dissolved","0.607","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-4952940-0614-4-C/results/970096535/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:39","STORET",7,NA,2022-06-15 00:25:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.607,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13616","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-4952940-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"14:00:00","MST",NA,NA,NA,"Surface","1","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096547",NA,"as N","Nitrogen","Dissolved","0.974","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-4952940-0920-4-C/results/970096547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:40","STORET",7,NA,2022-09-20 21:00:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.974,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13617","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANJUANR220614-4953000-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Division of Water Quality","UTAHDWQ_WQX-4953000","SAN JUAN R AT MEXICAN HAT US163 XING",NA,NA,NA,NA,"37.1469500000","-109.8536700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096615","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANJUANR220614-4953000-0614-4-C/results/970096615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:41","STORET",7,NA,2022-06-14 17:15:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.1469500000","-109.8536700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.14695,-109.85367,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13618","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANJUANR220614-4953001-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Division of Water Quality","UTAHDWQ_WQX-4953001","Equipment Blank-Animas/San Juan Rivers Multijurisdictional Coordinated Monitoring",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096647","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANJUANR220614-4953001-0614-4-C/results/970096647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:42","STORET",7,NA,2022-06-14 18:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13619","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220417-4953060-0420-4-C","Sample-Routine","Water",NA,2022-04-20,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096678","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953060-0420-4-C/results/970096678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:43","STORET",7,NA,2022-04-20 18:30:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13620","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220417-4953060-0420-4-C","Sample-Routine","Water",NA,2022-04-20,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096703","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953060-0420-4-C/results/970096703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:44","STORET",7,NA,2022-04-20 18:30:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13621","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4953060-0520-4-C","Sample-Routine","Water",NA,2022-05-20,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096717","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4953060-0520-4-C/results/970096717/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:44","STORET",7,NA,2022-05-20 18:00:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13622","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4953060-0520-4-C","Sample-Routine","Water",NA,2022-05-20,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953060","LIME CK AT VALLEY OF THE GODS ROAD XING",NA,NA,NA,NA,"37.2358300000","-109.8142900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096720","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4953060-0520-4-C/results/970096720/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:44","STORET",7,NA,2022-05-20 18:00:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2358300000","-109.8142900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.23583,-109.81429,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13623","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220417-4953193-0427-4-C","Sample-Routine","Water",NA,2022-04-27,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096746","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953193-0427-4-C/results/970096746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:45","STORET",7,NA,2022-04-27 18:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13624","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220417-4953193-0427-4-C","Sample-Routine","Water",NA,2022-04-27,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096756","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953193-0427-4-C/results/970096756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:45","STORET",7,NA,2022-04-27 18:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13625","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4953193-0513-4-C","Sample-Routine","Water",NA,2022-05-13,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096771",NA,"as N","Nitrogen","Total","0.196","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4953193-0513-4-C/results/970096771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:46","STORET",7,NA,2022-05-13 20:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.196,"MG/L","Numeric","Pass","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13626","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4953193-0513-4-C","Sample-Routine","Water",NA,2022-05-13,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953193","ARCH CK 1 MI AB CANYON MOUTH",NA,NA,NA,NA,"37.5475300000","-109.6781300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096799",NA,"as N","Nitrogen","Dissolved","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4953193-0513-4-C/results/970096799/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:46","STORET",7,NA,2022-05-13 20:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5475300000","-109.6781300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",37.54753,-109.67813,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13627","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220417-4953205-0427-4-C","Sample-Routine","Water",NA,2022-04-27,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096810",NA,"as N","Nitrogen","Dissolved","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953205-0427-4-C/results/970096810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:47","STORET",7,NA,2022-04-27 19:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13628","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220417-4953205-0427-4-C","Sample-Routine","Water",NA,2022-04-27,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953205","N FK MULE CYN CK AB HIGHWAY",NA,NA,NA,NA,"37.5443500000","-109.7290300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096829",NA,"as N","Nitrogen","Total","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220417-4953205-0427-4-C/results/970096829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:48","STORET",7,NA,2022-04-27 19:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.5443500000","-109.7290300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",37.54435,-109.72903,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13629","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SANJUANR220614-4953250-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Division of Water Quality","UTAHDWQ_WQX-4953250","SAN JUAN R AT SAND ISLAND",NA,NA,NA,NA,"37.2602800000","-109.6137300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096896",NA,"as N","Nitrogen","Total","0.173","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SANJUANR220614-4953250-0614-4-C/results/970096896/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:49","STORET",7,NA,2022-06-14 18:30:00,NA,"River/Stream",NA,"14080201",NA,NA,NA,NA,"37.2602800000","-109.6137300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.173,"MG/L","Numeric","Pass","Uncensored",37.26028,-109.61373,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13630","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-4953980-0513-4-C","Sample-Routine","Water",NA,2022-05-13,"09:36:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096925","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4953980-0513-4-C/results/970096925/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:50","STORET",7,NA,2022-05-13 16:36:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13631","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-4953980-0513-4-C","Sample-Routine","Water",NA,2022-05-13,"09:36:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096931","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4953980-0513-4-C/results/970096931/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:50","STORET",7,NA,2022-05-13 16:36:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13632","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-4953980-0626-4-C","Sample-Routine","Water",NA,2022-06-26,"17:51:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096939","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4953980-0626-4-C/results/970096939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:51","STORET",7,NA,2022-06-27 00:51:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13633","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-4953980-0626-4-C","Sample-Routine","Water",NA,2022-06-26,"17:51:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096941",NA,"as N","Nitrogen","Dissolved","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4953980-0626-4-C/results/970096941/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:51","STORET",7,NA,2022-06-27 00:51:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13634","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-4953980-0716-4-C","Sample-Routine","Water",NA,2022-07-16,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096973","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4953980-0716-4-C/results/970096973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:52","STORET",7,NA,2022-07-16 22:00:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13635","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-4953980-0716-4-C","Sample-Routine","Water",NA,2022-07-16,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096984",NA,"as N","Nitrogen","Total","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4953980-0716-4-C/results/970096984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:52","STORET",7,NA,2022-07-16 22:00:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13636","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-4953980-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"16:42:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970096997",NA,"as N","Nitrogen","Total","0.907","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4953980-0801-4-C/results/970096997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:53","STORET",7,NA,2022-08-01 23:42:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.907,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13637","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-4953980-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"16:42:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097004",NA,"as N","Nitrogen","Dissolved","0.865","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4953980-0801-4-C/results/970097004/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:53","STORET",7,NA,2022-08-01 23:42:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.865,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13638","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-4953980-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"15:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097025","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4953980-0927-4-C/results/970097025/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:53","STORET",7,NA,2022-09-27 22:35:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13639","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-4953980-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"15:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-4953980","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097034",NA,"as N","Nitrogen","Dissolved","0.513","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4953980-0927-4-C/results/970097034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:53","STORET",7,NA,2022-09-27 22:35:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.513,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13640","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-4953981-0513-4-C","Sample-Routine","Water",NA,2022-05-13,"10:04:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097058","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4953981-0513-4-C/results/970097058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:54","STORET",7,NA,2022-05-13 17:04:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13641","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-4953981-0513-4-C","Sample-Routine","Water",NA,2022-05-13,"10:04:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097059","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-4953981-0513-4-C/results/970097059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:54","STORET",7,NA,2022-05-13 17:04:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13642","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-4953981-0626-4-C","Sample-Routine","Water",NA,2022-06-26,"18:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097075",NA,"as N","Nitrogen","Total","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4953981-0626-4-C/results/970097075/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:55","STORET",7,NA,2022-06-27 01:15:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13643","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-4953981-0626-4-C","Sample-Routine","Water",NA,2022-06-26,"18:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097091","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-4953981-0626-4-C/results/970097091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:55","STORET",7,NA,2022-06-27 01:15:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13644","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-4953981-0716-4-C","Sample-Routine","Water",NA,2022-07-16,"15:17:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097101",NA,"as N","Nitrogen","Total","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL | pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4953981-0716-4-C/results/970097101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:56","STORET",7,NA,2022-07-16 22:17:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13645","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-4953981-0716-4-C","Sample-Routine","Water",NA,2022-07-16,"15:17:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097103","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-4953981-0716-4-C/results/970097103/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:56","STORET",7,NA,2022-07-16 22:17:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13646","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-4953981-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"16:58:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097146",NA,"as N","Nitrogen","Total","0.904","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4953981-0801-4-C/results/970097146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:57","STORET",7,NA,2022-08-01 23:58:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.904,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13647","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-4953981-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"16:58:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097150",NA,"as N","Nitrogen","Dissolved","0.896","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-4953981-0801-4-C/results/970097150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:57","STORET",7,NA,2022-08-01 23:58:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.896,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13648","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-4953981-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"15:48:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097157",NA,"as N","Nitrogen","Total","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4953981-0927-4-C/results/970097157/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:58","STORET",7,NA,2022-09-27 22:48:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13649","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-4953981-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"15:48:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-4953981","UPPER VALLEY CREEK AB CNFL/ NORTH CREEK Replicate of 4953980",NA,NA,NA,NA,"37.7647100000","-111.6835100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097168",NA,"as N","Nitrogen","Dissolved","0.368","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-4953981-0927-4-C/results/970097168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:30:58","STORET",7,NA,2022-09-27 22:48:00,NA,"River/Stream","Replicate of 4953980","14070005",NA,NA,NA,NA,"37.7647100000","-111.6835100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.368,"MG/L","Numeric","Not Reviewed","Uncensored",37.76471,-111.68351,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13650","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4954770-0418-4-C","Sample-Routine","Water",NA,2022-04-18,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097205",NA,"as N","Nitrogen","Dissolved","0.203","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954770-0418-4-C/results/970097205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:01","STORET",7,NA,2022-04-18 16:50:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.203,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13651","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4954770-0418-4-C","Sample-Routine","Water",NA,2022-04-18,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097209",NA,"as N","Nitrogen","Total","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954770-0418-4-C/results/970097209/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:01","STORET",7,NA,2022-04-18 16:50:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13652","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4954770-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097230",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954770-0509-4-C/results/970097230/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:02","STORET",7,NA,2022-05-09 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13653","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4954770-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097240",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954770-0509-4-C/results/970097240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:02","STORET",7,NA,2022-05-09 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13654","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4954770-0603-4-C","Sample-Routine","Water",NA,2022-06-03,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097252",NA,"as N","Nitrogen","Total","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954770-0603-4-C/results/970097252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:03","STORET",7,NA,2022-06-03 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13655","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4954770-0603-4-C","Sample-Routine","Water",NA,2022-06-03,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097255",NA,"as N","Nitrogen","Dissolved","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954770-0603-4-C/results/970097255/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:03","STORET",7,NA,2022-06-03 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13656","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4954770-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097264",NA,"as N","Nitrogen","Dissolved","0.266","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954770-0718-4-C/results/970097264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:04","STORET",7,NA,2022-07-18 18:05:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.266,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13657","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4954770-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097277",NA,"as N","Nitrogen","Total","0.209","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954770-0718-4-C/results/970097277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:04","STORET",7,NA,2022-07-18 18:05:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.209,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13658","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4954770-0813-4-C","Sample-Routine","Water",NA,2022-08-13,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097303",NA,"as N","Nitrogen","Dissolved","0.289","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954770-0813-4-C/results/970097303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:05","STORET",7,NA,2022-08-13 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.289,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13659","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4954770-0813-4-C","Sample-Routine","Water",NA,2022-08-13,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097304",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954770-0813-4-C/results/970097304/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:05","STORET",7,NA,2022-08-13 19:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13660","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4954770-0905-4-C","Sample-Routine","Water",NA,2022-09-05,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097314",NA,"as N","Nitrogen","Total","0.212","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954770-0905-4-C/results/970097314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:05","STORET",7,NA,2022-09-05 19:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.212,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13661","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4954770-0905-4-C","Sample-Routine","Water",NA,2022-09-05,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954770","SULPHUR CREEK AB CONFL W/ FREMONT RIVER IN PICNIC AREA",NA,NA,NA,NA,"38.2872000000","-111.2476700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097321",NA,"as N","Nitrogen","Dissolved","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954770-0905-4-C/results/970097321/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:06","STORET",7,NA,2022-09-05 19:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2872000000","-111.2476700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",38.2872,-111.24767,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13662","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4954775-0418-4-C","Sample-Routine","Water",NA,2022-04-18,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097335",NA,"as N","Nitrogen","Total","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954775-0418-4-C/results/970097335/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:06","STORET",7,NA,2022-04-18 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13663","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4954775-0418-4-C","Sample-Routine","Water",NA,2022-04-18,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097353",NA,"as N","Nitrogen","Dissolved","0.175","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954775-0418-4-C/results/970097353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:07","STORET",7,NA,2022-04-18 22:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.175,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13664","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4954775-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097365",NA,"as N","Nitrogen","Dissolved","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954775-0509-4-C/results/970097365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:07","STORET",7,NA,2022-05-09 16:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13665","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4954775-0509-4-C","Sample-Routine","Water",NA,2022-05-09,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097370",NA,"as N","Nitrogen","Total","0.225","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954775-0509-4-C/results/970097370/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:07","STORET",7,NA,2022-05-09 16:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.225,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13666","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4954775-0603-4-C","Sample-Routine","Water",NA,2022-06-03,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097383",NA,"as N","Nitrogen","Total","0.222","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954775-0603-4-C/results/970097383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:08","STORET",7,NA,2022-06-03 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.222,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13667","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4954775-0603-4-C","Sample-Routine","Water",NA,2022-06-03,"14:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097391",NA,"as N","Nitrogen","Dissolved","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954775-0603-4-C/results/970097391/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:08","STORET",7,NA,2022-06-03 21:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13668","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4954775-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097403",NA,"as N","Nitrogen","Total","0.167","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954775-0718-4-C/results/970097403/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:09","STORET",7,NA,2022-07-18 19:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.167,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13669","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4954775-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097416",NA,"as N","Nitrogen","Dissolved","0.255","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954775-0718-4-C/results/970097416/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:09","STORET",7,NA,2022-07-18 19:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.255,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13670","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4954775-0813-4-C","Sample-Routine","Water",NA,2022-08-13,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097437",NA,"as N","Nitrogen","Dissolved","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954775-0813-4-C/results/970097437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:10","STORET",7,NA,2022-08-13 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13671","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4954775-0813-4-C","Sample-Routine","Water",NA,2022-08-13,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097439",NA,"as N","Nitrogen","Total","0.213","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954775-0813-4-C/results/970097439/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:10","STORET",7,NA,2022-08-13 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.213,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13672","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4954775-0905-4-C","Sample-Routine","Water",NA,2022-09-05,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097452",NA,"as N","Nitrogen","Total","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954775-0905-4-C/results/970097452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:10","STORET",7,NA,2022-09-05 18:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13673","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4954775-0905-4-C","Sample-Routine","Water",NA,2022-09-05,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954775","SULPHUR CK BL ROAD TO GOOSENECKS OVERLOOK IN CRNP",NA,NA,NA,NA,"38.2977600000","-111.2985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097458",NA,"as N","Nitrogen","Dissolved","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954775-0905-4-C/results/970097458/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:11","STORET",7,NA,2022-09-05 18:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.2977600000","-111.2985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",38.29776,-111.29851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13674","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4954780-0418-4-C","Sample-Routine","Water",NA,2022-04-18,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097475","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954780-0418-4-C/results/970097475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:11","STORET",7,NA,2022-04-18 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13675","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4954780-0418-4-C","Sample-Routine","Water",NA,2022-04-18,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097479","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954780-0418-4-C/results/970097479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:11","STORET",7,NA,2022-04-18 18:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13676","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4954780-0513-4-C","Sample-Routine","Water",NA,2022-05-13,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097497","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954780-0513-4-C/results/970097497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:12","STORET",7,NA,2022-05-13 20:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13677","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4954780-0513-4-C","Sample-Routine","Water",NA,2022-05-13,"13:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097506","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954780-0513-4-C/results/970097506/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:12","STORET",7,NA,2022-05-13 20:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13678","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4954780-0603-4-C","Sample-Routine","Water",NA,2022-06-03,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097514",NA,"as N","Nitrogen","Dissolved","0.162","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954780-0603-4-C/results/970097514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:13","STORET",7,NA,2022-06-03 17:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.162,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13679","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4954780-0603-4-C","Sample-Routine","Water",NA,2022-06-03,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097519",NA,"as N","Nitrogen","Total","0.165","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954780-0603-4-C/results/970097519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:13","STORET",7,NA,2022-06-03 17:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.165,"MG/L","Numeric","Pass","Uncensored",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13680","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995120-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097533",NA,"as N","Nitrogen","Total","3.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995120-0411-4-C/results/970097533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:14","STORET",7,NA,2022-04-11 22:00:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13681","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995120-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097547",NA,"as N","Nitrogen","Dissolved","3.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995120-0411-4-C/results/970097547/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:14","STORET",7,NA,2022-04-11 22:00:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13682","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995120-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097550",NA,"as N","Nitrogen","Dissolved","2.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995120-0517-4-C/results/970097550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:14","STORET",7,NA,2022-05-17 20:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13683","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995120-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097552",NA,"as N","Nitrogen","Total","2.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995120-0517-4-C/results/970097552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:14","STORET",7,NA,2022-05-17 20:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.66,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13684","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995120-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097568",NA,"as N","Nitrogen","Total","2.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995120-0609-4-C/results/970097568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:15","STORET",7,NA,2022-06-09 19:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13685","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995120-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097583",NA,"as N","Nitrogen","Dissolved","2.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995120-0609-4-C/results/970097583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:16","STORET",7,NA,2022-06-09 19:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13686","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995120-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"14:00:00","MST",NA,NA,NA,"Surface","0.152","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097593",NA,"as N","Nitrogen","Dissolved","2.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995120-0720-4-C/results/970097593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:16","STORET",7,NA,2022-07-20 21:00:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.152,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13687","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995120-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"14:00:00","MST",NA,NA,NA,"Surface","0.152","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097600",NA,"as N","Nitrogen","Total","2.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995120-0720-4-C/results/970097600/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:17","STORET",7,NA,2022-07-20 21:00:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.152,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13688","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995120-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097602",NA,"as N","Nitrogen","Dissolved","2.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995120-0817-4-C/results/970097602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:17","STORET",7,NA,2022-08-17 20:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13689","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995120-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097607",NA,"as N","Nitrogen","Total","2.51","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995120-0817-4-C/results/970097607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:17","STORET",7,NA,2022-08-17 20:50:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.51,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13690","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995120-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097624",NA,"as N","Nitrogen","Total","2.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995120-0921-4-C/results/970097624/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:18","STORET",7,NA,2022-09-21 22:15:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13691","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995120-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995120","LINDON DRAIN AT CO RD XING AB UTLAKE",NA,NA,NA,NA,"40.3318900000","-111.7630400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097625",NA,"as N","Nitrogen","Dissolved","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995120-0921-4-C/results/970097625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:18","STORET",7,NA,2022-09-21 22:15:00,NA,"Canal Drainage",NA,"16020201",NA,NA,NA,NA,"40.3318900000","-111.7630400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.33189,-111.76304,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13692","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996044-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097652",NA,"as N","Nitrogen","Total","2.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996044-0411-4-C/results/970097652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:20","STORET",7,NA,2022-04-11 20:00:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13693","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996044-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097654",NA,"as N","Nitrogen","Dissolved","2.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996044-0411-4-C/results/970097654/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:20","STORET",7,NA,2022-04-11 20:00:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13694","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996044-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097662",NA,"as N","Nitrogen","Total","2.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996044-0517-4-C/results/970097662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:21","STORET",7,NA,2022-05-17 18:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13695","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996044-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097670",NA,"as N","Nitrogen","Dissolved","2.81","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996044-0517-4-C/results/970097670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:21","STORET",7,NA,2022-05-17 18:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.81,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13696","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996044-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097677",NA,"as N","Nitrogen","Dissolved","2.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996044-0609-4-C/results/970097677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:21","STORET",7,NA,2022-06-09 18:15:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13697","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996044-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097692",NA,"as N","Nitrogen","Total","2.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996044-0609-4-C/results/970097692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:22","STORET",7,NA,2022-06-09 18:15:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13698","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996044-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:40:00","MST",NA,NA,NA,"Surface","0.194","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097698",NA,"as N","Nitrogen","Total","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996044-0720-4-C/results/970097698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:22","STORET",7,NA,2022-07-20 18:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.194,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13699","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996044-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:40:00","MST",NA,NA,NA,"Surface","0.194","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097707",NA,"as N","Nitrogen","Dissolved","1.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996044-0720-4-C/results/970097707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:23","STORET",7,NA,2022-07-20 18:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.87,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.194,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13700","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996044-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097726",NA,"as N","Nitrogen","Total","2.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996044-0817-4-C/results/970097726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:24","STORET",7,NA,2022-08-17 17:45:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13701","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996044-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097728",NA,"as N","Nitrogen","Dissolved","2.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996044-0817-4-C/results/970097728/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:24","STORET",7,NA,2022-08-17 17:45:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13702","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996044-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097733",NA,"as N","Nitrogen","Total","2.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996044-0921-4-C/results/970097733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:24","STORET",7,NA,2022-09-21 18:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13703","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996044-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996044","Drainage Canal 0.5 mile bl I-15 at about 2500 West, Springville",NA,NA,NA,NA,"40.1766500000","-111.6562000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097737",NA,"as N","Nitrogen","Dissolved","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996044-0921-4-C/results/970097737/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:25","STORET",7,NA,2022-09-21 18:40:00,NA,"Canal Drainage",NA,"16020202",NA,NA,NA,NA,"40.1766500000","-111.6562000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.17665,-111.6562,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13704","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4954780-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097757","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954780-0718-4-C/results/970097757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:26","STORET",7,NA,2022-07-18 16:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13705","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4954780-0718-4-C","Sample-Routine","Water",NA,2022-07-18,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097763","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4954780-0718-4-C/results/970097763/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:26","STORET",7,NA,2022-07-18 16:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13706","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4954780-0812-4-C","Sample-Routine","Water",NA,2022-08-12,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097782","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954780-0812-4-C/results/970097782/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:27","STORET",7,NA,2022-08-12 17:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13707","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4954780-0812-4-C","Sample-Routine","Water",NA,2022-08-12,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097783","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4954780-0812-4-C/results/970097783/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:27","STORET",7,NA,2022-08-12 17:15:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13708","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4954780-0905-4-C","Sample-Routine","Water",NA,2022-09-05,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097801","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954780-0905-4-C/results/970097801/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:28","STORET",7,NA,2022-09-05 21:05:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13709","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4954780-0905-4-C","Sample-Routine","Water",NA,2022-09-05,"14:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954780","Pleasant Ck at Pleasant Ck Road xing at South Draw",NA,NA,NA,NA,"38.1801000000","-111.1808700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097814","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954780-0905-4-C/results/970097814/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:28","STORET",7,NA,2022-09-05 21:05:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.1801000000","-111.1808700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",55,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.1801,-111.18087,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13710","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4954795-0416-4-C","Sample-Routine","Water",NA,2022-04-16,"16:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097830","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954795-0416-4-C/results/970097830/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:29","STORET",7,NA,2022-04-16 23:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13711","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4954795-0416-4-C","Sample-Routine","Water",NA,2022-04-16,"16:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097848","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4954795-0416-4-C/results/970097848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:30","STORET",7,NA,2022-04-16 23:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13712","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4954795-0515-4-C","Sample-Routine","Water",NA,2022-05-15,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097854","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954795-0515-4-C/results/970097854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:30","STORET",7,NA,2022-05-15 18:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13713","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4954795-0515-4-C","Sample-Routine","Water",NA,2022-05-15,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097860","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4954795-0515-4-C/results/970097860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:30","STORET",7,NA,2022-05-15 18:45:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13714","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4954795-0605-4-C","Sample-Routine","Water",NA,2022-06-05,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097875",NA,"as N","Nitrogen","Dissolved","0.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954795-0605-4-C/results/970097875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:31","STORET",7,NA,2022-06-05 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.22,"MG/L","Numeric","Not Reviewed","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13715","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4954795-0605-4-C","Sample-Routine","Water",NA,2022-06-05,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097877",NA,"as N","Nitrogen","Total","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4954795-0605-4-C/results/970097877/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:31","STORET",7,NA,2022-06-05 19:00:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13716","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4954795-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097884",NA,"as N","Nitrogen","Dissolved","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954795-0926-4-C/results/970097884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:32","STORET",7,NA,2022-09-26 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13717","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4954795-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4954795","Oak Creek above Oak Creek Dam",NA,NA,NA,NA,"38.0844000000","-111.1404200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097895",NA,"as N","Nitrogen","Total","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4954795-0926-4-C/results/970097895/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:32","STORET",7,NA,2022-09-26 17:30:00,NA,"River/Stream",NA,"14070003",NA,NA,NA,NA,"38.0844000000","-111.1404200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",38.0844,-111.14042,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13718","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955780-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097922","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955780-0601-4-C/results/970097922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:33","STORET",7,NA,2022-06-01 18:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13719","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955780-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955780","INDIAN CK AT Newspaper Rock and SHAY CANYON",NA,NA,NA,NA,"38.0088800000","-109.5384500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097924",NA,"as N","Nitrogen","Dissolved","0.481","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955780-0601-4-C/results/970097924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:33","STORET",7,NA,2022-06-01 18:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0088800000","-109.5384500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.481,"MG/L","Numeric","Not Reviewed","Uncensored",38.00888,-109.53845,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13720","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4955790-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097936",NA,"as N","Nitrogen","Total","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955790-0504-4-C/results/970097936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:34","STORET",7,NA,2022-05-04 18:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13721","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4955790-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097942","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955790-0504-4-C/results/970097942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:34","STORET",7,NA,2022-05-04 18:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13722","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955790-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097969","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955790-0601-4-C/results/970097969/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:35","STORET",7,NA,2022-06-01 18:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13723","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955790-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955790","Indian Ck 1/2 mile south of Newspaper Rock",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097972","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955790-0601-4-C/results/970097972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:35","STORET",7,NA,2022-06-01 18:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13724","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4955791-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970097997",NA,"as N","Nitrogen","Total","0.301","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955791-0504-4-C/results/970097997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:36","STORET",7,NA,2022-05-04 18:30:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.301,"MG/L","Numeric","Not Reviewed","Uncensored",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13725","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4955791-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098019","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955791-0504-4-C/results/970098019/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:37","STORET",7,NA,2022-05-04 18:30:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13726","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955791-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098033","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955791-0601-4-C/results/970098033/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:38","STORET",7,NA,2022-06-01 18:00:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13727","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955791-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955791","Indian Ck 1/2 mile south of Newspaper Rock Replicate of 4955790",NA,NA,NA,NA,"37.9830500000","-109.5167800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098041","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955791-0601-4-C/results/970098041/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:38","STORET",7,NA,2022-06-01 18:00:00,NA,"River/Stream","Replicate of 4955790","14030005",NA,NA,NA,NA,"37.9830500000","-109.5167800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.98305,-109.51678,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13728","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4955810-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098073","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955810-0504-4-C/results/970098073/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:40","STORET",7,NA,2022-05-04 20:00:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13729","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955810-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098089","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955810-0601-4-C/results/970098089/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:40","STORET",7,NA,2022-06-01 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13730","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955810-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955810","N COTTONWOOD CK AT BEEF BASIN ROAD XING",NA,NA,NA,NA,"38.0283200000","-109.5898500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098098","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955810-0601-4-C/results/970098098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:41","STORET",7,NA,2022-06-01 20:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.0283200000","-109.5898500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.02832,-109.58985,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13731","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4955815-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098149","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955815-0504-4-C/results/970098149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:42","STORET",7,NA,2022-05-04 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13732","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220504-4955815-0504-4-C","Sample-Routine","Water",NA,2022-05-04,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098151","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220504-4955815-0504-4-C/results/970098151/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:42","STORET",7,NA,2022-05-04 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13733","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955815-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098153","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955815-0601-4-C/results/970098153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:43","STORET",7,NA,2022-06-01 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13734","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMMOAB220601-4955815-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-4955815","N COTTONWOOD CK ~ 3 MI AB BEEF BASIN RD XING (UT09ST-258)",NA,NA,NA,NA,"37.9930700000","-109.5991300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098181","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMMOAB220601-4955815-0601-4-C/results/970098181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:44","STORET",7,NA,2022-06-01 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"37.9930700000","-109.5991300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.99307,-109.59913,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13735","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4956290-0421-4-C","Sample-Routine","Water",NA,2022-04-21,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098205",NA,"as N","Nitrogen","Total","0.655","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4956290-0421-4-C/results/970098205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:45","STORET",7,NA,2022-04-21 20:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.655,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13736","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-4956290-0421-4-C","Sample-Routine","Water",NA,2022-04-21,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098206",NA,"as N","Nitrogen","Dissolved","0.776","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-4956290-0421-4-C/results/970098206/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:45","STORET",7,NA,2022-04-21 20:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.776,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13737","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4956290-0527-4-C","Sample-Routine","Water",NA,2022-05-27,"14:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098228",NA,"as N","Nitrogen","Dissolved","0.602","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4956290-0527-4-C/results/970098228/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:46","STORET",7,NA,2022-05-27 21:57:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.602,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13738","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4956290-0527-4-C","Sample-Routine","Water",NA,2022-05-27,"14:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098229",NA,"as N","Nitrogen","Total","0.534","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4956290-0527-4-C/results/970098229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:46","STORET",7,NA,2022-05-27 21:57:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.534,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13739","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4956290-0701-4-C","Sample-Routine","Water",NA,2022-07-01,"14:02:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098251",NA,"as N","Nitrogen","Dissolved","0.714","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4956290-0701-4-C/results/970098251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:47","STORET",7,NA,2022-07-01 21:02:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.714,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13740","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-4956290-0701-4-C","Sample-Routine","Water",NA,2022-07-01,"14:02:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098279",NA,"as N","Nitrogen","Total","0.579","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-4956290-0701-4-C/results/970098279/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:48","STORET",7,NA,2022-07-01 21:02:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.579,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13741","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4956290-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"14:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098284",NA,"as N","Nitrogen","Total","0.931","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4956290-0727-4-C/results/970098284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:49","STORET",7,NA,2022-07-27 21:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.931,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13742","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4956290-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"14:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098296",NA,"as N","Nitrogen","Dissolved","0.865","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4956290-0727-4-C/results/970098296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:49","STORET",7,NA,2022-07-27 21:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.865,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13743","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4956290-0819-4-C","Sample-Routine","Water",NA,2022-08-19,"14:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098336",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4956290-0819-4-C/results/970098336/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:50","STORET",7,NA,2022-08-19 21:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13744","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-4956290-0819-4-C","Sample-Routine","Water",NA,2022-08-19,"14:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956290","COLORADO RIVER AT POTASH BOAT RAMP",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098342",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-4956290-0819-4-C/results/970098342/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:51","STORET",7,NA,2022-08-19 21:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13745","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4956291-0527-4-C","Sample-Routine","Water",NA,2022-05-27,"14:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098365",NA,"as N","Nitrogen","Total","0.502","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4956291-0527-4-C/results/970098365/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:52","STORET",7,NA,2022-05-27 21:57:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.502,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13746","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-4956291-0527-4-C","Sample-Routine","Water",NA,2022-05-27,"14:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098378",NA,"as N","Nitrogen","Dissolved","0.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-4956291-0527-4-C/results/970098378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:52","STORET",7,NA,2022-05-27 21:57:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.58,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13747","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4956291-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"14:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098400",NA,"as N","Nitrogen","Dissolved","0.896","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4956291-0727-4-C/results/970098400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:53","STORET",7,NA,2022-07-27 21:55:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.896,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13748","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-4956291-0727-4-C","Sample-Routine","Water",NA,2022-07-27,"14:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4956291","COLORADO RIVER AT POTASH BOAT RAMP Replicate of 4956290",NA,NA,NA,NA,"38.4669300000","-109.6662200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098407",NA,"as N","Nitrogen","Total","0.891","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-4956291-0727-4-C/results/970098407/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:53","STORET",7,NA,2022-07-27 21:55:00,NA,"River/Stream","Replicate of 4956290","14030005",NA,NA,NA,NA,"38.4669300000","-109.6662200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.891,"MG/L","Numeric","Not Reviewed","Uncensored",38.46693,-109.66622,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13749","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990110-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098424",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990110-0419-4-C/results/970098424/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:55","STORET",7,NA,2022-04-19 15:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13750","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990110-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098432",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990110-0419-4-C/results/970098432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:55","STORET",7,NA,2022-04-19 15:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13751","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990110-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098445",NA,"as N","Nitrogen","Total","1.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990110-0517-4-C/results/970098445/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:55","STORET",7,NA,2022-05-17 15:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.66,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13752","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990110-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098453",NA,"as N","Nitrogen","Dissolved","1.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990110-0517-4-C/results/970098453/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:56","STORET",7,NA,2022-05-17 15:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.57,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13753","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990110-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"08:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098463",NA,"as N","Nitrogen","Dissolved","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990110-0621-4-C/results/970098463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:56","STORET",7,NA,2022-06-21 15:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13754","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990110-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"08:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098474",NA,"as N","Nitrogen","Total","2.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990110-0621-4-C/results/970098474/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:56","STORET",7,NA,2022-06-21 15:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.16,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13755","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990110-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098492",NA,"as N","Nitrogen","Total","2.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990110-0719-4-C/results/970098492/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:57","STORET",7,NA,2022-07-19 15:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13756","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990110-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098499",NA,"as N","Nitrogen","Dissolved","2.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990110-0719-4-C/results/970098499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:57","STORET",7,NA,2022-07-19 15:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.34,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13757","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990110-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098510",NA,"as N","Nitrogen","Dissolved","1.89","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990110-0823-4-C/results/970098510/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:57","STORET",7,NA,2022-08-23 15:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.89,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13758","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990110-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098533",NA,"as N","Nitrogen","Dissolved","2.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990110-0920-4-C/results/970098533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:58","STORET",7,NA,2022-09-20 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.41,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13759","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990110-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990110","KAYS CK AT WEAVER LANE CROSSING",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098534",NA,"as N","Nitrogen","Total","2.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990110-0920-4-C/results/970098534/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:58","STORET",7,NA,2022-09-20 16:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.38,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13760","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990112-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098559",NA,"as N","Nitrogen","Dissolved","1.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990112-0419-4-C/results/970098559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:59","STORET",7,NA,2022-04-19 15:50:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.44,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13761","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990112-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"08:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098561",NA,"as N","Nitrogen","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990112-0419-4-C/results/970098561/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:59","STORET",7,NA,2022-04-19 15:50:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13762","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990112-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098583",NA,"as N","Nitrogen","Total","1.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990112-0517-4-C/results/970098583/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:59","STORET",7,NA,2022-05-17 16:00:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.62,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13763","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990112-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098585",NA,"as N","Nitrogen","Dissolved","1.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990112-0517-4-C/results/970098585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:31:59","STORET",7,NA,2022-05-17 16:00:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.64,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13764","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990112-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098599",NA,"as N","Nitrogen","Dissolved","2.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990112-0621-4-C/results/970098599/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:00","STORET",7,NA,2022-06-21 15:55:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13765","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990112-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098610",NA,"as N","Nitrogen","Total","2.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990112-0621-4-C/results/970098610/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:00","STORET",7,NA,2022-06-21 15:55:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.06,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13766","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990112-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098619",NA,"as N","Nitrogen","Total","2.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990112-0719-4-C/results/970098619/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:01","STORET",7,NA,2022-07-19 15:05:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13767","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990112-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098623",NA,"as N","Nitrogen","Dissolved","2.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990112-0719-4-C/results/970098623/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:01","STORET",7,NA,2022-07-19 15:05:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.32,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13768","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990112-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098648",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990112-0823-4-C/results/970098648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:02","STORET",7,NA,2022-08-23 15:55:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13769","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990112-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098678",NA,"as N","Nitrogen","Dissolved","2.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990112-0920-4-C/results/970098678/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:03","STORET",7,NA,2022-09-20 16:05:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.22,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13770","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990112-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990112","KAYS CK AT WEAVER LANE CROSSING Replicate of 4990110",NA,NA,NA,NA,"41.0405100000","-111.9976500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098681",NA,"as N","Nitrogen","Total","2.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990112-0920-4-C/results/970098681/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:03","STORET",7,NA,2022-09-20 16:05:00,NA,"River/Stream","Replicate of 4990110","16020102",NA,NA,NA,NA,"41.0405100000","-111.9976500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.46,"MG/L","Numeric","Not Reviewed","Uncensored",41.04051,-111.99765,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13771","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990135-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990135","Kay's Ck. at Valley View Dr. and 1850 N.",NA,NA,NA,NA,"41.0887100000","-111.9090400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098698",NA,"as N","Nitrogen","Dissolved","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990135-0419-4-C/results/970098698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:03","STORET",7,NA,2022-04-19 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0887100000","-111.9090400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",41.08871,-111.90904,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13772","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990135-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990135","Kay's Ck. at Valley View Dr. and 1850 N.",NA,NA,NA,NA,"41.0887100000","-111.9090400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098701",NA,"as N","Nitrogen","Total","0.436","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990135-0419-4-C/results/970098701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:03","STORET",7,NA,2022-04-19 18:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0887100000","-111.9090400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.436,"MG/L","Numeric","Not Reviewed","Uncensored",41.08871,-111.90904,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13773","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990137-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990137","Middle Fork Kays Creek at Fernwood Dr Xing",NA,NA,NA,NA,"41.0895200000","-111.9062800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098713",NA,"as N","Nitrogen","Dissolved","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990137-0621-4-C/results/970098713/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:04","STORET",7,NA,2022-06-21 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0895200000","-111.9062800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",41.08952,-111.90628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13774","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990137-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990137","Middle Fork Kays Creek at Fernwood Dr Xing",NA,NA,NA,NA,"41.0895200000","-111.9062800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098728",NA,"as N","Nitrogen","Total","0.522","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990137-0621-4-C/results/970098728/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:04","STORET",7,NA,2022-06-21 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0895200000","-111.9062800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.522,"MG/L","Numeric","Not Reviewed","Uncensored",41.08952,-111.90628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13775","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990190-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098750",NA,"as N","Nitrogen","Dissolved","0.638","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990190-0517-4-C/results/970098750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:05","STORET",7,NA,2022-05-17 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.638,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13776","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990190-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098758",NA,"as N","Nitrogen","Total","0.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990190-0517-4-C/results/970098758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:05","STORET",7,NA,2022-05-17 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.73,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13777","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990190-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098780",NA,"as N","Nitrogen","Dissolved","0.461","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990190-0621-4-C/results/970098780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:06","STORET",7,NA,2022-06-21 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.461,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13778","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990190-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"09:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098790",NA,"as N","Nitrogen","Total","0.542","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990190-0621-4-C/results/970098790/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:06","STORET",7,NA,2022-06-21 16:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.542,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13779","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990190-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098806",NA,"as N","Nitrogen","Dissolved","0.605","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990190-0719-4-C/results/970098806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:07","STORET",7,NA,2022-07-19 15:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.605,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13780","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990190-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098811",NA,"as N","Nitrogen","Total","0.671","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990190-0719-4-C/results/970098811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:07","STORET",7,NA,2022-07-19 15:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.671,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13781","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990190-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098818",NA,"as N","Nitrogen","Dissolved","0.363","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990190-0823-4-C/results/970098818/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:07","STORET",7,NA,2022-08-23 16:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.363,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13782","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990190-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098843",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990190-0920-4-C/results/970098843/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:08","STORET",7,NA,2022-09-20 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13783","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990190-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990190","HOLMES CK @ TERESA ST XING",NA,NA,NA,NA,"41.0228600000","-111.9668000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098852",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990190-0920-4-C/results/970098852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:09","STORET",7,NA,2022-09-20 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0228600000","-111.9668000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.02286,-111.9668,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13784","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990220-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098873",NA,"as N","Nitrogen","Dissolved","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990220-0419-4-C/results/970098873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:09","STORET",7,NA,2022-04-19 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13785","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990220-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098880",NA,"as N","Nitrogen","Total","0.358","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990220-0419-4-C/results/970098880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:09","STORET",7,NA,2022-04-19 17:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.358,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13786","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990220-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098894",NA,"as N","Nitrogen","Dissolved","0.337","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990220-0517-4-C/results/970098894/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:10","STORET",7,NA,2022-05-17 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.337,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13787","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990220-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098902",NA,"as N","Nitrogen","Total","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990220-0517-4-C/results/970098902/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:10","STORET",7,NA,2022-05-17 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13788","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990220-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098906",NA,"as N","Nitrogen","Total","0.276","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990220-0621-4-C/results/970098906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:10","STORET",7,NA,2022-06-21 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.276,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13789","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990220-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098929",NA,"as N","Nitrogen","Dissolved","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990220-0621-4-C/results/970098929/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:11","STORET",7,NA,2022-06-21 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13790","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990220-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098930",NA,"as N","Nitrogen","Dissolved","0.298","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990220-0719-4-C/results/970098930/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:11","STORET",7,NA,2022-07-19 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.298,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13791","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990220-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098933",NA,"as N","Nitrogen","Total","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990220-0719-4-C/results/970098933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:11","STORET",7,NA,2022-07-19 16:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13792","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990220-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098968",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990220-0823-4-C/results/970098968/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:12","STORET",7,NA,2022-08-23 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13793","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990220-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098980",NA,"as N","Nitrogen","Total","0.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990220-0920-4-C/results/970098980/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:13","STORET",7,NA,2022-09-20 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.21,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13794","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990220-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990220","Holmes Creek North Fork AB U.S. 89 at 3050 East xing",NA,NA,NA,NA,"41.0643900000","-111.9085700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098988",NA,"as N","Nitrogen","Dissolved","0.237","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990220-0920-4-C/results/970098988/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:13","STORET",7,NA,2022-09-20 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0643900000","-111.9085700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.237,"MG/L","Numeric","Not Reviewed","Uncensored",41.06439,-111.90857,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13795","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990225-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970098999",NA,"as N","Nitrogen","Dissolved","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990225-0419-4-C/results/970098999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:14","STORET",7,NA,2022-04-19 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13796","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990225-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099000",NA,"as N","Nitrogen","Total","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990225-0419-4-C/results/970099000/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:14","STORET",7,NA,2022-04-19 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13797","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990225-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099021",NA,"as N","Nitrogen","Dissolved","0.2","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990225-0517-4-C/results/970099021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:15","STORET",7,NA,2022-05-17 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13798","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990225-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099026",NA,"as N","Nitrogen","Total","0.208","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990225-0517-4-C/results/970099026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:15","STORET",7,NA,2022-05-17 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.208,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13799","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990225-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099052",NA,"as N","Nitrogen","Total","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990225-0621-4-C/results/970099052/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:16","STORET",7,NA,2022-06-21 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13800","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990225-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099062",NA,"as N","Nitrogen","Dissolved","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990225-0621-4-C/results/970099062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:16","STORET",7,NA,2022-06-21 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13801","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990225-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099076",NA,"as N","Nitrogen","Dissolved","0.19","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990225-0719-4-C/results/970099076/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:17","STORET",7,NA,2022-07-19 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.19,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13802","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990225-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099080",NA,"as N","Nitrogen","Total","0.196","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990225-0719-4-C/results/970099080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:17","STORET",7,NA,2022-07-19 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.196,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13803","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990225-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099100",NA,"as N","Nitrogen","Dissolved","0.161","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990225-0920-4-C/results/970099100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:18","STORET",7,NA,2022-09-20 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.161,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13804","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990225-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990225","SNOW CK @ 1300 N.",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099108","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990225-0920-4-C/results/970099108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:18","STORET",7,NA,2022-09-20 18:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13805","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990226-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099127",NA,"as N","Nitrogen","Total","0.234","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990226-0419-4-C/results/970099127/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:19","STORET",7,NA,2022-04-19 18:15:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.234,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13806","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990226-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099133",NA,"as N","Nitrogen","Dissolved","0.252","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990226-0419-4-C/results/970099133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:19","STORET",7,NA,2022-04-19 18:15:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.252,"MG/L","Numeric","Not Reviewed","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13807","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990226-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099140",NA,"as N","Nitrogen","Dissolved","0.199","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990226-0517-4-C/results/970099140/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:20","STORET",7,NA,2022-05-17 18:15:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.199,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13808","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990226-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099146",NA,"as N","Nitrogen","Total","0.195","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990226-0517-4-C/results/970099146/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:20","STORET",7,NA,2022-05-17 18:15:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.195,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13809","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990226-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099161",NA,"as N","Nitrogen","Dissolved","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990226-0621-4-C/results/970099161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:20","STORET",7,NA,2022-06-21 18:10:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13810","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990226-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099163","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990226-0621-4-C/results/970099163/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:20","STORET",7,NA,2022-06-21 18:10:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13811","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990226-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099192",NA,"as N","Nitrogen","Dissolved","0.173","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990226-0719-4-C/results/970099192/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:21","STORET",7,NA,2022-07-19 17:20:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.173,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13812","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990226-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099194",NA,"as N","Nitrogen","Total","0.169","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990226-0719-4-C/results/970099194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:21","STORET",7,NA,2022-07-19 17:20:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.169,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13813","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990226-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099213","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990226-0920-4-C/results/970099213/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:22","STORET",7,NA,2022-09-20 18:15:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13814","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990226-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990226","SNOW CK @ 1300 N. Replicate of 4990225",NA,NA,NA,NA,"41.0796900000","-111.9043000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099226",NA,"as N","Nitrogen","Dissolved","0.194","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990226-0920-4-C/results/970099226/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:22","STORET",7,NA,2022-09-20 18:15:00,NA,"River/Stream","Replicate of 4990225","16020102",NA,NA,NA,NA,"41.0796900000","-111.9043000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.194,"MG/L","Numeric","Pass","Uncensored",41.07969,-111.9043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13815","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990228-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099249",NA,"as N","Nitrogen","Total","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990228-0419-4-C/results/970099249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:23","STORET",7,NA,2022-04-19 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13816","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990228-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099252",NA,"as N","Nitrogen","Dissolved","0.453","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990228-0419-4-C/results/970099252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:23","STORET",7,NA,2022-04-19 18:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.453,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13817","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990228-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099258",NA,"as N","Nitrogen","Total","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990228-0517-4-C/results/970099258/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:24","STORET",7,NA,2022-05-17 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13818","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990228-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099264",NA,"as N","Nitrogen","Dissolved","1.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990228-0517-4-C/results/970099264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:24","STORET",7,NA,2022-05-17 18:05:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.12,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13819","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990228-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099272",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990228-0621-4-C/results/970099272/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:24","STORET",7,NA,2022-06-21 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13820","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990228-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099292",NA,"as N","Nitrogen","Total","1.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990228-0621-4-C/results/970099292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:24","STORET",7,NA,2022-06-21 17:50:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.09,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13821","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990228-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099311",NA,"as N","Nitrogen","Total","1.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990228-0719-4-C/results/970099311/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:25","STORET",7,NA,2022-07-19 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.3,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13822","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990228-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099312",NA,"as N","Nitrogen","Dissolved","0.555","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990228-0719-4-C/results/970099312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:25","STORET",7,NA,2022-07-19 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.555,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13823","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990228-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990228","SNOW CK @ FRANKLIN RD XING",NA,NA,NA,NA,"41.0688500000","-111.9448600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099328",NA,"as N","Nitrogen","Dissolved","1.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990228-0823-4-C/results/970099328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:26","STORET",7,NA,2022-08-23 17:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0688500000","-111.9448600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.29,"MG/L","Numeric","Not Reviewed","Uncensored",41.06885,-111.94486,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13824","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990280-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099372",NA,"as N","Nitrogen","Total","2.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990280-0517-4-C/results/970099372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:28","STORET",7,NA,2022-05-17 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.54,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13825","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990280-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099380",NA,"as N","Nitrogen","Dissolved","2.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990280-0517-4-C/results/970099380/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:28","STORET",7,NA,2022-05-17 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13826","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990280-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099381",NA,"as N","Nitrogen","Dissolved","2.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990280-0621-4-C/results/970099381/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:28","STORET",7,NA,2022-06-21 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13827","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990280-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099392",NA,"as N","Nitrogen","Total","2.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990280-0621-4-C/results/970099392/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:28","STORET",7,NA,2022-06-21 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13828","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990280-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099417",NA,"as N","Nitrogen","Total","2.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990280-0719-4-C/results/970099417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:29","STORET",7,NA,2022-07-19 15:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13829","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990280-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099422",NA,"as N","Nitrogen","Dissolved","2.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990280-0719-4-C/results/970099422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:29","STORET",7,NA,2022-07-19 15:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13830","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990280-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099432",NA,"as N","Nitrogen","Dissolved","2.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990280-0823-4-C/results/970099432/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:30","STORET",7,NA,2022-08-23 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13831","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990280-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099459",NA,"as N","Nitrogen","Total","2.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990280-0920-4-C/results/970099459/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:31","STORET",7,NA,2022-09-20 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13832","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990280-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990280","Bair Ck ab Central Davis WWTP Effluent at Sunset Dr Xing",NA,NA,NA,NA,"40.9993200000","-111.9422100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099462",NA,"as N","Nitrogen","Dissolved","2.31","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990280-0920-4-C/results/970099462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:31","STORET",7,NA,2022-09-20 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9993200000","-111.9422100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.31,"MG/L","Numeric","Not Reviewed","Uncensored",40.99932,-111.94221,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13833","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990296-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"10:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099472",NA,"as N","Nitrogen","Dissolved","0.443","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990296-0419-4-C/results/970099472/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:31","STORET",7,NA,2022-04-19 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.443,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13834","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990296-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"10:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099478",NA,"as N","Nitrogen","Total","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990296-0419-4-C/results/970099478/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:31","STORET",7,NA,2022-04-19 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13835","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990296-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099507",NA,"as N","Nitrogen","Dissolved","0.342","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990296-0517-4-C/results/970099507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:32","STORET",7,NA,2022-05-17 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.342,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13836","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990296-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099515",NA,"as N","Nitrogen","Total","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990296-0517-4-C/results/970099515/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:33","STORET",7,NA,2022-05-17 17:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13837","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990296-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"10:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099517",NA,"as N","Nitrogen","Dissolved","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990296-0621-4-C/results/970099517/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:33","STORET",7,NA,2022-06-21 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13838","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990296-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"10:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099536","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990296-0621-4-C/results/970099536/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:33","STORET",7,NA,2022-06-21 17:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13839","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990296-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099550","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990296-0719-4-C/results/970099550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:34","STORET",7,NA,2022-07-19 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13840","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990296-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099553",NA,"as N","Nitrogen","Total","0.202","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990296-0719-4-C/results/970099553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:34","STORET",7,NA,2022-07-19 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.202,"MG/L","Numeric","Not Reviewed","Uncensored",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13841","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990296-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099578","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990296-0823-4-C/results/970099578/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:35","STORET",7,NA,2022-08-23 17:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13842","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990296-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099602","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990296-0920-4-C/results/970099602/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:36","STORET",7,NA,2022-09-20 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13843","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990296-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990296","BAIR CK @1800 E.",NA,NA,NA,NA,"41.0305800000","-111.8977800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099605","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990296-0920-4-C/results/970099605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:36","STORET",7,NA,2022-09-20 17:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0305800000","-111.8977800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.03058,-111.89778,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13844","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990300-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099623",NA,"as N","Nitrogen","Dissolved","0.846","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990300-0419-4-C/results/970099623/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:36","STORET",7,NA,2022-04-19 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.846,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13845","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990300-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099631",NA,"as N","Nitrogen","Total","0.955","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990300-0419-4-C/results/970099631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:36","STORET",7,NA,2022-04-19 16:30:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.955,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13846","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990300-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099634",NA,"as N","Nitrogen","Total","0.712","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990300-0517-4-C/results/970099634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:37","STORET",7,NA,2022-05-17 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.712,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13847","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990300-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099636",NA,"as N","Nitrogen","Dissolved","0.647","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990300-0517-4-C/results/970099636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:37","STORET",7,NA,2022-05-17 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.647,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13848","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990300-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099652",NA,"as N","Nitrogen","Dissolved","0.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990300-0621-4-C/results/970099652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:37","STORET",7,NA,2022-06-21 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13849","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990300-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099662",NA,"as N","Nitrogen","Total","0.533","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990300-0621-4-C/results/970099662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:38","STORET",7,NA,2022-06-21 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.533,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13850","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990300-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099680",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990300-0719-4-C/results/970099680/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:38","STORET",7,NA,2022-07-19 15:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13851","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990300-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"08:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099687",NA,"as N","Nitrogen","Total","0.535","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990300-0719-4-C/results/970099687/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:38","STORET",7,NA,2022-07-19 15:45:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.535,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13852","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990300-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"09:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099709",NA,"as N","Nitrogen","Dissolved","0.364","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990300-0823-4-C/results/970099709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:39","STORET",7,NA,2022-08-23 16:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.364,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13853","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990300-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099724",NA,"as N","Nitrogen","Total","0.562","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990300-0920-4-C/results/970099724/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:39","STORET",7,NA,2022-09-20 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.562,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13854","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990300-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990300","SHEPARD CK @ BUFFALO RANCH RD.",NA,NA,NA,NA,"40.9785000000","-111.9334600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099731",NA,"as N","Nitrogen","Dissolved","0.474","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990300-0920-4-C/results/970099731/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:40","STORET",7,NA,2022-09-20 16:40:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.9785000000","-111.9334600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.474,"MG/L","Numeric","Not Reviewed","Uncensored",40.9785,-111.93346,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13855","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990306-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099748","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990306-0419-4-C/results/970099748/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:40","STORET",7,NA,2022-04-19 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13856","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990306-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099760",NA,"as N","Nitrogen","Dissolved","0.163","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990306-0419-4-C/results/970099760/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:40","STORET",7,NA,2022-04-19 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.163,"MG/L","Numeric","Pass","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13857","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990306-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099770",NA,"as N","Nitrogen","Dissolved","0.181","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990306-0517-4-C/results/970099770/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:41","STORET",7,NA,2022-05-17 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.181,"MG/L","Numeric","Pass","Uncensored",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13858","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990306-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099784","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990306-0517-4-C/results/970099784/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:41","STORET",7,NA,2022-05-17 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13859","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990306-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099805","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990306-0621-4-C/results/970099805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:42","STORET",7,NA,2022-06-21 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13860","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990306-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"10:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990306","SHEPARD CK @ BELLA VISTA XING",NA,NA,NA,NA,"41.0145600000","-111.8938600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099811","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990306-0621-4-C/results/970099811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:42","STORET",7,NA,2022-06-21 17:15:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0145600000","-111.8938600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.01456,-111.89386,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13861","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990308-0419-4-C","Sample-Routine","Water",NA,2022-04-19,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099824",NA,"as N","Nitrogen","Dissolved","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990308-0419-4-C/results/970099824/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:43","STORET",7,NA,2022-04-19 17:00:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13862","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990308-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099848",NA,"as N","Nitrogen","Total","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990308-0517-4-C/results/970099848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:44","STORET",7,NA,2022-05-17 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13863","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990308-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099853",NA,"as N","Nitrogen","Dissolved","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990308-0517-4-C/results/970099853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:44","STORET",7,NA,2022-05-17 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13864","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990308-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099863",NA,"as N","Nitrogen","Dissolved","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990308-0621-4-C/results/970099863/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:44","STORET",7,NA,2022-06-21 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13865","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990308-0621-4-C","Sample-Routine","Water",NA,2022-06-21,"09:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099870","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990308-0621-4-C/results/970099870/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:44","STORET",7,NA,2022-06-21 16:55:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13866","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990308-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099882",NA,"as N","Nitrogen","Total","0.207","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990308-0719-4-C/results/970099882/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:45","STORET",7,NA,2022-07-19 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.207,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13867","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990308-0719-4-C","Sample-Routine","Water",NA,2022-07-19,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099898",NA,"as N","Nitrogen","Dissolved","0.201","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990308-0719-4-C/results/970099898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:45","STORET",7,NA,2022-07-19 16:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.201,"MG/L","Numeric","Not Reviewed","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13868","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990308-0823-4-C","Sample-Routine","Water",NA,2022-08-23,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099920",NA,"as N","Nitrogen","Dissolved","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990308-0823-4-C/results/970099920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:46","STORET",7,NA,2022-08-23 17:10:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13869","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990308-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099927",NA,"as N","Nitrogen","Dissolved","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990308-0920-4-C/results/970099927/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:47","STORET",7,NA,2022-09-20 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13870","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990308-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990308","Shepard Ck ~0.10 mile above Bella Vista Dr",NA,NA,NA,NA,"41.0147600000","-111.8920000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099938",NA,"as N","Nitrogen","Total","0.166","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990308-0920-4-C/results/970099938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:47","STORET",7,NA,2022-09-20 17:20:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"41.0147600000","-111.8920000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",11,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.166,"MG/L","Numeric","Pass","Uncensored",41.01476,-111.892,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13871","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990555-0419-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-19,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099956","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990555-0419-4-C/results/970099956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:47","STORET",7,NA,2022-04-19 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13872","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220419-4990555-0419-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-19,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099967","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220419-4990555-0419-4-C/results/970099967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:48","STORET",7,NA,2022-04-19 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13873","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990555-0517-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-17,"08:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099971","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990555-0517-4-C/results/970099971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:48","STORET",7,NA,2022-05-17 15:20:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13874","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220517-4990555-0517-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-17,"08:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970099984","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220517-4990555-0517-4-C/results/970099984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:48","STORET",7,NA,2022-05-17 15:20:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13875","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990555-0621-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-21,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100001","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990555-0621-4-C/results/970100001/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:49","STORET",7,NA,2022-06-21 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13876","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220621-4990555-0621-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-21,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100014","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220621-4990555-0621-4-C/results/970100014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:49","STORET",7,NA,2022-06-21 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13877","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990555-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-19,"07:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100016","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990555-0719-4-C/results/970100016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:50","STORET",7,NA,2022-07-19 14:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13878","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220719-4990555-0719-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-19,"07:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100032","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220719-4990555-0719-4-C/results/970100032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:50","STORET",7,NA,2022-07-19 14:30:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13879","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220823-4990555-0823-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-23,"08:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100036","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220823-4990555-0823-4-C/results/970100036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:50","STORET",7,NA,2022-08-23 15:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13880","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990555-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-20,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100061","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990555-0920-4-C/results/970100061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:51","STORET",7,NA,2022-09-20 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13881","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-DC220920-4990555-0920-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-20,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Davis County","UTAHDWQ_WQX-4990555","Davis County Equipment Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100062","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-DC220920-4990555-0920-4-C/results/970100062/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:51","STORET",7,NA,2022-09-20 15:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13882","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220627-4994175-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100084",NA,"as N","Nitrogen","Total","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220627-4994175-0628-4-C/results/970100084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:52","STORET",7,NA,2022-06-28 23:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13883","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220627-4994175-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"16:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994175","Jordan River @ Jordan River Pkwy Pedestrian Bridge Xing (~8200S)",NA,NA,NA,NA,"40.6009500000","-111.9201900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100098",NA,"as N","Nitrogen","Dissolved","2.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220627-4994175-0628-4-C/results/970100098/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:53","STORET",7,NA,2022-06-28 23:00:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.6009500000","-111.9201900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.60095,-111.92019,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13884","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220627-4994270-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"15:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100131",NA,"as N","Nitrogen","Dissolved","2.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220627-4994270-0628-4-C/results/970100131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:54","STORET",7,NA,2022-06-28 22:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13885","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-JRBBH220627-4994270-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"15:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994270","JORDAN R AT 9000 S XING",NA,NA,NA,NA,"40.5874400000","-111.9127100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100134",NA,"as N","Nitrogen","Total","2.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-JRBBH220627-4994270-0628-4-C/results/970100134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:54","STORET",7,NA,2022-06-28 22:20:00,NA,"River/Stream",NA,"16020204",NA,NA,NA,NA,"40.5874400000","-111.9127100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.58744,-111.91271,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13886","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4994790-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100138",NA,"as N","Nitrogen","Total","0.865","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994790-0517-4-C/results/970100138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:55","STORET",7,NA,2022-05-17 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.865,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13887","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4994790-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100143",NA,"as N","Nitrogen","Dissolved","0.766","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994790-0517-4-C/results/970100143/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:55","STORET",7,NA,2022-05-17 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.766,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13888","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4994790-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100169",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994790-0609-4-C/results/970100169/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:56","STORET",7,NA,2022-06-09 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13889","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4994790-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100173",NA,"as N","Nitrogen","Dissolved","0.986","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994790-0609-4-C/results/970100173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:56","STORET",7,NA,2022-06-09 20:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.986,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13890","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4994790-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"15:00:00","MST",NA,NA,NA,"Surface","0.185","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100175",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994790-0720-4-C/results/970100175/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:57","STORET",7,NA,2022-07-20 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.185,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13891","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4994790-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"15:00:00","MST",NA,NA,NA,"Surface","0.185","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100185",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994790-0720-4-C/results/970100185/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:57","STORET",7,NA,2022-07-20 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.185,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13892","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4994790-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100201",NA,"as N","Nitrogen","Total","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4994790-0817-4-C/results/970100201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:58","STORET",7,NA,2022-08-17 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13893","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4994790-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100207",NA,"as N","Nitrogen","Dissolved","1.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4994790-0817-4-C/results/970100207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:58","STORET",7,NA,2022-08-17 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13894","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4994790-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"15:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100220",NA,"as N","Nitrogen","Total","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994790-0921-4-C/results/970100220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:59","STORET",7,NA,2022-09-21 22:22:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13895","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4994790-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"15:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994790","JORDAN R AT UTAH L OUTLET U121 XING",NA,NA,NA,NA,"40.3609500000","-111.8985100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100227",NA,"as N","Nitrogen","Dissolved","0.823","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994790-0921-4-C/results/970100227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:59","STORET",7,NA,2022-09-21 22:22:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3609500000","-111.8985100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.823,"MG/L","Numeric","Not Reviewed","Uncensored",40.36095,-111.89851,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13896","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4994792-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100234",NA,"as N","Nitrogen","Dissolved","0.796","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994792-0517-4-C/results/970100234/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:59","STORET",7,NA,2022-05-17 22:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.796,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13897","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4994792-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100240",NA,"as N","Nitrogen","Total","0.881","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994792-0517-4-C/results/970100240/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:32:59","STORET",7,NA,2022-05-17 22:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.881,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13898","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4994792-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100248",NA,"as N","Nitrogen","Total","1.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994792-0609-4-C/results/970100248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:00","STORET",7,NA,2022-06-09 21:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13899","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4994792-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100258",NA,"as N","Nitrogen","Dissolved","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994792-0609-4-C/results/970100258/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:00","STORET",7,NA,2022-06-09 21:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13900","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4994792-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"15:15:00","MST",NA,NA,NA,"Surface","0.177","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100270",NA,"as N","Nitrogen","Dissolved","1.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994792-0720-4-C/results/970100270/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:01","STORET",7,NA,2022-07-20 22:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.177,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13901","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4994792-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"15:15:00","MST",NA,NA,NA,"Surface","0.177","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100276",NA,"as N","Nitrogen","Total","1.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994792-0720-4-C/results/970100276/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:01","STORET",7,NA,2022-07-20 22:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.177,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13902","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4994792-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100292",NA,"as N","Nitrogen","Dissolved","0.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4994792-0817-4-C/results/970100292/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:02","STORET",7,NA,2022-08-17 22:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.63,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13903","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4994792-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100293",NA,"as N","Nitrogen","Total","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4994792-0817-4-C/results/970100293/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:02","STORET",7,NA,2022-08-17 22:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13904","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4994792-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"15:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100301",NA,"as N","Nitrogen","Dissolved","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994792-0921-4-C/results/970100301/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:03","STORET",7,NA,2022-09-21 22:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13905","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4994792-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"15:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994792","Saratoga Springs at Cedar Valley",NA,NA,NA,NA,"40.3524200000","-111.9019500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100307",NA,"as N","Nitrogen","Total","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994792-0921-4-C/results/970100307/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:03","STORET",7,NA,2022-09-21 22:38:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3524200000","-111.9019500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",40.35242,-111.90195,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13906","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4994804-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"14:45:00","MST",NA,NA,NA,"Surface","0.373","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994804","Dry Creek at 145 N (Saratoga Springs)",NA,NA,NA,NA,"40.3650400000","-111.8839300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100323",NA,"as N","Nitrogen","Dissolved","0.894","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994804-0720-4-C/results/970100323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:04","STORET",7,NA,2022-07-20 21:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3650400000","-111.8839300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.894,"MG/L","Numeric","Not Reviewed","Uncensored",40.36504,-111.88393,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.373,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13907","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4994804-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"14:45:00","MST",NA,NA,NA,"Surface","0.373","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994804","Dry Creek at 145 N (Saratoga Springs)",NA,NA,NA,NA,"40.3650400000","-111.8839300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100330",NA,"as N","Nitrogen","Total","0.933","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4994804-0720-4-C/results/970100330/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:04","STORET",7,NA,2022-07-20 21:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3650400000","-111.8839300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.933,"MG/L","Numeric","Not Reviewed","Uncensored",40.36504,-111.88393,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.373,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13908","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4994950-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100338",NA,"as N","Nitrogen","Total","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4994950-0411-4-C/results/970100338/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:05","STORET",7,NA,2022-04-11 22:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13909","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4994950-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"15:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100348",NA,"as N","Nitrogen","Dissolved","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4994950-0411-4-C/results/970100348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:05","STORET",7,NA,2022-04-11 22:50:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13910","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4994950-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100361",NA,"as N","Nitrogen","Dissolved","0.902","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994950-0517-4-C/results/970100361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:06","STORET",7,NA,2022-05-17 21:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.902,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13911","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4994950-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"14:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100364",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4994950-0517-4-C/results/970100364/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:06","STORET",7,NA,2022-05-17 21:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13912","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4994950-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100376",NA,"as N","Nitrogen","Dissolved","1.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994950-0609-4-C/results/970100376/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:07","STORET",7,NA,2022-06-09 20:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13913","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4994950-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100378",NA,"as N","Nitrogen","Total","1.83","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994950-0609-4-C/results/970100378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:07","STORET",7,NA,2022-06-09 20:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.83,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13914","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4994950-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100394",NA,"as N","Nitrogen","Total","1.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994950-0921-4-C/results/970100394/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:08","STORET",7,NA,2022-09-21 21:44:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13915","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4994950-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994950","SPRING CK BL LEHI MILL POND",NA,NA,NA,NA,"40.3685600000","-111.8354900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100396",NA,"as N","Nitrogen","Dissolved","1.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4994950-0921-4-C/results/970100396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:08","STORET",7,NA,2022-09-21 21:44:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3685600000","-111.8354900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.34,"MG/L","Numeric","Not Reviewed","Uncensored",40.36856,-111.83549,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13916","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4994960-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994960","AMERICAN FK CK 2.5MI S OF AM FK CITY",NA,NA,NA,NA,"40.3432800000","-111.8020700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100415",NA,"as N","Nitrogen","Dissolved","0.359","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994960-0609-4-C/results/970100415/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:09","STORET",7,NA,2022-06-09 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3432800000","-111.8020700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.359,"MG/L","Numeric","Not Reviewed","Uncensored",40.34328,-111.80207,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13917","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4994960-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4994960","AMERICAN FK CK 2.5MI S OF AM FK CITY",NA,NA,NA,NA,"40.3432800000","-111.8020700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100423",NA,"as N","Nitrogen","Total","0.361","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4994960-0609-4-C/results/970100423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:09","STORET",7,NA,2022-06-09 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3432800000","-111.8020700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.361,"MG/L","Numeric","Not Reviewed","Uncensored",40.34328,-111.80207,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13918","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4994970-0412-4-C","Sample-Routine","Water",NA,2022-04-12,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100436",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4994970-0412-4-C/results/970100436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:10","STORET",7,NA,2022-04-12 18:40:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13919","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220410-4994970-0412-4-C","Sample-Routine","Water",NA,2022-04-12,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100452",NA,"as N","Nitrogen","Total","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220410-4994970-0412-4-C/results/970100452/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:10","STORET",7,NA,2022-04-12 18:40:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13920","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4994970-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100457",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4994970-0511-4-C/results/970100457/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:11","STORET",7,NA,2022-05-11 22:15:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13921","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-4994970-0511-4-C","Sample-Routine","Water",NA,2022-05-11,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100473",NA,"as N","Nitrogen","Total","1.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-4994970-0511-4-C/results/970100473/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:11","STORET",7,NA,2022-05-11 22:15:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13922","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4994970-0606-4-C","Sample-Routine","Water",NA,2022-06-06,"17:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100484",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4994970-0606-4-C/results/970100484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:12","STORET",7,NA,2022-06-07 00:45:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13923","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220603-4994970-0606-4-C","Sample-Routine","Water",NA,2022-06-06,"17:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100489",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220603-4994970-0606-4-C/results/970100489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:12","STORET",7,NA,2022-06-07 00:45:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13924","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4994970-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:48:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100511",NA,"as N","Nitrogen","Total","1.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4994970-0712-4-C/results/970100511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:14","STORET",7,NA,2022-07-12 17:48:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13925","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-4994970-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"10:48:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100512",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-4994970-0712-4-C/results/970100512/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:14","STORET",7,NA,2022-07-12 17:48:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13926","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4994970-0812-4-C","Sample-Routine","Water",NA,2022-08-12,"10:22:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100523",NA,"as N","Nitrogen","Total","1.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4994970-0812-4-C/results/970100523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:15","STORET",7,NA,2022-08-12 17:22:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13927","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220808-4994970-0812-4-C","Sample-Routine","Water",NA,2022-08-12,"10:22:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100527",NA,"as N","Nitrogen","Dissolved","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220808-4994970-0812-4-C/results/970100527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:15","STORET",7,NA,2022-08-12 17:22:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13928","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4994970-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100542",NA,"as N","Nitrogen","Dissolved","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4994970-0914-4-C/results/970100542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:16","STORET",7,NA,2022-09-14 18:15:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13929","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-4994970-0914-4-C","Sample-Routine","Water",NA,2022-09-14,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-4994970","HANSEN CAVE SPRING IN TIMPANOGOS CAVE NM",NA,NA,NA,NA,"40.4375900000","-111.7115300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100556",NA,"as N","Nitrogen","Total","1.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-4994970-0914-4-C/results/970100556/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:16","STORET",7,NA,2022-09-14 18:15:00,NA,"Spring",NA,"16020201",NA,NA,NA,NA,"40.4375900000","-111.7115300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.43759,-111.71153,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13930","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995038-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100568",NA,"as N","Nitrogen","Dissolved","8.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995038-0411-4-C/results/970100568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:17","STORET",7,NA,2022-04-11 22:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13931","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995038-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100570",NA,"as N","Nitrogen","Total","8.71","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995038-0411-4-C/results/970100570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:17","STORET",7,NA,2022-04-11 22:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.71,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13932","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995038-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100581",NA,"as N","Nitrogen","Total","7.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995038-0517-4-C/results/970100581/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:18","STORET",7,NA,2022-05-17 21:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13933","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995038-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100590",NA,"as N","Nitrogen","Dissolved","7.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995038-0517-4-C/results/970100590/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:18","STORET",7,NA,2022-05-17 21:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13934","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995038-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100596",NA,"as N","Nitrogen","Total","7.12","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995038-0609-4-C/results/970100596/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:18","STORET",7,NA,2022-06-09 20:15:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.12,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13935","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995038-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100607",NA,"as N","Nitrogen","Dissolved","7.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995038-0609-4-C/results/970100607/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:19","STORET",7,NA,2022-06-09 20:15:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13936","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995038-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"14:10:00","MST",NA,NA,NA,"Surface","0.24","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100627",NA,"as N","Nitrogen","Dissolved","8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995038-0720-4-C/results/970100627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:20","STORET",7,NA,2022-07-20 21:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.24,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13937","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995038-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"14:10:00","MST",NA,NA,NA,"Surface","0.24","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100632",NA,"as N","Nitrogen","Total","8.29","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995038-0720-4-C/results/970100632/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:20","STORET",7,NA,2022-07-20 21:10:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.29,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.24,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13938","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995038-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100638",NA,"as N","Nitrogen","Dissolved","8.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995038-0817-4-C/results/970100638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:20","STORET",7,NA,2022-08-17 21:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.06,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13939","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995038-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100649",NA,"as N","Nitrogen","Total","8.72","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995038-0817-4-C/results/970100649/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:20","STORET",7,NA,2022-08-17 21:20:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.72,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13940","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995038-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100655",NA,"as N","Nitrogen","Total","7.84","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995038-0921-4-C/results/970100655/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:21","STORET",7,NA,2022-09-21 21:22:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.84,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13941","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995038-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:22:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995038","Timpanogos Effluent below constructed duck ponds",NA,NA,NA,NA,"40.3371900000","-111.7770100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100657",NA,"as N","Nitrogen","Dissolved","7.47","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995038-0921-4-C/results/970100657/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:21","STORET",7,NA,2022-09-21 21:22:00,NA,"Wetland Undifferentiated",NA,"16020201",NA,NA,NA,NA,"40.3371900000","-111.7770100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.47,"MG/L","Numeric","Not Reviewed","Uncensored",40.33719,-111.77701,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13942","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995041-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100675",NA,"as N","Nitrogen","Dissolved","4.92","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995041-0411-4-C/results/970100675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:21","STORET",7,NA,2022-04-11 22:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",4.92,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13943","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995041-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"15:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100682",NA,"as N","Nitrogen","Total","5.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995041-0411-4-C/results/970100682/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:22","STORET",7,NA,2022-04-11 22:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.23,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13944","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995041-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100692",NA,"as N","Nitrogen","Dissolved","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995041-0517-4-C/results/970100692/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:22","STORET",7,NA,2022-05-17 21:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13945","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995041-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100700",NA,"as N","Nitrogen","Total","2.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995041-0517-4-C/results/970100700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:22","STORET",7,NA,2022-05-17 21:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13946","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995041-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100724",NA,"as N","Nitrogen","Total","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995041-0609-4-C/results/970100724/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:23","STORET",7,NA,2022-06-09 20:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13947","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995041-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100725",NA,"as N","Nitrogen","Dissolved","1.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995041-0609-4-C/results/970100725/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:23","STORET",7,NA,2022-06-09 20:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.24,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13948","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995041-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"14:20:00","MST",NA,NA,NA,"Surface","0.188","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100733",NA,"as N","Nitrogen","Dissolved","1.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995041-0720-4-C/results/970100733/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:24","STORET",7,NA,2022-07-20 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.188,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13949","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995041-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"14:20:00","MST",NA,NA,NA,"Surface","0.188","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100746",NA,"as N","Nitrogen","Total","1.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995041-0720-4-C/results/970100746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:24","STORET",7,NA,2022-07-20 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.188,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13950","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995041-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100752",NA,"as N","Nitrogen","Dissolved","3.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995041-0817-4-C/results/970100752/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:24","STORET",7,NA,2022-08-17 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13951","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995041-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100758",NA,"as N","Nitrogen","Total","3.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995041-0817-4-C/results/970100758/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:24","STORET",7,NA,2022-08-17 21:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13952","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995041-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100772",NA,"as N","Nitrogen","Dissolved","2.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995041-0921-4-C/results/970100772/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:25","STORET",7,NA,2022-09-21 21:33:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13953","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995041-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:33:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995041","East side tributary to Timpanogos WWTP effluent AB Utah Lake",NA,NA,NA,NA,"40.3366200000","-111.7768000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100773",NA,"as N","Nitrogen","Total","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995041-0921-4-C/results/970100773/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:25","STORET",7,NA,2022-09-21 21:33:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.3366200000","-111.7768000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.48,"MG/L","Numeric","Not Reviewed","Uncensored",40.33662,-111.7768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13954","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995250-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100787",NA,"as N","Nitrogen","Total","17.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995250-0411-4-C/results/970100787/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:26","STORET",7,NA,2022-04-11 21:30:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13955","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995250-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100789",NA,"as N","Nitrogen","Dissolved","17.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995250-0411-4-C/results/970100789/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:26","STORET",7,NA,2022-04-11 21:30:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13956","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995250-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100807",NA,"as N","Nitrogen","Dissolved","21.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995250-0517-4-C/results/970100807/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:26","STORET",7,NA,2022-05-17 20:25:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13957","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995250-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"13:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100810",NA,"as N","Nitrogen","Total","21.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995250-0517-4-C/results/970100810/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:26","STORET",7,NA,2022-05-17 20:25:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13958","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995250-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100825",NA,"as N","Nitrogen","Total","21.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995250-0609-4-C/results/970100825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:27","STORET",7,NA,2022-06-09 19:40:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",21.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13959","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995250-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100827",NA,"as N","Nitrogen","Dissolved","22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995250-0609-4-C/results/970100827/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:27","STORET",7,NA,2022-06-09 19:40:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",22,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13960","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995250-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"13:40:00","MST",NA,NA,NA,"Surface","0.198","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100852",NA,"as N","Nitrogen","Dissolved","16.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995250-0720-4-C/results/970100852/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:28","STORET",7,NA,2022-07-20 20:40:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.198,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13961","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995250-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"13:40:00","MST",NA,NA,NA,"Surface","0.198","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100854",NA,"as N","Nitrogen","Total","16.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995250-0720-4-C/results/970100854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:28","STORET",7,NA,2022-07-20 20:40:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.198,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13962","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995250-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100862",NA,"as N","Nitrogen","Total","13.3","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995250-0817-4-C/results/970100862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:28","STORET",7,NA,2022-08-17 20:30:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.3,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13963","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995250-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100869",NA,"as N","Nitrogen","Dissolved","13.4","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995250-0817-4-C/results/970100869/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:28","STORET",7,NA,2022-08-17 20:30:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",13.4,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13964","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995250-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100887",NA,"as N","Nitrogen","Dissolved","16.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995250-0921-4-C/results/970100887/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:29","STORET",7,NA,2022-09-21 21:45:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13965","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995250-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995250","OREM WWTP",NA,NA,NA,NA,"40.2769400000","-111.7443000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100898",NA,"as N","Nitrogen","Total","16.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995250-0921-4-C/results/970100898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:29","STORET",7,NA,2022-09-21 21:45:00,NA,"Facility Other",NA,"16020201",NA,NA,NA,NA,"40.2769400000","-111.7443000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",16.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.27694,-111.7443,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13966","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995252-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100910",NA,"as N","Nitrogen","Total","0.542","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995252-0411-4-C/results/970100910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:30","STORET",7,NA,2022-04-11 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.542,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13967","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995252-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100911",NA,"as N","Nitrogen","Dissolved","0.523","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995252-0411-4-C/results/970100911/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:30","STORET",7,NA,2022-04-11 21:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.523,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13968","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995252-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100920",NA,"as N","Nitrogen","Dissolved","0.698","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995252-0517-4-C/results/970100920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:30","STORET",7,NA,2022-05-17 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.698,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13969","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995252-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100936",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995252-0517-4-C/results/970100936/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:30","STORET",7,NA,2022-05-17 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13970","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995252-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100938",NA,"as N","Nitrogen","Dissolved","0.726","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995252-0609-4-C/results/970100938/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:31","STORET",7,NA,2022-06-09 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.726,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13971","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995252-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100954",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995252-0609-4-C/results/970100954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:31","STORET",7,NA,2022-06-09 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13972","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995252-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"13:30:00","MST",NA,NA,NA,"Surface","0.232","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100964",NA,"as N","Nitrogen","Dissolved","0.611","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995252-0720-4-C/results/970100964/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:32","STORET",7,NA,2022-07-20 20:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.611,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.232,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13973","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995252-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"13:30:00","MST",NA,NA,NA,"Surface","0.232","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100972",NA,"as N","Nitrogen","Total","0.751","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995252-0720-4-C/results/970100972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:32","STORET",7,NA,2022-07-20 20:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.751,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.232,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13974","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995252-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100977",NA,"as N","Nitrogen","Total","1.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995252-0817-4-C/results/970100977/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:32","STORET",7,NA,2022-08-17 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13975","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995252-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970100981",NA,"as N","Nitrogen","Dissolved","0.732","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995252-0817-4-C/results/970100981/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:32","STORET",7,NA,2022-08-17 20:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.732,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13976","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995252-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101010",NA,"as N","Nitrogen","Total","0.849","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995252-0921-4-C/results/970101010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:33","STORET",7,NA,2022-09-21 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.849,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13977","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995252-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995252","Clegg's Pond OUTFALL-WLA",NA,NA,NA,NA,"40.2770500000","-111.7445800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101012",NA,"as N","Nitrogen","Dissolved","1.37","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995252-0921-4-C/results/970101012/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:33","STORET",7,NA,2022-09-21 22:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2770500000","-111.7445800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.37,"MG/L","Numeric","Not Reviewed","Uncensored",40.27705,-111.74458,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13978","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995310-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101015",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995310-0411-4-C/results/970101015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:33","STORET",7,NA,2022-04-11 17:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13979","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995310-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101021",NA,"as N","Nitrogen","Dissolved","0.925","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995310-0411-4-C/results/970101021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:33","STORET",7,NA,2022-04-11 17:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.925,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13980","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995310-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101032",NA,"as N","Nitrogen","Total","0.673","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995310-0517-4-C/results/970101032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:34","STORET",7,NA,2022-05-17 16:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.673,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13981","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995310-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"09:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995310","CURRANT CK AT US6 XING 1.5MI W OF GOSHEN",NA,NA,NA,NA,"39.9524400000","-111.9336300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101042",NA,"as N","Nitrogen","Dissolved","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995310-0517-4-C/results/970101042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:34","STORET",7,NA,2022-05-17 16:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"39.9524400000","-111.9336300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",39.95244,-111.93363,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13982","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995465-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101061",NA,"as N","Nitrogen","Total","3.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995465-0411-4-C/results/970101061/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:35","STORET",7,NA,2022-04-11 18:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.64,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13983","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995465-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101064",NA,"as N","Nitrogen","Dissolved","3.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995465-0411-4-C/results/970101064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:35","STORET",7,NA,2022-04-11 18:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13984","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995465-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101077",NA,"as N","Nitrogen","Total","2.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995465-0517-4-C/results/970101077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:35","STORET",7,NA,2022-05-17 17:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13985","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995465-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101080",NA,"as N","Nitrogen","Dissolved","1.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995465-0517-4-C/results/970101080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:35","STORET",7,NA,2022-05-17 17:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13986","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995465-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101088",NA,"as N","Nitrogen","Dissolved","1.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995465-0609-4-C/results/970101088/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:36","STORET",7,NA,2022-06-09 17:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13987","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995465-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"10:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101099",NA,"as N","Nitrogen","Total","0.963","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995465-0609-4-C/results/970101099/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:36","STORET",7,NA,2022-06-09 17:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.963,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13988","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995465-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"10:40:00","MST",NA,NA,NA,"Surface","0.186","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101108",NA,"as N","Nitrogen","Total","2.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995465-0720-4-C/results/970101108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:37","STORET",7,NA,2022-07-20 17:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.186,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13989","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4995465-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"10:40:00","MST",NA,NA,NA,"Surface","0.186","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101114",NA,"as N","Nitrogen","Dissolved","2.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4995465-0720-4-C/results/970101114/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:37","STORET",7,NA,2022-07-20 17:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.186,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13990","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995465-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101127",NA,"as N","Nitrogen","Total","1.61","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995465-0817-4-C/results/970101127/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:37","STORET",7,NA,2022-08-17 16:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.61,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13991","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995465-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"09:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101138",NA,"as N","Nitrogen","Dissolved","1.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995465-0817-4-C/results/970101138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:38","STORET",7,NA,2022-08-17 16:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13992","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995465-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101153",NA,"as N","Nitrogen","Total","1.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995465-0921-4-C/results/970101153/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:38","STORET",7,NA,2022-09-21 17:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.32,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13993","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995465-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995465","Beer Creek/Benjamin Slough",NA,NA,NA,NA,"40.1328700000","-111.7914900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101161",NA,"as N","Nitrogen","Dissolved","1.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995465-0921-4-C/results/970101161/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:39","STORET",7,NA,2022-09-21 17:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1328700000","-111.7914900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.46,"MG/L","Numeric","Not Reviewed","Uncensored",40.13287,-111.79149,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13994","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995578-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101165",NA,"as N","Nitrogen","Total","0.98","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995578-0411-4-C/results/970101165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:39","STORET",7,NA,2022-04-11 19:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.98,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13995","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4995578-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101166",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4995578-0411-4-C/results/970101166/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:39","STORET",7,NA,2022-04-11 19:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13996","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995578-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101186",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995578-0517-4-C/results/970101186/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:40","STORET",7,NA,2022-05-17 18:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13997","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4995578-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101194",NA,"as N","Nitrogen","Total","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4995578-0517-4-C/results/970101194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:40","STORET",7,NA,2022-05-17 18:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13998","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995578-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101207",NA,"as N","Nitrogen","Total","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995578-0609-4-C/results/970101207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:41","STORET",7,NA,2022-06-09 17:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"13999","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4995578-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101216",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4995578-0609-4-C/results/970101216/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:41","STORET",7,NA,2022-06-09 17:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14000","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995578-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101218",NA,"as N","Nitrogen","Total","1.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995578-0817-4-C/results/970101218/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:41","STORET",7,NA,2022-08-17 17:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14001","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4995578-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101227",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4995578-0817-4-C/results/970101227/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:41","STORET",7,NA,2022-08-17 17:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14002","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995578-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101248",NA,"as N","Nitrogen","Dissolved","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995578-0921-4-C/results/970101248/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:42","STORET",7,NA,2022-09-21 18:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14003","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4995578-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4995578","SPANISH FORK RIVER AT UTAH LAKE INLET",NA,NA,NA,NA,"40.1577900000","-111.7307600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101249",NA,"as N","Nitrogen","Total","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4995578-0921-4-C/results/970101249/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:42","STORET",7,NA,2022-09-21 18:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1577900000","-111.7307600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",40.15779,-111.73076,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14004","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996000-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101253",NA,"as N","Nitrogen","Total","11.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996000-0411-4-C/results/970101253/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:43","STORET",7,NA,2022-04-11 19:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14005","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996000-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101265",NA,"as N","Nitrogen","Dissolved","11.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996000-0411-4-C/results/970101265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:43","STORET",7,NA,2022-04-11 19:45:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14006","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996000-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101274",NA,"as N","Nitrogen","Dissolved","6.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996000-0517-4-C/results/970101274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:43","STORET",7,NA,2022-05-17 18:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14007","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996000-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101280",NA,"as N","Nitrogen","Total","7.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996000-0517-4-C/results/970101280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:43","STORET",7,NA,2022-05-17 18:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14008","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996000-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101294",NA,"as N","Nitrogen","Dissolved","7.18","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996000-0609-4-C/results/970101294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:44","STORET",7,NA,2022-06-09 18:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.18,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14009","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996000-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101300",NA,"as N","Nitrogen","Total","7.67","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996000-0609-4-C/results/970101300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:44","STORET",7,NA,2022-06-09 18:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.67,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14010","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996000-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:15:00","MST",NA,NA,NA,"Surface","0.259","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101312",NA,"as N","Nitrogen","Dissolved","7.11","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996000-0720-4-C/results/970101312/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:45","STORET",7,NA,2022-07-20 18:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.11,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.259,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14011","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996000-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:15:00","MST",NA,NA,NA,"Surface","0.259","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101313",NA,"as N","Nitrogen","Total","7.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996000-0720-4-C/results/970101313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:45","STORET",7,NA,2022-07-20 18:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.259,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14012","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996000-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101331",NA,"as N","Nitrogen","Dissolved","6.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996000-0817-4-C/results/970101331/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:45","STORET",7,NA,2022-08-17 17:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14013","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996000-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101339",NA,"as N","Nitrogen","Total","7.41","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996000-0817-4-C/results/970101339/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:45","STORET",7,NA,2022-08-17 17:30:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.41,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14014","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996000-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101353",NA,"as N","Nitrogen","Total","8.77","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996000-0921-4-C/results/970101353/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:46","STORET",7,NA,2022-09-21 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.77,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14015","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996000-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996000","DRY CK @ CR 77 XING AB UTAH LAKE",NA,NA,NA,NA,"40.1585300000","-111.6638100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101358",NA,"as N","Nitrogen","Dissolved","8.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996000-0921-4-C/results/970101358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:46","STORET",7,NA,2022-09-21 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1585300000","-111.6638100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.15853,-111.66381,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14016","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996100-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101374",NA,"as N","Nitrogen","Dissolved","0.729","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996100-0411-4-C/results/970101374/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:47","STORET",7,NA,2022-04-11 20:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.729,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14017","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996100-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101378",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996100-0411-4-C/results/970101378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:47","STORET",7,NA,2022-04-11 20:10:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14018","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996100-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101390",NA,"as N","Nitrogen","Dissolved","0.465","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996100-0517-4-C/results/970101390/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:47","STORET",7,NA,2022-05-17 19:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.465,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14019","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996100-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101398",NA,"as N","Nitrogen","Total","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996100-0517-4-C/results/970101398/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:47","STORET",7,NA,2022-05-17 19:05:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14020","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996100-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101411",NA,"as N","Nitrogen","Total","0.551","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996100-0609-4-C/results/970101411/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:48","STORET",7,NA,2022-06-09 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.551,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14021","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996100-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101417",NA,"as N","Nitrogen","Dissolved","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996100-0609-4-C/results/970101417/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:48","STORET",7,NA,2022-06-09 18:20:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14022","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996100-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:00:00","MST",NA,NA,NA,"Surface","0.212","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101425",NA,"as N","Nitrogen","Dissolved","0.998","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996100-0720-4-C/results/970101425/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:49","STORET",7,NA,2022-07-20 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.998,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.212,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14023","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996100-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:00:00","MST",NA,NA,NA,"Surface","0.212","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101426",NA,"as N","Nitrogen","Total","0.689","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996100-0720-4-C/results/970101426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:49","STORET",7,NA,2022-07-20 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.689,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.212,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14024","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996100-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101441",NA,"as N","Nitrogen","Total","0.489","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996100-0817-4-C/results/970101441/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:50","STORET",7,NA,2022-08-17 18:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.489,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14025","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996100-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101443",NA,"as N","Nitrogen","Dissolved","0.597","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996100-0817-4-C/results/970101443/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:50","STORET",7,NA,2022-08-17 18:15:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.597,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14026","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996100-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101463",NA,"as N","Nitrogen","Total","0.644","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996100-0921-4-C/results/970101463/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:50","STORET",7,NA,2022-09-21 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.644,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14027","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996100-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996100","HOBBLE CK AT I-15 BDG 3MI S OF PROVO",NA,NA,NA,NA,"40.1840000000","-111.6472700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101465",NA,"as N","Nitrogen","Dissolved","0.996","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996100-0921-4-C/results/970101465/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:50","STORET",7,NA,2022-09-21 19:00:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1840000000","-111.6472700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.996,"MG/L","Numeric","Not Reviewed","Uncensored",40.184,-111.64727,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14028","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996275-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101479",NA,"as N","Nitrogen","Dissolved","7.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996275-0411-4-C/results/970101479/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:51","STORET",7,NA,2022-04-11 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14029","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996275-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101484",NA,"as N","Nitrogen","Total","8.39","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996275-0411-4-C/results/970101484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:51","STORET",7,NA,2022-04-11 20:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.39,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14030","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996275-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101495",NA,"as N","Nitrogen","Dissolved","6.43","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996275-0517-4-C/results/970101495/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:52","STORET",7,NA,2022-05-17 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.43,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14031","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996275-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101496",NA,"as N","Nitrogen","Total","6.62","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996275-0517-4-C/results/970101496/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:52","STORET",7,NA,2022-05-17 19:10:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.62,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14032","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996275-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101522",NA,"as N","Nitrogen","Total","6.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996275-0609-4-C/results/970101522/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:53","STORET",7,NA,2022-06-09 18:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14033","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996275-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101523",NA,"as N","Nitrogen","Dissolved","5.95","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996275-0609-4-C/results/970101523/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:53","STORET",7,NA,2022-06-09 18:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.95,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14034","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996275-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:15:00","MST",NA,NA,NA,"Surface","0.204","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101532",NA,"as N","Nitrogen","Total","8.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996275-0720-4-C/results/970101532/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:53","STORET",7,NA,2022-07-20 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.204,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14035","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996275-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:15:00","MST",NA,NA,NA,"Surface","0.204","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101543",NA,"as N","Nitrogen","Dissolved","8.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996275-0720-4-C/results/970101543/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:54","STORET",7,NA,2022-07-20 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.204,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14036","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996275-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101545",NA,"as N","Nitrogen","Total","9.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996275-0817-4-C/results/970101545/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:54","STORET",7,NA,2022-08-17 18:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14037","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996275-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"11:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101554",NA,"as N","Nitrogen","Dissolved","9.25","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996275-0817-4-C/results/970101554/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:54","STORET",7,NA,2022-08-17 18:25:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.25,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14038","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996275-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101571",NA,"as N","Nitrogen","Dissolved","10.6","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996275-0921-4-C/results/970101571/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:55","STORET",7,NA,2022-09-21 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.6,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14039","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996275-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996275","Spring Creek at I-15 Frontage Road",NA,NA,NA,NA,"40.1895800000","-111.6489800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101572",NA,"as N","Nitrogen","Total","10.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996275-0921-4-C/results/970101572/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:55","STORET",7,NA,2022-09-21 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.1895800000","-111.6489800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.18958,-111.64898,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14040","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996540-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101582",NA,"as N","Nitrogen","Dissolved","10.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996540-0411-4-C/results/970101582/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:56","STORET",7,NA,2022-04-11 20:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",10.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14041","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996540-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101594",NA,"as N","Nitrogen","Total","11.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996540-0411-4-C/results/970101594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:56","STORET",7,NA,2022-04-11 20:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14042","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996540-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101605",NA,"as N","Nitrogen","Dissolved","8.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996540-0517-4-C/results/970101605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:56","STORET",7,NA,2022-05-17 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14043","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996540-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101615",NA,"as N","Nitrogen","Total","8.99","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996540-0517-4-C/results/970101615/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:56","STORET",7,NA,2022-05-17 19:20:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.99,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14044","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996540-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101634",NA,"as N","Nitrogen","Total","9.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996540-0609-4-C/results/970101634/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:57","STORET",7,NA,2022-06-09 18:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14045","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996540-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101636",NA,"as N","Nitrogen","Dissolved","9.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996540-0609-4-C/results/970101636/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:57","STORET",7,NA,2022-06-09 18:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.5,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14046","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996540-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:45:00","MST",NA,NA,NA,"Surface","0.228","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101638",NA,"as N","Nitrogen","Dissolved","9.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996540-0720-4-C/results/970101638/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:58","STORET",7,NA,2022-07-20 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.14,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.228,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14047","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996540-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:45:00","MST",NA,NA,NA,"Surface","0.228","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101647",NA,"as N","Nitrogen","Total","9.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996540-0720-4-C/results/970101647/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:58","STORET",7,NA,2022-07-20 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.228,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14048","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996540-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101664",NA,"as N","Nitrogen","Dissolved","7.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996540-0817-4-C/results/970101664/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:59","STORET",7,NA,2022-08-17 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.76,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14049","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996540-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101673",NA,"as N","Nitrogen","Total","8.09","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996540-0817-4-C/results/970101673/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:59","STORET",7,NA,2022-08-17 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8.09,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14050","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996540-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101679",NA,"as N","Nitrogen","Dissolved","12.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996540-0921-4-C/results/970101679/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:33:59","STORET",7,NA,2022-09-21 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14051","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996540-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996540","MILL RACE CREEK AT I-15 CROSSING (2 MI S PROVO COURTHOUSE)",NA,NA,NA,NA,"40.2030900000","-111.6562100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101684",NA,"as N","Nitrogen","Total","11.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996540-0921-4-C/results/970101684/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:00","STORET",7,NA,2022-09-21 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2030900000","-111.6562100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.20309,-111.65621,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14052","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996566-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101700",NA,"as N","Nitrogen","Total","9.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996566-0411-4-C/results/970101700/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:00","STORET",7,NA,2022-04-11 20:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.38,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14053","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996566-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"13:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101707",NA,"as N","Nitrogen","Dissolved","9.22","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996566-0411-4-C/results/970101707/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:00","STORET",7,NA,2022-04-11 20:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",9.22,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14054","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996566-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101714",NA,"as N","Nitrogen","Dissolved","7.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996566-0517-4-C/results/970101714/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:01","STORET",7,NA,2022-05-17 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.49,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14055","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996566-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101730",NA,"as N","Nitrogen","Total","8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996566-0517-4-C/results/970101730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:01","STORET",7,NA,2022-05-17 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",8,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14056","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996566-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101737",NA,"as N","Nitrogen","Dissolved","6.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996566-0609-4-C/results/970101737/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:02","STORET",7,NA,2022-06-09 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.68,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14057","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996566-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101746",NA,"as N","Nitrogen","Total","6.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996566-0609-4-C/results/970101746/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:02","STORET",7,NA,2022-06-09 18:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14058","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996566-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:30:00","MST",NA,NA,NA,"Surface","0.188","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101759",NA,"as N","Nitrogen","Dissolved","6.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996566-0720-4-C/results/970101759/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:03","STORET",7,NA,2022-07-20 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.45,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.188,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14059","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996566-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"12:30:00","MST",NA,NA,NA,"Surface","0.188","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101765",NA,"as N","Nitrogen","Total","6.7","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996566-0720-4-C/results/970101765/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:03","STORET",7,NA,2022-07-20 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.7,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.188,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14060","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996566-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101771",NA,"as N","Nitrogen","Total","7.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996566-0817-4-C/results/970101771/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:04","STORET",7,NA,2022-08-17 18:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14061","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996566-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101785",NA,"as N","Nitrogen","Dissolved","6.58","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996566-0817-4-C/results/970101785/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:04","STORET",7,NA,2022-08-17 18:40:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.58,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14062","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996566-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101798",NA,"as N","Nitrogen","Total","7.88","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996566-0921-4-C/results/970101798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:05","STORET",7,NA,2022-09-21 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.88,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14063","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996566-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996566","PROVO STATION 6-WLA",NA,NA,NA,NA,"40.2021000000","-111.6536600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101806",NA,"as N","Nitrogen","Dissolved","7.65","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996566-0921-4-C/results/970101806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:05","STORET",7,NA,2022-09-21 19:30:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2021000000","-111.6536600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",7.65,"MG/L","Numeric","Not Reviewed","Uncensored",40.2021,-111.65366,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14064","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996680-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101813",NA,"as N","Nitrogen","Dissolved","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996680-0411-4-C/results/970101813/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:06","STORET",7,NA,2022-04-11 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14065","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-4996680-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101814",NA,"as N","Nitrogen","Total","0.646","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-4996680-0411-4-C/results/970101814/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:06","STORET",7,NA,2022-04-11 21:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.646,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14066","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996680-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101833",NA,"as N","Nitrogen","Total","0.495","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996680-0517-4-C/results/970101833/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:06","STORET",7,NA,2022-05-17 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.495,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14067","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-4996680-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101838",NA,"as N","Nitrogen","Dissolved","0.499","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-4996680-0517-4-C/results/970101838/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:06","STORET",7,NA,2022-05-17 19:45:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.499,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14068","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996680-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101853",NA,"as N","Nitrogen","Total","0.8","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996680-0609-4-C/results/970101853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:07","STORET",7,NA,2022-06-09 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.8,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14069","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-4996680-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101860",NA,"as N","Nitrogen","Dissolved","0.768","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-4996680-0609-4-C/results/970101860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:07","STORET",7,NA,2022-06-09 19:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.768,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14070","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996680-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"13:00:00","MST",NA,NA,NA,"Surface","0.21","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101871",NA,"as N","Nitrogen","Total","0.765","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996680-0720-4-C/results/970101871/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:08","STORET",7,NA,2022-07-20 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.765,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.21,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14071","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-4996680-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"13:00:00","MST",NA,NA,NA,"Surface","0.21","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101876",NA,"as N","Nitrogen","Dissolved","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-4996680-0720-4-C/results/970101876/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:08","STORET",7,NA,2022-07-20 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.21,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14072","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996680-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101880",NA,"as N","Nitrogen","Total","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996680-0817-4-C/results/970101880/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:08","STORET",7,NA,2022-08-17 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14073","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-4996680-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101897",NA,"as N","Nitrogen","Dissolved","0.753","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-4996680-0817-4-C/results/970101897/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:09","STORET",7,NA,2022-08-17 19:15:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.753,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14074","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996680-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101908",NA,"as N","Nitrogen","Total","0.515","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996680-0921-4-C/results/970101908/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:10","STORET",7,NA,2022-09-21 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.515,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14075","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-4996680-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-4996680","PROVO R. AT CENTER ST XING EAST OF UTAH LAKE BOAT HARBOR",NA,NA,NA,NA,"40.2369000000","-111.7316000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101910",NA,"as N","Nitrogen","Dissolved","0.295","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-4996680-0921-4-C/results/970101910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:10","STORET",7,NA,2022-09-21 20:00:00,NA,"River/Stream",NA,"16020201",NA,NA,NA,NA,"40.2369000000","-111.7316000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.295,"MG/L","Numeric","Not Reviewed","Uncensored",40.2369,-111.7316,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14076","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996903-0518-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-18,"10:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101919","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996903-0518-4-C/results/970101919/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:10","STORET",7,NA,2022-05-18 17:49:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14077","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996903-0518-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-18,"10:49:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101923","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996903-0518-4-C/results/970101923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:10","STORET",7,NA,2022-05-18 17:49:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14078","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996903-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101949","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996903-0614-4-C/results/970101949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:12","STORET",7,NA,2022-06-14 20:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14079","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996903-0614-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101951","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996903-0614-4-C/results/970101951/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:12","STORET",7,NA,2022-06-14 20:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14080","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220720-4996903-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-20,"09:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101956","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-4996903-0720-4-C/results/970101956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:12","STORET",7,NA,2022-07-20 16:44:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14081","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220720-4996903-0720-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-20,"09:44:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101957","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-4996903-0720-4-C/results/970101957/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:12","STORET",7,NA,2022-07-20 16:44:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14082","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220921-4996903-0921-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-21,"10:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101963","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-4996903-0921-4-C/results/970101963/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:13","STORET",7,NA,2022-09-21 17:58:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14083","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220921-4996903-0921-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-21,"10:58:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996903","Little Hobble Creek above confluence with Maple Creek (equipment blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101967","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-4996903-0921-4-C/results/970101967/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:13","STORET",7,NA,2022-09-21 17:58:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14084","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996905-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"09:44:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101970",NA,"as N","Nitrogen","Dissolved","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996905-0518-4-C/results/970101970/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:14","STORET",7,NA,2022-05-18 16:44:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14085","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996905-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"09:44:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101972",NA,"as N","Nitrogen","Total","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996905-0518-4-C/results/970101972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:14","STORET",7,NA,2022-05-18 16:44:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14086","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996905-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:16:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101983",NA,"as N","Nitrogen","Total","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996905-0614-4-C/results/970101983/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:14","STORET",7,NA,2022-06-14 19:16:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14087","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996905-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:16:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996905","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck)",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101987",NA,"as N","Nitrogen","Dissolved","0.603","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996905-0614-4-C/results/970101987/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:14","STORET",7,NA,2022-06-14 19:16:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.603,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14088","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996906-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"09:46:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101992",NA,"as N","Nitrogen","Dissolved","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996906-0518-4-C/results/970101992/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:15","STORET",7,NA,2022-05-18 16:46:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14089","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996906-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"09:46:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970101993",NA,"as N","Nitrogen","Total","0.348","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996906-0518-4-C/results/970101993/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:15","STORET",7,NA,2022-05-18 16:46:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.348,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14090","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996906-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102002",NA,"as N","Nitrogen","Total","0.588","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996906-0614-4-C/results/970102002/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:16","STORET",7,NA,2022-06-14 19:25:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.588,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14091","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996906-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996906","Main Creek at Roundy Lane (BL confl. of Main Creek and Little Hobble Ck) Replicate of 4996905",NA,NA,NA,NA,"40.3861100000","-111.4348200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102005",NA,"as N","Nitrogen","Dissolved","0.59","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996906-0614-4-C/results/970102005/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:16","STORET",7,NA,2022-06-14 19:25:00,NA,"River/Stream","Replicate of 4996905","16020203",NA,NA,NA,NA,"40.3861100000","-111.4348200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.59,"MG/L","Numeric","Not Reviewed","Uncensored",40.38611,-111.43482,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14092","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996910-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"09:13:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102010",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996910-0518-4-C/results/970102010/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:17","STORET",7,NA,2022-05-18 16:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14093","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996910-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"09:13:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102011",NA,"as N","Nitrogen","Total","0.214","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996910-0518-4-C/results/970102011/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:17","STORET",7,NA,2022-05-18 16:13:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.214,"MG/L","Numeric","Not Reviewed","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14094","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996910-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:53:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102021",NA,"as N","Nitrogen","Total","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996910-0614-4-C/results/970102021/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:17","STORET",7,NA,2022-06-14 18:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14095","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996910-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:53:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996910","LITTLE HOBBLE CK AT ROUND VALLEY RD XING",NA,NA,NA,NA,"40.3755100000","-111.4246300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102022",NA,"as N","Nitrogen","Dissolved","0.292","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996910-0614-4-C/results/970102022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:17","STORET",7,NA,2022-06-14 18:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3755100000","-111.4246300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.292,"MG/L","Numeric","Not Reviewed","Uncensored",40.37551,-111.42463,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14096","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996913-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"08:53:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102026",NA,"as N","Nitrogen","Total","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996913-0518-4-C/results/970102026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:18","STORET",7,NA,2022-05-18 15:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14097","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-4996913-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"08:53:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102030",NA,"as N","Nitrogen","Dissolved","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-4996913-0518-4-C/results/970102030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:18","STORET",7,NA,2022-05-18 15:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14098","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996913-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:32:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102034",NA,"as N","Nitrogen","Total","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996913-0614-4-C/results/970102034/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:19","STORET",7,NA,2022-06-14 18:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14099","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-4996913-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"11:32:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102038",NA,"as N","Nitrogen","Dissolved","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-4996913-0614-4-C/results/970102038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:19","STORET",7,NA,2022-06-14 18:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14100","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5900970-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900970","CUTLER RES AB DAM 01",NA,NA,NA,NA,"41.8377000000","-112.0443900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102086",NA,"as N","Nitrogen","Dissolved","0.409","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900970-0726-2-C/results/970102086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:21","STORET",7,NA,2022-07-26 19:00:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.409,"MG/L","Numeric","Not Reviewed","Uncensored",41.8377,-112.04439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14101","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5900970-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-26,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900970","CUTLER RES AB DAM 01",NA,NA,NA,NA,"41.8377000000","-112.0443900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102100",NA,"as N","Nitrogen","Total","0.401","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900970-0726-2-C/results/970102100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:21","STORET",7,NA,2022-07-26 19:00:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8377000000","-112.0443900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",3,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.401,"MG/L","Numeric","Not Reviewed","Uncensored",41.8377,-112.04439,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14102","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5900980-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900980","CUTLER RES E OF HIGHWAY BRIDGE 02",NA,NA,NA,NA,"41.8435300000","-112.0024500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102101",NA,"as N","Nitrogen","Dissolved","0.861","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900980-0726-2-C/results/970102101/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:21","STORET",7,NA,2022-07-26 18:40:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.861,"MG/L","Numeric","Not Reviewed","Uncensored",41.84353,-112.00245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14103","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5900980-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-26,"11:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900980","CUTLER RES E OF HIGHWAY BRIDGE 02",NA,NA,NA,NA,"41.8435300000","-112.0024500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102110",NA,"as N","Nitrogen","Total","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900980-0726-2-C/results/970102110/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:21","STORET",7,NA,2022-07-26 18:40:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8435300000","-112.0024500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",41.84353,-112.00245,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14104","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5900990-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-26,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900990","CUTLER RES AT CNFL / CLAY SLOUGH 03",NA,NA,NA,NA,"41.8249300000","-111.9532800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102116",NA,"as N","Nitrogen","Total","0.898","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900990-0726-2-C/results/970102116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:22","STORET",7,NA,2022-07-26 18:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.898,"MG/L","Numeric","Not Reviewed","Uncensored",41.82493,-111.95328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14105","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5900990-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-26,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5900990","CUTLER RES AT CNFL / CLAY SLOUGH 03",NA,NA,NA,NA,"41.8249300000","-111.9532800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102120",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5900990-0726-2-C/results/970102120/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:22","STORET",7,NA,2022-07-26 18:10:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.8249300000","-111.9532800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.82493,-111.95328,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14106","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5901000-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-26,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102131",NA,"as N","Nitrogen","Dissolved","1.05","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5901000-0726-2-C/results/970102131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:23","STORET",7,NA,2022-07-26 17:50:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.05,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14107","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5901000-0726-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-26,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5901000","CUTLER RES BENSION MARINA BRIDGE 04",NA,NA,NA,NA,"41.7871500000","-111.9549500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102138",NA,"as N","Nitrogen","Total","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5901000-0726-2-C/results/970102138/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:23","STORET",7,NA,2022-07-26 17:50:00,NA,"Lake",NA,"16010202",NA,NA,NA,NA,"41.7871500000","-111.9549500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",41.78715,-111.95495,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14108","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5902750-0728-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-28,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5902750","TONY GROVE LAKE 01",NA,NA,NA,NA,"41.8932600000","-111.6428600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102148",NA,"as N","Nitrogen","Total","0.387","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902750-0728-2-C/results/970102148/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:24","STORET",7,NA,2022-07-28 19:10:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.8932600000","-111.6428600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.387,"MG/L","Numeric","Not Reviewed","Uncensored",41.89326,-111.64286,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14109","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5902750-0728-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-28,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5902750","TONY GROVE LAKE 01",NA,NA,NA,NA,"41.8932600000","-111.6428600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102150",NA,"as N","Nitrogen","Dissolved","0.285","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902750-0728-2-C/results/970102150/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:24","STORET",7,NA,2022-07-28 19:10:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.8932600000","-111.6428600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.285,"MG/L","Numeric","Not Reviewed","Uncensored",41.89326,-111.64286,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14110","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5902750-0728-29-C","Sample-Routine","Water",NA,2022-07-28,"12:30:00","MST",NA,NA,NA,"Bottom","3.4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5902750","TONY GROVE LAKE 01",NA,NA,NA,NA,"41.8932600000","-111.6428600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102155",NA,"as N","Nitrogen","Dissolved","0.198","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902750-0728-29-C/results/970102155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:24","STORET",7,NA,2022-07-28 19:30:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.8932600000","-111.6428600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.198,"MG/L","Numeric","Pass","Uncensored",41.89326,-111.64286,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14111","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5902750-0728-29-C","Sample-Routine","Water",NA,2022-07-28,"12:30:00","MST",NA,NA,NA,"Bottom","3.4","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5902750","TONY GROVE LAKE 01",NA,NA,NA,NA,"41.8932600000","-111.6428600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102170",NA,"as N","Nitrogen","Total","0.302","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902750-0728-29-C/results/970102170/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:25","STORET",7,NA,2022-07-28 19:30:00,NA,"Lake",NA,"16010203",NA,NA,NA,NA,"41.8932600000","-111.6428600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.302,"MG/L","Numeric","Not Reviewed","Uncensored",41.89326,-111.64286,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.4,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14112","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5902780-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5902780","STREAM AB TONY GROVE LAKE",NA,NA,NA,NA,"41.8974300000","-111.6446600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102186","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902780-0728-4-C/results/970102186/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:26","STORET",7,NA,2022-07-28 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.8974300000","-111.6446600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",41.89743,-111.64466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14113","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220726-5902780-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"13:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5902780","STREAM AB TONY GROVE LAKE",NA,NA,NA,NA,"41.8974300000","-111.6446600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102196",NA,"as N","Nitrogen","Total","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220726-5902780-0728-4-C/results/970102196/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:26","STORET",7,NA,2022-07-28 20:15:00,NA,"River/Stream",NA,"16010203",NA,NA,NA,NA,"41.8974300000","-111.6446600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",5,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",41.89743,-111.64466,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14114","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-5910280-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"09:23:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102211",NA,"as N","Nitrogen","Dissolved","1.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910280-0518-4-C/results/970102211/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:27","STORET",7,NA,2022-05-18 16:23:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14115","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-5910280-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"09:23:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102216",NA,"as N","Nitrogen","Total","1.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910280-0518-4-C/results/970102216/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:27","STORET",7,NA,2022-05-18 16:23:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.96,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14116","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-5910280-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:02:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102219",NA,"as N","Nitrogen","Total","2.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910280-0614-4-C/results/970102219/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:28","STORET",7,NA,2022-06-14 19:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14117","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-5910280-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:02:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102220",NA,"as N","Nitrogen","Dissolved","2.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910280-0614-4-C/results/970102220/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:28","STORET",7,NA,2022-06-14 19:02:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14118","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-5910290-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"10:28:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102257",NA,"as N","Nitrogen","Dissolved","0.792","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910290-0518-4-C/results/970102257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:30","STORET",7,NA,2022-05-18 17:28:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.792,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14119","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-5910290-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"10:28:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102262",NA,"as N","Nitrogen","Total","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910290-0518-4-C/results/970102262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:30","STORET",7,NA,2022-05-18 17:28:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14120","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-5910290-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:11:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102267",NA,"as N","Nitrogen","Total","0.832","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910290-0614-4-C/results/970102267/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:30","STORET",7,NA,2022-06-14 20:11:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.832,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14121","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-5910290-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:11:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102271",NA,"as N","Nitrogen","Dissolved","0.789","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910290-0614-4-C/results/970102271/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:30","STORET",7,NA,2022-06-14 20:11:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.789,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14122","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220720-5910290-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:11:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102274",NA,"as N","Nitrogen","Dissolved","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910290-0720-4-C/results/970102274/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:31","STORET",7,NA,2022-07-20 16:11:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14123","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220720-5910290-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:11:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102282",NA,"as N","Nitrogen","Total","0.364","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910290-0720-4-C/results/970102282/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:31","STORET",7,NA,2022-07-20 16:11:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.364,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14124","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220921-5910290-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:29:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102283",NA,"as N","Nitrogen","Dissolved","0.277","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910290-0921-4-C/results/970102283/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:32","STORET",7,NA,2022-09-21 17:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.277,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14125","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220921-5910290-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:29:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910290","SPRING CK AB CNFL / MAIN CK",NA,NA,NA,NA,"40.4041400000","-111.4585900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102291",NA,"as N","Nitrogen","Total","0.497","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910290-0921-4-C/results/970102291/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:32","STORET",7,NA,2022-09-21 17:29:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4041400000","-111.4585900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.497,"MG/L","Numeric","Not Reviewed","Uncensored",40.40414,-111.45859,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14126","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-5910619-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"10:39:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102303",NA,"as N","Nitrogen","Dissolved","0.374","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910619-0518-4-C/results/970102303/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:33","STORET",7,NA,2022-05-18 17:39:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.374,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14127","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-5910619-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"10:39:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102309",NA,"as N","Nitrogen","Total","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910619-0518-4-C/results/970102309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:33","STORET",7,NA,2022-05-18 17:39:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.331,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14128","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-5910619-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:32:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102319",NA,"as N","Nitrogen","Dissolved","0.438","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910619-0614-4-C/results/970102319/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:33","STORET",7,NA,2022-06-14 20:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.438,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14129","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-5910619-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"13:32:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102326",NA,"as N","Nitrogen","Total","0.502","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910619-0614-4-C/results/970102326/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:34","STORET",7,NA,2022-06-14 20:32:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.502,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14130","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220720-5910619-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:31:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102328",NA,"as N","Nitrogen","Dissolved","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910619-0720-4-C/results/970102328/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:34","STORET",7,NA,2022-07-20 16:31:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14131","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220720-5910619-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"09:31:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102329",NA,"as N","Nitrogen","Total","0.613","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910619-0720-4-C/results/970102329/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:34","STORET",7,NA,2022-07-20 16:31:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.613,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14132","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220921-5910619-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102367",NA,"as N","Nitrogen","Dissolved","0.334","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910619-0921-4-C/results/970102367/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:36","STORET",7,NA,2022-09-21 17:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.334,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14133","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220921-5910619-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102373",NA,"as N","Nitrogen","Total","0.507","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910619-0921-4-C/results/970102373/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:36","STORET",7,NA,2022-09-21 17:50:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.507,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14134","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-5910620-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"10:04:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102378",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910620-0518-4-C/results/970102378/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:36","STORET",7,NA,2022-05-18 17:04:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14135","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220518-5910620-0518-4-C","Sample-Routine","Water",NA,2022-05-18,"10:04:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102379",NA,"as N","Nitrogen","Dissolved","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220518-5910620-0518-4-C/results/970102379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:36","STORET",7,NA,2022-05-18 17:04:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14136","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-5910620-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:53:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102387",NA,"as N","Nitrogen","Dissolved","0.394","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910620-0614-4-C/results/970102387/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:37","STORET",7,NA,2022-06-14 19:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.394,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14137","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220614-5910620-0614-4-C","Sample-Routine","Water",NA,2022-06-14,"12:53:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102389",NA,"as N","Nitrogen","Total","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220614-5910620-0614-4-C/results/970102389/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:37","STORET",7,NA,2022-06-14 19:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14138","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220720-5910620-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"08:53:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102396",NA,"as N","Nitrogen","Total","0.379","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910620-0720-4-C/results/970102396/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:37","STORET",7,NA,2022-07-20 15:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.379,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14139","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220720-5910620-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"08:53:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102400",NA,"as N","Nitrogen","Dissolved","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220720-5910620-0720-4-C/results/970102400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:37","STORET",7,NA,2022-07-20 15:53:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14140","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220921-5910620-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:09:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102404",NA,"as N","Nitrogen","Dissolved","0.193","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910620-0921-4-C/results/970102404/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:38","STORET",7,NA,2022-09-21 17:09:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.193,"MG/L","Numeric","Pass","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14141","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MAINCK220921-5910620-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:09:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5910620","MAIN CK AB CNFL / SPRING CK",NA,NA,NA,NA,"40.4017500000","-111.4592100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102409",NA,"as N","Nitrogen","Total","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MAINCK220921-5910620-0921-4-C/results/970102409/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:38","STORET",7,NA,2022-09-21 17:09:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4017500000","-111.4592100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",40.40175,-111.45921,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14142","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-5919910-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102422",NA,"as N","Nitrogen","Dissolved","17.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-5919910-0411-4-C/results/970102422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:39","STORET",7,NA,2022-04-11 18:50:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",17.9,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14143","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220404-5919910-0411-4-C","Sample-Routine","Water",NA,2022-04-11,"11:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102427",NA,"as N","Nitrogen","Total","18.2","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220404-5919910-0411-4-C/results/970102427/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:39","STORET",7,NA,2022-04-11 18:50:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",18.2,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14144","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-5919910-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102430",NA,"as N","Nitrogen","Dissolved","6.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-5919910-0517-4-C/results/970102430/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:39","STORET",7,NA,2022-05-17 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14145","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220516-5919910-0517-4-C","Sample-Routine","Water",NA,2022-05-17,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102436",NA,"as N","Nitrogen","Total","6.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220516-5919910-0517-4-C/results/970102436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:39","STORET",7,NA,2022-05-17 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",6.53,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14146","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-5919910-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102448",NA,"as N","Nitrogen","Total","5.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-5919910-0609-4-C/results/970102448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:40","STORET",7,NA,2022-06-09 17:20:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14147","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220606-5919910-0609-4-C","Sample-Routine","Water",NA,2022-06-09,"10:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102462",NA,"as N","Nitrogen","Dissolved","5.21","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220606-5919910-0609-4-C/results/970102462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:40","STORET",7,NA,2022-06-09 17:20:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",5.21,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14148","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-5919910-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:00:00","MST",NA,NA,NA,"Surface","0.223","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102469",NA,"as N","Nitrogen","Total","3.52","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-5919910-0720-4-C/results/970102469/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:41","STORET",7,NA,2022-07-20 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.52,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.223,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14149","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220718-5919910-0720-4-C","Sample-Routine","Water",NA,2022-07-20,"11:00:00","MST",NA,NA,NA,"Surface","0.223","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102477",NA,"as N","Nitrogen","Dissolved","3.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220718-5919910-0720-4-C/results/970102477/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:41","STORET",7,NA,2022-07-20 18:00:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.55,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.223,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14150","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-5919910-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102489",NA,"as N","Nitrogen","Dissolved","3.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-5919910-0817-4-C/results/970102489/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:41","STORET",7,NA,2022-08-17 17:10:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.16,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14151","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220815-5919910-0817-4-C","Sample-Routine","Water",NA,2022-08-17,"10:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102497",NA,"as N","Nitrogen","Total","2.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220815-5919910-0817-4-C/results/970102497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:41","STORET",7,NA,2022-08-17 17:10:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.76,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14152","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-5919910-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102511",NA,"as N","Nitrogen","Dissolved","3.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-5919910-0921-4-C/results/970102511/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:42","STORET",7,NA,2022-09-21 17:45:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14153","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UTLK220919-5919910-0921-4-C","Sample-Routine","Water",NA,2022-09-21,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5919910","DRAIN AT 4000 WEST 5000 SOUTH",NA,NA,NA,NA,"40.1438700000","-111.7494600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102513",NA,"as N","Nitrogen","Total","3.36","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UTLK220919-5919910-0921-4-C/results/970102513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:42","STORET",7,NA,2022-09-21 17:45:00,NA,"Storm Sewer",NA,"16020201",NA,NA,NA,NA,"40.1438700000","-111.7494600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.36,"MG/L","Numeric","Not Reviewed","Uncensored",40.14387,-111.74946,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14154","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220523-5919920-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:24:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102519",NA,"as N","Nitrogen","Total","1.1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919920-0523-4-C/results/970102519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:43","STORET",7,NA,2022-05-23 18:24:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.1,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14155","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220523-5919920-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:24:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919920","SPANISH FORK R AT HIGHWAY 91",NA,NA,NA,NA,"40.0949600000","-111.6549300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102524",NA,"as N","Nitrogen","Dissolved","1.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919920-0523-4-C/results/970102524/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:43","STORET",7,NA,2022-05-23 18:24:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.0949600000","-111.6549300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.03,"MG/L","Numeric","Not Reviewed","Uncensored",40.09496,-111.65493,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14156","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220523-5919942-0523-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-23,"13:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102527","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919942-0523-4-C/results/970102527/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:43","STORET",7,NA,2022-05-23 20:38:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14157","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220523-5919942-0523-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-23,"13:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919942","EQUIPMENT BLANK-Spanish Fork River",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102533","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919942-0523-4-C/results/970102533/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:43","STORET",7,NA,2022-05-23 20:38:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14158","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220523-5919970-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:59:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102540",NA,"as N","Nitrogen","Dissolved","1.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919970-0523-4-C/results/970102540/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:44","STORET",7,NA,2022-05-23 18:59:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.56,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14159","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220523-5919970-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:59:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919970","SPANISH FORK R AT 5000 SOUTH",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102542",NA,"as N","Nitrogen","Total","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919970-0523-4-C/results/970102542/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:44","STORET",7,NA,2022-05-23 18:59:00,NA,"River/Stream",NA,"16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14160","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220523-5919971-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102549",NA,"as N","Nitrogen","Total","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919971-0523-4-C/results/970102549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:45","STORET",7,NA,2022-05-23 18:57:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14161","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-SPANISHFKR220523-5919971-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5919971","SPANISH FORK R AT 5000 SOUTH Replicate of 5919970",NA,NA,NA,NA,"40.1407800000","-111.7140900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102550",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-01,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-SPANISHFKR220523-5919971-0523-4-C/results/970102550/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:45","STORET",7,NA,2022-05-23 18:57:00,NA,"River/Stream","Replicate of 5919970","16020202",NA,NA,NA,NA,"40.1407800000","-111.7140900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",49,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",40.14078,-111.71409,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14162","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220504-5923310-0504-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-04,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102558",NA,"as N","Nitrogen","Total","0.412","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220504-5923310-0504-2-C/results/970102558/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:45","STORET",7,NA,2022-05-04 17:30:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.412,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14163","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220504-5923310-0504-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-05-04,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102559",NA,"as N","Nitrogen","Dissolved","0.705","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220504-5923310-0504-2-C/results/970102559/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:45","STORET",7,NA,2022-05-04 17:30:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.705,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14164","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220504-5923310-0504-29-C","Sample-Routine","Water",NA,2022-05-04,"10:55:00","MST",NA,NA,NA,"Bottom","31.7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102567",NA,"as N","Nitrogen","Total","0.394","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220504-5923310-0504-29-C/results/970102567/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:46","STORET",7,NA,2022-05-04 17:55:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.394,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",31.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14165","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220504-5923310-0504-29-C","Sample-Routine","Water",NA,2022-05-04,"10:55:00","MST",NA,NA,NA,"Bottom","31.7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102584",NA,"as N","Nitrogen","Dissolved","0.709","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220504-5923310-0504-29-C/results/970102584/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:46","STORET",7,NA,2022-05-04 17:55:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.709,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",31.7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14166","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923310-0617-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-17,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102593",NA,"as N","Nitrogen","Dissolved","0.516","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-2-C/results/970102593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:46","STORET",7,NA,2022-06-17 15:00:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.516,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14167","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923310-0617-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-17,"08:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102594",NA,"as N","Nitrogen","Total","0.426","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-2-C/results/970102594/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:46","STORET",7,NA,2022-06-17 15:00:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.426,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14168","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923310-0617-23-C","Sample-Routine","Water",NA,2022-06-17,"08:35:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102606",NA,"as N","Nitrogen","Total","0.332","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-23-C/results/970102606/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:47","STORET",7,NA,2022-06-17 15:35:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.332,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14169","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923310-0617-23-C","Sample-Routine","Water",NA,2022-06-17,"08:35:00","MST",NA,NA,NA,"AboveThermoclin","5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102609",NA,"as N","Nitrogen","Dissolved","0.585","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-23-C/results/970102609/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:47","STORET",7,NA,2022-06-17 15:35:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.585,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14170","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923310-0617-27-C","Sample-Routine","Water",NA,2022-06-17,"08:45:00","MST",NA,NA,NA,"BelowThermoclin","8","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102614",NA,"as N","Nitrogen","Total","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-27-C/results/970102614/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:48","STORET",7,NA,2022-06-17 15:45:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14171","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923310-0617-27-C","Sample-Routine","Water",NA,2022-06-17,"08:45:00","MST",NA,NA,NA,"BelowThermoclin","8","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102621",NA,"as N","Nitrogen","Dissolved","0.705","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-27-C/results/970102621/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:48","STORET",7,NA,2022-06-17 15:45:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.705,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",8,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14172","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923310-0617-29-C","Sample-Routine","Water",NA,2022-06-17,"08:15:00","MST",NA,NA,NA,"Bottom","33","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102622",NA,"as N","Nitrogen","Dissolved","1.69","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-29-C/results/970102622/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:48","STORET",7,NA,2022-06-17 15:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.69,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",33,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14173","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923310-0617-29-C","Sample-Routine","Water",NA,2022-06-17,"08:15:00","MST",NA,NA,NA,"Bottom","33","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102635",NA,"as N","Nitrogen","Total","0.429","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923310-0617-29-C/results/970102635/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:48","STORET",7,NA,2022-06-17 15:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.429,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",33,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14174","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923310-0907-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-07,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102648",NA,"as N","Nitrogen","Dissolved","0.837","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-2-C/results/970102648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:49","STORET",7,NA,2022-09-07 18:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.837,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14175","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923310-0907-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-07,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102652",NA,"as N","Nitrogen","Total","0.309","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-2-C/results/970102652/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:49","STORET",7,NA,2022-09-07 18:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.309,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14176","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923310-0907-23-C","Sample-Routine","Water",NA,2022-09-07,"11:50:00","MST",NA,NA,NA,"AboveThermoclin","19.99","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102660",NA,"as N","Nitrogen","Dissolved","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-23-C/results/970102660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:49","STORET",7,NA,2022-09-07 18:50:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",19.99,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14177","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923310-0907-23-C","Sample-Routine","Water",NA,2022-09-07,"11:50:00","MST",NA,NA,NA,"AboveThermoclin","19.99","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102666",NA,"as N","Nitrogen","Total","0.349","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-23-C/results/970102666/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:50","STORET",7,NA,2022-09-07 18:50:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.349,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",19.99,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14178","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923310-0907-29-C","Sample-Routine","Water",NA,2022-09-07,"11:40:00","MST",NA,NA,NA,"Bottom","29","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102675",NA,"as N","Nitrogen","Dissolved","0.782","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-29-C/results/970102675/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:50","STORET",7,NA,2022-09-07 18:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.782,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",29,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14179","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923310-0907-29-C","Sample-Routine","Water",NA,2022-09-07,"11:40:00","MST",NA,NA,NA,"Bottom","29","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923310","ROCKPORT RES AB DAM 01",NA,NA,NA,NA,"40.7863400000","-111.4046500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102690",NA,"as N","Nitrogen","Total","0.483","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923310-0907-29-C/results/970102690/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:50","STORET",7,NA,2022-09-07 18:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7863400000","-111.4046500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.483,"MG/L","Numeric","Not Reviewed","Uncensored",40.78634,-111.40465,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",29,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14180","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923320-0617-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-17,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923320","ROCKPORT RES MIDLAKE EMAP and 02",NA,NA,NA,NA,"40.7707900000","-111.3960300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102701",NA,"as N","Nitrogen","Dissolved","0.699","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923320-0617-2-C/results/970102701/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:51","STORET",7,NA,2022-06-17 16:05:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7707900000","-111.3960300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.699,"MG/L","Numeric","Not Reviewed","Uncensored",40.77079,-111.39603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14181","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923320-0617-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-17,"09:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923320","ROCKPORT RES MIDLAKE EMAP and 02",NA,NA,NA,NA,"40.7707900000","-111.3960300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102703",NA,"as N","Nitrogen","Total","0.452","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923320-0617-2-C/results/970102703/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:51","STORET",7,NA,2022-06-17 16:05:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7707900000","-111.3960300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.452,"MG/L","Numeric","Not Reviewed","Uncensored",40.77079,-111.39603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14182","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923320-0617-29-C","Sample-Routine","Water",NA,2022-06-17,"09:15:00","MST",NA,NA,NA,"Bottom","18","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923320","ROCKPORT RES MIDLAKE EMAP and 02",NA,NA,NA,NA,"40.7707900000","-111.3960300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102711",NA,"as N","Nitrogen","Total","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-06,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923320-0617-29-C/results/970102711/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:51","STORET",7,NA,2022-06-17 16:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7707900000","-111.3960300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",40.77079,-111.39603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",18,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14183","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220617-5923320-0617-29-C","Sample-Routine","Water",NA,2022-06-17,"09:15:00","MST",NA,NA,NA,"Bottom","18","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923320","ROCKPORT RES MIDLAKE EMAP and 02",NA,NA,NA,NA,"40.7707900000","-111.3960300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102712",NA,"as N","Nitrogen","Dissolved","0.57","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-07,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220617-5923320-0617-29-C/results/970102712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:51","STORET",7,NA,2022-06-17 16:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7707900000","-111.3960300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.57,"MG/L","Numeric","Not Reviewed","Uncensored",40.77079,-111.39603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",18,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14184","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923320-0907-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-07,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923320","ROCKPORT RES MIDLAKE EMAP and 02",NA,NA,NA,NA,"40.7707900000","-111.3960300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102718",NA,"as N","Nitrogen","Total","0.707","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923320-0907-2-C/results/970102718/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:52","STORET",7,NA,2022-09-07 19:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7707900000","-111.3960300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.707,"MG/L","Numeric","Not Reviewed","Uncensored",40.77079,-111.39603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14185","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923320-0907-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-07,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923320","ROCKPORT RES MIDLAKE EMAP and 02",NA,NA,NA,NA,"40.7707900000","-111.3960300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102727",NA,"as N","Nitrogen","Dissolved","1.19","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923320-0907-2-C/results/970102727/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:52","STORET",7,NA,2022-09-07 19:15:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7707900000","-111.3960300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.19,"MG/L","Numeric","Not Reviewed","Uncensored",40.77079,-111.39603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14186","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923320-0907-29-C","Sample-Routine","Water",NA,2022-09-07,"12:30:00","MST",NA,NA,NA,"Bottom","14.04","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923320","ROCKPORT RES MIDLAKE EMAP and 02",NA,NA,NA,NA,"40.7707900000","-111.3960300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102729",NA,"as N","Nitrogen","Total","0.254","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923320-0907-29-C/results/970102729/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:53","STORET",7,NA,2022-09-07 19:30:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7707900000","-111.3960300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.254,"MG/L","Numeric","Not Reviewed","Uncensored",40.77079,-111.39603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",14.04,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14187","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220907-5923320-0907-29-C","Sample-Routine","Water",NA,2022-09-07,"12:30:00","MST",NA,NA,NA,"Bottom","14.04","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923320","ROCKPORT RES MIDLAKE EMAP and 02",NA,NA,NA,NA,"40.7707900000","-111.3960300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102732",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220907-5923320-0907-29-C/results/970102732/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:53","STORET",7,NA,2022-09-07 19:30:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7707900000","-111.3960300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.77079,-111.39603,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",14.04,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14188","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5923960-0610-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102742",NA,"as N","Nitrogen","Total","0.336","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-2-C/results/970102742/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:53","STORET",7,NA,2022-06-10 18:30:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.336,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14189","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5923960-0610-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-10,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102745",NA,"as N","Nitrogen","Dissolved","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-2-C/results/970102745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:53","STORET",7,NA,2022-06-10 18:30:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14190","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5923960-0610-23-C","Sample-Routine","Water",NA,2022-06-10,"12:00:00","MST",NA,NA,NA,"AboveThermoclin","1.99","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102750",NA,"as N","Nitrogen","Dissolved","0.424","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-23-C/results/970102750/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:54","STORET",7,NA,2022-06-10 19:00:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.424,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.99,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14191","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5923960-0610-23-C","Sample-Routine","Water",NA,2022-06-10,"12:00:00","MST",NA,NA,NA,"AboveThermoclin","1.99","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102756",NA,"as N","Nitrogen","Total","0.327","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-23-C/results/970102756/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:54","STORET",7,NA,2022-06-10 19:00:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.327,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.99,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14192","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5923960-0610-27-C","Sample-Routine","Water",NA,2022-06-10,"12:05:00","MST",NA,NA,NA,"BelowThermoclin","5.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102757",NA,"as N","Nitrogen","Dissolved","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-27-C/results/970102757/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:54","STORET",7,NA,2022-06-10 19:05:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14193","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5923960-0610-27-C","Sample-Routine","Water",NA,2022-06-10,"12:05:00","MST",NA,NA,NA,"BelowThermoclin","5.02","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102762",NA,"as N","Nitrogen","Total","0.318","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-27-C/results/970102762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:54","STORET",7,NA,2022-06-10 19:05:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.318,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.02,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14194","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5923960-0610-29-C","Sample-Routine","Water",NA,2022-06-10,"11:55:00","MST",NA,NA,NA,"Bottom","18.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102775",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-29-C/results/970102775/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:55","STORET",7,NA,2022-06-10 18:55:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",18.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14195","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5923960-0610-29-C","Sample-Routine","Water",NA,2022-06-10,"11:55:00","MST",NA,NA,NA,"Bottom","18.01","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102780",NA,"as N","Nitrogen","Dissolved","0.284","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5923960-0610-29-C/results/970102780/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:55","STORET",7,NA,2022-06-10 18:55:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.284,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",18.01,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14196","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5923960-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102795",NA,"as N","Nitrogen","Total","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-2-C/results/970102795/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:56","STORET",7,NA,2022-09-20 18:20:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14197","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5923960-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"11:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102798",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-2-C/results/970102798/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:56","STORET",7,NA,2022-09-20 18:20:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14198","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5923960-0920-23-C","Sample-Routine","Water",NA,2022-09-20,"11:45:00","MST",NA,NA,NA,"AboveThermoclin","8.1","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102805",NA,"as N","Nitrogen","Dissolved","0.182","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-23-C/results/970102805/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:56","STORET",7,NA,2022-09-20 18:45:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.182,"MG/L","Numeric","Pass","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",8.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14199","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5923960-0920-23-C","Sample-Routine","Water",NA,2022-09-20,"11:45:00","MST",NA,NA,NA,"AboveThermoclin","8.1","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102806",NA,"as N","Nitrogen","Total","0.176","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-23-C/results/970102806/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:56","STORET",7,NA,2022-09-20 18:45:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.176,"MG/L","Numeric","Pass","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",8.1,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14200","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5923960-0920-27-C","Sample-Routine","Water",NA,2022-09-20,"11:50:00","MST",NA,NA,NA,"BelowThermoclin","13","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102817",NA,"as N","Nitrogen","Dissolved","0.469","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-27-C/results/970102817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:57","STORET",7,NA,2022-09-20 18:50:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.469,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14201","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5923960-0920-27-C","Sample-Routine","Water",NA,2022-09-20,"11:50:00","MST",NA,NA,NA,"BelowThermoclin","13","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102819",NA,"as N","Nitrogen","Total","0.267","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-27-C/results/970102819/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:57","STORET",7,NA,2022-09-20 18:50:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.267,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",13,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14202","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5923960-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"11:40:00","MST",NA,NA,NA,"Bottom","14.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102823",NA,"as N","Nitrogen","Total","0.253","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-29-C/results/970102823/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:57","STORET",7,NA,2022-09-20 18:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.253,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",14.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14203","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5923960-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"11:40:00","MST",NA,NA,NA,"Bottom","14.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5923960","SMITH AND MOREHOUSE RES AB DAM 01",NA,NA,NA,NA,"40.7602300000","-111.1038000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102833",NA,"as N","Nitrogen","Dissolved","0.26","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5923960-0920-29-C/results/970102833/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:58","STORET",7,NA,2022-09-20 18:40:00,NA,"Lake",NA,"16020101",NA,NA,NA,NA,"40.7602300000","-111.1038000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.26,"MG/L","Numeric","Not Reviewed","Uncensored",40.76023,-111.1038,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",14.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14204","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5924000-0610-4-C","Sample-Routine","Water",NA,2022-06-10,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5924000","SMITH AND MOREHOUSE CK AB SMITH AND MOREHOUSE RES",NA,NA,NA,NA,"40.7424500000","-111.0993500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102862",NA,"as N","Nitrogen","Total","0.249","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5924000-0610-4-C/results/970102862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:58","STORET",7,NA,2022-06-10 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7424500000","-111.0993500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.249,"MG/L","Numeric","Not Reviewed","Uncensored",40.74245,-111.09935,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14205","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220609-5924000-0610-4-C","Sample-Routine","Water",NA,2022-06-10,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5924000","SMITH AND MOREHOUSE CK AB SMITH AND MOREHOUSE RES",NA,NA,NA,NA,"40.7424500000","-111.0993500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102869",NA,"as N","Nitrogen","Dissolved","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220609-5924000-0610-4-C/results/970102869/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:59","STORET",7,NA,2022-06-10 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7424500000","-111.0993500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",40.74245,-111.09935,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14206","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5924000-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5924000","SMITH AND MOREHOUSE CK AB SMITH AND MOREHOUSE RES",NA,NA,NA,NA,"40.7424500000","-111.0993500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102881",NA,"as N","Nitrogen","Total","0.457","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5924000-0920-4-C/results/970102881/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:59","STORET",7,NA,2022-09-20 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7424500000","-111.0993500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.457,"MG/L","Numeric","Not Reviewed","Uncensored",40.74245,-111.09935,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14207","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220919-5924000-0920-4-C","Sample-Routine","Water",NA,2022-09-20,"10:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5924000","SMITH AND MOREHOUSE CK AB SMITH AND MOREHOUSE RES",NA,NA,NA,NA,"40.7424500000","-111.0993500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102898",NA,"as N","Nitrogen","Dissolved","0.187","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220919-5924000-0920-4-C/results/970102898/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:34:59","STORET",7,NA,2022-09-20 17:20:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.7424500000","-111.0993500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.187,"MG/L","Numeric","Pass","Uncensored",40.74245,-111.09935,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14208","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5930980-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-12,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5930980","SCOFIELD RES W BAY 02",NA,NA,NA,NA,"39.7777400000","-111.1662900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102910",NA,"as N","Nitrogen","Dissolved","0.422","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930980-0712-2-C/results/970102910/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:00","STORET",7,NA,2022-07-12 19:05:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7777400000","-111.1662900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.422,"MG/L","Numeric","Not Reviewed","Uncensored",39.77774,-111.16629,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14209","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5930980-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-12,"12:05:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5930980","SCOFIELD RES W BAY 02",NA,NA,NA,NA,"39.7777400000","-111.1662900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102912",NA,"as N","Nitrogen","Total","0.539","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930980-0712-2-C/results/970102912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:00","STORET",7,NA,2022-07-12 19:05:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7777400000","-111.1662900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.539,"MG/L","Numeric","Not Reviewed","Uncensored",39.77774,-111.16629,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14210","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5930990-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-12,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5930990","SCOFIELD RES S BAY 03",NA,NA,NA,NA,"39.7602400000","-111.1540600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102923",NA,"as N","Nitrogen","Dissolved","0.421","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930990-0712-2-C/results/970102923/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:01","STORET",7,NA,2022-07-12 19:45:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7602400000","-111.1540600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.421,"MG/L","Numeric","Not Reviewed","Uncensored",39.76024,-111.15406,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14211","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5930990-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-12,"12:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5930990","SCOFIELD RES S BAY 03",NA,NA,NA,NA,"39.7602400000","-111.1540600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102926",NA,"as N","Nitrogen","Total","0.442","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930990-0712-2-C/results/970102926/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:01","STORET",7,NA,2022-07-12 19:45:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7602400000","-111.1540600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.442,"MG/L","Numeric","Not Reviewed","Uncensored",39.76024,-111.15406,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14212","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5930990-0712-29-C","Sample-Routine","Water",NA,2022-07-12,"12:50:00","MST",NA,NA,NA,"Bottom","3","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5930990","SCOFIELD RES S BAY 03",NA,NA,NA,NA,"39.7602400000","-111.1540600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102933",NA,"as N","Nitrogen","Total","0.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930990-0712-29-C/results/970102933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:01","STORET",7,NA,2022-07-12 19:50:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7602400000","-111.1540600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.49,"MG/L","Numeric","Not Reviewed","Uncensored",39.76024,-111.15406,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14213","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5930990-0712-29-C","Sample-Routine","Water",NA,2022-07-12,"12:50:00","MST",NA,NA,NA,"Bottom","3","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5930990","SCOFIELD RES S BAY 03",NA,NA,NA,NA,"39.7602400000","-111.1540600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102937",NA,"as N","Nitrogen","Dissolved","0.331","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5930990-0712-29-C/results/970102937/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:02","STORET",7,NA,2022-07-12 19:50:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7602400000","-111.1540600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.331,"MG/L","Numeric","Not Reviewed","Uncensored",39.76024,-111.15406,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14214","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931000-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102942",NA,"as N","Nitrogen","Total","0.422","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931000-0712-2-C/results/970102942/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:02","STORET",7,NA,2022-07-12 18:00:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.422,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14215","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931000-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-12,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102949",NA,"as N","Nitrogen","Dissolved","0.408","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931000-0712-2-C/results/970102949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:02","STORET",7,NA,2022-07-12 18:00:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.408,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14216","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931000-0712-29-C","Sample-Routine","Water",NA,2022-07-12,"11:30:00","MST",NA,NA,NA,"Bottom","7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102971",NA,"as N","Nitrogen","Dissolved","0.38","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931000-0712-29-C/results/970102971/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:03","STORET",7,NA,2022-07-12 18:30:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.38,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14217","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931000-0712-29-C","Sample-Routine","Water",NA,2022-07-12,"11:30:00","MST",NA,NA,NA,"Bottom","7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931000","SCOFIELD RES SW PERRY BOAT CAMP 04",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102974",NA,"as N","Nitrogen","Total","0.362","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931000-0712-29-C/results/970102974/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:03","STORET",7,NA,2022-07-12 18:30:00,NA,"Lake",NA,"14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.362,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14218","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931190-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-12,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931190","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102990",NA,"as N","Nitrogen","Total","0.448","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931190-0712-2-C/results/970102990/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:04","STORET",7,NA,2022-07-12 18:15:00,NA,"Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.448,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14219","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931190-0712-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-12,"11:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931190","SCOFIELD RES SW PERRY BOAT CAMP 04 Replicate of 5931000",NA,NA,NA,NA,"39.7895200000","-111.1348400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102991",NA,"as N","Nitrogen","Dissolved","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931190-0712-2-C/results/970102991/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:04","STORET",7,NA,2022-07-12 18:15:00,NA,"Lake","Replicate of 5931000","14060007",NA,NA,NA,NA,"39.7895200000","-111.1348400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",39.78952,-111.13484,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14220","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931467-0425-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-25,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102996","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931467-0425-4-C/results/970102996/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:04","STORET",7,NA,2022-04-25 20:55:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14221","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931467-0425-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-25,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970102999","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931467-0425-4-C/results/970102999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:04","STORET",7,NA,2022-04-25 20:55:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14222","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931467-0531-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-31,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103003","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931467-0531-4-C/results/970103003/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:05","STORET",7,NA,2022-06-01 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14223","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931467-0531-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-31,"17:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103009","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931467-0531-4-C/results/970103009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:05","STORET",7,NA,2022-06-01 00:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14224","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931467-0628-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-28,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103014","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931467-0628-4-C/results/970103014/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:05","STORET",7,NA,2022-06-28 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14225","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931467-0628-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-28,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103016","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931467-0628-4-C/results/970103016/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:06","STORET",7,NA,2022-06-28 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14226","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931467-0728-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-28,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103020","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931467-0728-4-C/results/970103020/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:06","STORET",7,NA,2022-07-28 19:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14227","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931467-0728-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-28,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103026","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931467-0728-4-C/results/970103026/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:06","STORET",7,NA,2022-07-28 19:15:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14228","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931467-0824-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-24,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103030","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931467-0824-4-C/results/970103030/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:07","STORET",7,NA,2022-08-24 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14229","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931467-0824-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-24,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931467","Equipment Blank - Mud Ck Restoration Project",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103032",NA,"as N","Nitrogen","Dissolved","0.372","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931467-0824-4-C/results/970103032/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:07","STORET",7,NA,2022-08-24 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.372,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14230","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931480-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103038",NA,"as N","Nitrogen","Total","0.676","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931480-0425-4-C/results/970103038/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:08","STORET",7,NA,2022-04-25 18:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.676,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14231","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931480-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103040",NA,"as N","Nitrogen","Dissolved","0.756","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931480-0425-4-C/results/970103040/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:08","STORET",7,NA,2022-04-25 18:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.756,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14232","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931480-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103047",NA,"as N","Nitrogen","Total","0.757","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931480-0531-4-C/results/970103047/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:08","STORET",7,NA,2022-05-31 21:10:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.757,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14233","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931480-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"14:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103048",NA,"as N","Nitrogen","Dissolved","0.817","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931480-0531-4-C/results/970103048/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:08","STORET",7,NA,2022-05-31 21:10:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.817,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14234","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931480-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103056",NA,"as N","Nitrogen","Dissolved","0.615","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931480-0628-4-C/results/970103056/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:09","STORET",7,NA,2022-06-28 18:40:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.615,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14235","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931480-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103057",NA,"as N","Nitrogen","Total","0.624","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931480-0628-4-C/results/970103057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:09","STORET",7,NA,2022-06-28 18:40:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.624,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14236","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931480-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103064",NA,"as N","Nitrogen","Dissolved","0.451","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931480-0728-4-C/results/970103064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:09","STORET",7,NA,2022-07-28 18:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.451,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14237","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931480-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103070",NA,"as N","Nitrogen","Total","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931480-0728-4-C/results/970103070/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:09","STORET",7,NA,2022-07-28 18:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14238","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931480-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103080",NA,"as N","Nitrogen","Dissolved","0.961","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931480-0824-4-C/results/970103080/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:10","STORET",7,NA,2022-08-24 18:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.961,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14239","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931480-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931480","Mud Creek in Scofield Town at Hwy 96 Xing",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103081",NA,"as N","Nitrogen","Total","0.603","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931480-0824-4-C/results/970103081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:10","STORET",7,NA,2022-08-24 18:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.603,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14240","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931481-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103083",NA,"as N","Nitrogen","Total","0.745","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931481-0425-4-C/results/970103083/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:11","STORET",7,NA,2022-04-25 18:50:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.745,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14241","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931481-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103084",NA,"as N","Nitrogen","Dissolved","0.56","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931481-0425-4-C/results/970103084/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:11","STORET",7,NA,2022-04-25 18:50:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.56,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14242","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931481-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103091",NA,"as N","Nitrogen","Total","0.73","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931481-0531-4-C/results/970103091/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:11","STORET",7,NA,2022-05-31 21:15:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.73,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14243","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931481-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"14:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103097",NA,"as N","Nitrogen","Dissolved","0.631","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931481-0531-4-C/results/970103097/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:11","STORET",7,NA,2022-05-31 21:15:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.631,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14244","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931481-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103100",NA,"as N","Nitrogen","Total","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931481-0628-4-C/results/970103100/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:12","STORET",7,NA,2022-06-28 18:50:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14245","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931481-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"11:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103108",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931481-0628-4-C/results/970103108/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:12","STORET",7,NA,2022-06-28 18:50:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14246","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931481-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103113",NA,"as N","Nitrogen","Total","0.306","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931481-0728-4-C/results/970103113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:12","STORET",7,NA,2022-07-28 18:35:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.306,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14247","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931481-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103116",NA,"as N","Nitrogen","Dissolved","0.816","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931481-0728-4-C/results/970103116/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:12","STORET",7,NA,2022-07-28 18:35:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.816,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14248","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931481-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103122",NA,"as N","Nitrogen","Total","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931481-0824-4-C/results/970103122/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:13","STORET",7,NA,2022-08-24 18:55:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14249","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931481-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931481","Mud Creek in Scofield Town at Hwy 96 Xing Replicate of 5931480",NA,NA,NA,NA,"39.7249000000","-111.1605400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103123",NA,"as N","Nitrogen","Dissolved","0.757","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931481-0824-4-C/results/970103123/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:13","STORET",7,NA,2022-08-24 18:55:00,NA,"River/Stream","Replicate of 5931480","14060007",NA,NA,NA,NA,"39.7249000000","-111.1605400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.757,"MG/L","Numeric","Not Reviewed","Uncensored",39.7249,-111.16054,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14250","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931510-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103131",NA,"as N","Nitrogen","Total","0.478","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931510-0425-4-C/results/970103131/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:13","STORET",7,NA,2022-04-25 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.478,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14251","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931510-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103133",NA,"as N","Nitrogen","Dissolved","0.894","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931510-0425-4-C/results/970103133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:13","STORET",7,NA,2022-04-25 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.894,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14252","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931510-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103137",NA,"as N","Nitrogen","Total","0.908","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931510-0531-4-C/results/970103137/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:14","STORET",7,NA,2022-05-31 20:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.908,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14253","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931510-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103142",NA,"as N","Nitrogen","Dissolved","0.87","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931510-0531-4-C/results/970103142/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:14","STORET",7,NA,2022-05-31 20:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.87,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14254","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931510-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103147",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931510-0628-4-C/results/970103147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:14","STORET",7,NA,2022-06-28 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14255","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931510-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103149",NA,"as N","Nitrogen","Total","0.987","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931510-0628-4-C/results/970103149/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:14","STORET",7,NA,2022-06-28 18:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.987,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14256","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931510-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103155",NA,"as N","Nitrogen","Dissolved","0.419","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931510-0728-4-C/results/970103155/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:15","STORET",7,NA,2022-07-28 17:55:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.419,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14257","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931510-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103156",NA,"as N","Nitrogen","Total","0.682","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931510-0728-4-C/results/970103156/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:15","STORET",7,NA,2022-07-28 17:55:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.682,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14258","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931510-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103165",NA,"as N","Nitrogen","Dissolved","0.327","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931510-0824-4-C/results/970103165/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:15","STORET",7,NA,2022-08-24 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.327,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14259","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931510-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931510","WINTER QUARTERS CREEK ABOVE CNFL / MUD CK",NA,NA,NA,NA,"39.7211400000","-111.1625300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103168",NA,"as N","Nitrogen","Total","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931510-0824-4-C/results/970103168/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:15","STORET",7,NA,2022-08-24 18:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7211400000","-111.1625300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",39.72114,-111.16253,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14260","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931513-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:28:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103173",NA,"as N","Nitrogen","Dissolved","0.503","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931513-0425-4-C/results/970103173/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:16","STORET",7,NA,2022-04-25 18:28:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.503,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14261","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931513-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:28:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103176",NA,"as N","Nitrogen","Total","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931513-0425-4-C/results/970103176/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:16","STORET",7,NA,2022-04-25 18:28:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14262","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931513-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103188",NA,"as N","Nitrogen","Dissolved","0.985","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931513-0531-4-C/results/970103188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:17","STORET",7,NA,2022-05-31 20:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.985,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14263","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931513-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"13:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103189",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931513-0531-4-C/results/970103189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:17","STORET",7,NA,2022-05-31 20:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14264","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931513-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103194",NA,"as N","Nitrogen","Total","0.997","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931513-0628-4-C/results/970103194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:18","STORET",7,NA,2022-06-28 18:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.997,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14265","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931513-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103195",NA,"as N","Nitrogen","Dissolved","1.16","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931513-0628-4-C/results/970103195/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:18","STORET",7,NA,2022-06-28 18:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.16,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14266","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931513-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103202",NA,"as N","Nitrogen","Total","0.816","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931513-0728-4-C/results/970103202/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:19","STORET",7,NA,2022-07-28 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.816,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14267","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931513-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103203",NA,"as N","Nitrogen","Dissolved","0.575","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931513-0728-4-C/results/970103203/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:19","STORET",7,NA,2022-07-28 18:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.575,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14268","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931513-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103212",NA,"as N","Nitrogen","Dissolved","0.732","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931513-0824-4-C/results/970103212/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:19","STORET",7,NA,2022-08-24 18:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.732,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14269","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931513-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931513","Winters Quarters Creek 0.3 mile above SR93 crossing and below diversion structure",NA,NA,NA,NA,"39.7214500000","-111.1675800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103215",NA,"as N","Nitrogen","Total","0.323","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931513-0824-4-C/results/970103215/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:19","STORET",7,NA,2022-08-24 18:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7214500000","-111.1675800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.323,"MG/L","Numeric","Not Reviewed","Uncensored",39.72145,-111.16758,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14270","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931545-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103217",NA,"as N","Nitrogen","Dissolved","0.626","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931545-0425-4-C/results/970103217/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:20","STORET",7,NA,2022-04-25 18:05:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.626,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14271","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931545-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103222",NA,"as N","Nitrogen","Total","0.512","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931545-0425-4-C/results/970103222/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:20","STORET",7,NA,2022-04-25 18:05:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.512,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14272","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931545-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103229",NA,"as N","Nitrogen","Total","0.464","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931545-0531-4-C/results/970103229/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:21","STORET",7,NA,2022-05-31 20:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.464,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14273","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931545-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"13:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103233",NA,"as N","Nitrogen","Dissolved","0.463","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931545-0531-4-C/results/970103233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:21","STORET",7,NA,2022-05-31 20:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.463,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14274","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931545-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103237",NA,"as N","Nitrogen","Dissolved","3.03","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931545-0628-4-C/results/970103237/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:21","STORET",7,NA,2022-06-28 17:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",3.03,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14275","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931545-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103238",NA,"as N","Nitrogen","Total","0.866","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931545-0628-4-C/results/970103238/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:21","STORET",7,NA,2022-06-28 17:50:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.866,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14276","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931545-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103250",NA,"as N","Nitrogen","Dissolved","0.441","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931545-0728-4-C/results/970103250/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:22","STORET",7,NA,2022-07-28 17:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.441,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14277","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931545-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103252",NA,"as N","Nitrogen","Total","0.473","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931545-0728-4-C/results/970103252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:22","STORET",7,NA,2022-07-28 17:45:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.473,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14278","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931545-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103257",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931545-0824-4-C/results/970103257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:22","STORET",7,NA,2022-08-24 18:05:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14279","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931545-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"11:05:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931545","MUD CREEK AT COUNTY RESTORATION SITE",NA,NA,NA,NA,"39.7148200000","-111.1626000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103260",NA,"as N","Nitrogen","Total","0.55","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931545-0824-4-C/results/970103260/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:22","STORET",7,NA,2022-08-24 18:05:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7148200000","-111.1626000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.55,"MG/L","Numeric","Not Reviewed","Uncensored",39.71482,-111.1626,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14280","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931645-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103265",NA,"as N","Nitrogen","Total","0.532","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931645-0425-4-C/results/970103265/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:23","STORET",7,NA,2022-04-25 19:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.532,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14281","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220425-5931645-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103266",NA,"as N","Nitrogen","Dissolved","0.482","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220425-5931645-0425-4-C/results/970103266/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:23","STORET",7,NA,2022-04-25 19:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.482,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14282","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931645-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103275",NA,"as N","Nitrogen","Dissolved","0.23","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931645-0531-4-C/results/970103275/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:23","STORET",7,NA,2022-05-31 21:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.23,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14283","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220531-5931645-0531-4-C","Sample-Routine","Water",NA,2022-05-31,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103277",NA,"as N","Nitrogen","Total","0.238","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220531-5931645-0531-4-C/results/970103277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:24","STORET",7,NA,2022-05-31 21:25:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.238,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14284","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931645-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103280",NA,"as N","Nitrogen","Total","0.621","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931645-0628-4-C/results/970103280/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:24","STORET",7,NA,2022-06-28 19:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.621,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14285","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220628-5931645-0628-4-C","Sample-Routine","Water",NA,2022-06-28,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103285",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220628-5931645-0628-4-C/results/970103285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:24","STORET",7,NA,2022-06-28 19:30:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14286","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931645-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103290",NA,"as N","Nitrogen","Dissolved","0.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931645-0728-4-C/results/970103290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:25","STORET",7,NA,2022-07-28 19:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.45,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14287","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220728-5931645-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103296",NA,"as N","Nitrogen","Total","0.495","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220728-5931645-0728-4-C/results/970103296/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:25","STORET",7,NA,2022-07-28 19:00:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.495,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14288","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931645-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103305",NA,"as N","Nitrogen","Total","0.218","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-30,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931645-0824-4-C/results/970103305/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:26","STORET",7,NA,2022-08-24 19:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.218,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14289","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-MUDCK220822-5931645-0824-4-C","Sample-Routine","Water",NA,2022-08-24,"12:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"305","Non-Point Source (NPS) Monitoring","Division of Water Quality","UTAHDWQ_WQX-5931645","Fish Ck AB Scofoeld Resevoir at Rainbow Blvd",NA,NA,NA,NA,"39.7774300000","-111.1768300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103306",NA,"as N","Nitrogen","Dissolved","0.836","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-MUDCK220822-5931645-0824-4-C/results/970103306/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:26","STORET",7,NA,2022-08-24 19:15:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7774300000","-111.1768300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include monitoring events for the purposes of determining NPS project effectiveness, including baseline conditions for projects, anything that would be funded by NPS grants; we'd like to track this separately.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.836,"MG/L","Numeric","Not Reviewed","Uncensored",39.77743,-111.17683,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14290","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931650-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931650","FISH CK AB SCOFIELD RES",NA,NA,NA,NA,"39.7752400000","-111.1860000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103309",NA,"as N","Nitrogen","Dissolved","0.288","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931650-0712-4-C/results/970103309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:26","STORET",7,NA,2022-07-12 21:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.288,"MG/L","Numeric","Not Reviewed","Uncensored",39.77524,-111.186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14291","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931650-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931650","FISH CK AB SCOFIELD RES",NA,NA,NA,NA,"39.7752400000","-111.1860000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103313",NA,"as N","Nitrogen","Total","0.271","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931650-0712-4-C/results/970103313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:27","STORET",7,NA,2022-07-12 21:20:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7752400000","-111.1860000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.271,"MG/L","Numeric","Not Reviewed","Uncensored",39.77524,-111.186,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14292","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931680-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931680","PONDTOWN CK AB SCOFIELD RES",NA,NA,NA,NA,"39.7830200000","-111.1768400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103359",NA,"as N","Nitrogen","Total","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931680-0712-4-C/results/970103359/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:28","STORET",7,NA,2022-07-12 21:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7830200000","-111.1768400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",39.78302,-111.17684,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14293","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220712-5931680-0712-4-C","Sample-Routine","Water",NA,2022-07-12,"14:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5931680","PONDTOWN CK AB SCOFIELD RES",NA,NA,NA,NA,"39.7830200000","-111.1768400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103361",NA,"as N","Nitrogen","Dissolved","0.584","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-21,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220712-5931680-0712-4-C/results/970103361/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:28","STORET",7,NA,2022-07-12 21:35:00,NA,"River/Stream",NA,"14060007",NA,NA,NA,NA,"39.7830200000","-111.1768400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",7,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.584,"MG/L","Numeric","Not Reviewed","Uncensored",39.78302,-111.17684,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14294","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937850-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-01,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103371",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937850-0601-2-C/results/970103371/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:29","STORET",7,NA,2022-06-01 22:15:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14295","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937850-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-01,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103372",NA,"as N","Nitrogen","Dissolved","0.896","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937850-0601-2-C/results/970103372/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:29","STORET",7,NA,2022-06-01 22:15:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.896,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14296","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937850-0601-29-C","Sample-Routine","Water",NA,2022-06-01,"15:30:00","MST",NA,NA,NA,"Bottom","5.68","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103383",NA,"as N","Nitrogen","Total","0.943","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937850-0601-29-C/results/970103383/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:30","STORET",7,NA,2022-06-01 22:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.943,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",5.68,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14297","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937850-0601-29-C","Sample-Routine","Water",NA,2022-06-01,"15:30:00","MST",NA,NA,NA,"Bottom","5.68","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937850","MATT WARNER RES AB DAM",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103400",NA,"as N","Nitrogen","Dissolved","0.848","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937850-0601-29-C/results/970103400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:30","STORET",7,NA,2022-06-01 22:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.848,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",5.68,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14298","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937852-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-01,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937852","MATT WARNER RES AB DAM Replicate of 5937850",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103413",NA,"as N","Nitrogen","Dissolved","0.959","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937852-0601-2-C/results/970103413/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:31","STORET",7,NA,2022-06-01 22:45:00,NA,"Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.959,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14299","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937852-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-01,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937852","MATT WARNER RES AB DAM Replicate of 5937850",NA,NA,NA,NA,"40.7652400000","-109.2979100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103414",NA,"as N","Nitrogen","Total","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937852-0601-2-C/results/970103414/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:31","STORET",7,NA,2022-06-01 22:45:00,NA,"Lake","Replicate of 5937850","14040106",NA,NA,NA,NA,"40.7652400000","-109.2979100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",40.76524,-109.29791,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14300","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937860-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-01,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937860","MATT WARNER RES W MIDLAKE 02",NA,NA,NA,NA,"40.7741000000","-109.3017000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103422",NA,"as N","Nitrogen","Dissolved","0.926","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937860-0601-2-C/results/970103422/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:32","STORET",7,NA,2022-06-01 21:20:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.926,"MG/L","Numeric","Not Reviewed","Uncensored",40.7741,-109.3017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14301","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937860-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-01,"14:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937860","MATT WARNER RES W MIDLAKE 02",NA,NA,NA,NA,"40.7741000000","-109.3017000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103426",NA,"as N","Nitrogen","Total","0.993","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937860-0601-2-C/results/970103426/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:32","STORET",7,NA,2022-06-01 21:20:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.993,"MG/L","Numeric","Not Reviewed","Uncensored",40.7741,-109.3017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14302","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937860-0601-29-C","Sample-Routine","Water",NA,2022-06-01,"14:30:00","MST",NA,NA,NA,"Bottom","2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937860","MATT WARNER RES W MIDLAKE 02",NA,NA,NA,NA,"40.7741000000","-109.3017000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103435",NA,"as N","Nitrogen","Total","0.918","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937860-0601-29-C/results/970103435/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:33","STORET",7,NA,2022-06-01 21:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.918,"MG/L","Numeric","Not Reviewed","Uncensored",40.7741,-109.3017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14303","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937860-0601-29-C","Sample-Routine","Water",NA,2022-06-01,"14:30:00","MST",NA,NA,NA,"Bottom","2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937860","MATT WARNER RES W MIDLAKE 02",NA,NA,NA,NA,"40.7741000000","-109.3017000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103437",NA,"as N","Nitrogen","Dissolved","1.42","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937860-0601-29-C/results/970103437/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:33","STORET",7,NA,2022-06-01 21:30:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7741000000","-109.3017000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.42,"MG/L","Numeric","Not Reviewed","Uncensored",40.7741,-109.3017,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14304","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937870-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-01,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103447",NA,"as N","Nitrogen","Total","1.01","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937870-0601-2-C/results/970103447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:33","STORET",7,NA,2022-06-01 21:50:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.01,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14305","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937870-0601-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-01,"14:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103454",NA,"as N","Nitrogen","Dissolved","0.955","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937870-0601-2-C/results/970103454/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:34","STORET",7,NA,2022-06-01 21:50:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.955,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14306","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937870-0601-29-C","Sample-Routine","Water",NA,2022-06-01,"15:00:00","MST",NA,NA,NA,"Bottom","3.2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103461",NA,"as N","Nitrogen","Total","0.97","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937870-0601-29-C/results/970103461/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:34","STORET",7,NA,2022-06-01 22:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.97,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14307","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937870-0601-29-C","Sample-Routine","Water",NA,2022-06-01,"15:00:00","MST",NA,NA,NA,"Bottom","3.2","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937870","MATT WARNER RES E MIDLAKE 03",NA,NA,NA,NA,"40.7725500000","-109.2926100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103462",NA,"as N","Nitrogen","Dissolved","0.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937870-0601-29-C/results/970103462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:34","STORET",7,NA,2022-06-01 22:00:00,NA,"Lake",NA,"14040106",NA,NA,NA,NA,"40.7725500000","-109.2926100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.77255,-109.29261,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.2,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14308","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937880-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"16:00:00","MST",NA,NA,NA,"Surface","0.07","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937880","POT CREEK AB MATT WARNER RES",NA,NA,NA,NA,"40.7688400000","-109.3198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103484",NA,"as N","Nitrogen","Dissolved","0.381","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937880-0601-4-C/results/970103484/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:35","STORET",7,NA,2022-06-01 23:00:00,NA,"River/Stream",NA,"14040106",NA,NA,NA,NA,"40.7688400000","-109.3198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.381,"MG/L","Numeric","Not Reviewed","Uncensored",40.76884,-109.31986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.07,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14309","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220531-5937880-0601-4-C","Sample-Routine","Water",NA,2022-06-01,"16:00:00","MST",NA,NA,NA,"Surface","0.07","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5937880","POT CREEK AB MATT WARNER RES",NA,NA,NA,NA,"40.7688400000","-109.3198600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103488",NA,"as N","Nitrogen","Total","0.269","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220531-5937880-0601-4-C/results/970103488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:35","STORET",7,NA,2022-06-01 23:00:00,NA,"River/Stream",NA,"14040106",NA,NA,NA,NA,"40.7688400000","-109.3198600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",47,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.269,"MG/L","Numeric","Not Reviewed","Uncensored",40.76884,-109.31986,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0.07,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14310","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220425-5949855-0425-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-04-25,"12:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103497","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949855-0425-4-C/results/970103497/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:36","STORET",7,NA,2022-04-25 19:30:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14311","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220523-5949855-0523-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-23,"12:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103509","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949855-0523-4-C/results/970103509/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:37","STORET",7,NA,2022-05-23 19:00:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14312","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220613-5949855-0613-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-13,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103525","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949855-0613-4-C/results/970103525/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:38","STORET",7,NA,2022-06-13 20:15:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14313","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220711-5949855-0711-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-11,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103543","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949855-0711-4-C/results/970103543/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:39","STORET",7,NA,2022-07-11 18:00:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14314","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220815-5949855-0815-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-15,"11:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103553","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949855-0815-4-C/results/970103553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:39","STORET",7,NA,2022-08-15 18:30:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14315","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220919-5949855-0919-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-19,"12:24:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949855","Panguitch Lake QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103580","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949855-0919-4-C/results/970103580/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:40","STORET",7,NA,2022-09-19 19:24:00,NA,"Lake","Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14316","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220425-5949890-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103589",NA,"as N","Nitrogen","Total","0.697","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949890-0425-4-C/results/970103589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:41","STORET",7,NA,2022-04-25 18:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.697,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14317","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220523-5949890-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"10:53:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103597",NA,"as N","Nitrogen","Total","0.235","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949890-0523-4-C/results/970103597/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:41","STORET",7,NA,2022-05-23 17:53:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.235,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14318","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220613-5949890-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"12:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103605",NA,"as N","Nitrogen","Total","0.32","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949890-0613-4-C/results/970103605/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:42","STORET",7,NA,2022-06-13 19:45:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.32,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14319","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220711-5949890-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"10:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103627",NA,"as N","Nitrogen","Total","0.259","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949890-0711-4-C/results/970103627/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:43","STORET",7,NA,2022-07-11 17:10:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.259,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14320","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220815-5949890-0815-4-C","Sample-Routine","Water",NA,2022-08-15,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103642",NA,"as N","Nitrogen","Total","0.291","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949890-0815-4-C/results/970103642/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:43","STORET",7,NA,2022-08-15 17:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.291,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14321","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220919-5949890-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"11:42:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949890","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103644",NA,"as N","Nitrogen","Total","0.196","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949890-0919-4-C/results/970103644/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:44","STORET",7,NA,2022-09-19 18:42:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.196,"MG/L","Numeric","Pass","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14322","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220425-5949892-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"11:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103677",NA,"as N","Nitrogen","Total","0.704","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949892-0425-4-C/results/970103677/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:45","STORET",7,NA,2022-04-25 18:10:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.704,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14323","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220523-5949892-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103685",NA,"as N","Nitrogen","Total","0.241","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949892-0523-4-C/results/970103685/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:46","STORET",7,NA,2022-05-23 18:15:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.241,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14324","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220613-5949892-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103702",NA,"as N","Nitrogen","Total","0.261","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949892-0613-4-C/results/970103702/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:46","STORET",7,NA,2022-06-13 20:00:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.261,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14325","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220711-5949892-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"10:22:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103721",NA,"as N","Nitrogen","Total","0.149","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949892-0711-4-C/results/970103721/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:47","STORET",7,NA,2022-07-11 17:22:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.149,"MG/L","Numeric","Pass","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14326","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220815-5949892-0815-4-C","Sample-Routine","Water",NA,2022-08-15,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103723",NA,"as N","Nitrogen","Total","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949892-0815-4-C/results/970103723/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:48","STORET",7,NA,2022-08-15 17:45:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14327","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220919-5949892-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"11:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949892","CLEAR CREEK ABOVE PANGUITCH LAKE AT ROAD Replicate of 5949890",NA,NA,NA,NA,"37.7223400000","-112.6699100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103734","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949892-0919-4-C/results/970103734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:48","STORET",7,NA,2022-09-19 18:57:00,NA,"River/Stream","Replicate of 5949890","16030001",NA,NA,NA,NA,"37.7223400000","-112.6699100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.72234,-112.66991,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14328","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220425-5949920-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"12:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103764",NA,"as N","Nitrogen","Total","0.736","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949920-0425-4-C/results/970103764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:49","STORET",7,NA,2022-04-25 19:10:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.736,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14329","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220523-5949920-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103767",NA,"as N","Nitrogen","Total","0.376","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949920-0523-4-C/results/970103767/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:50","STORET",7,NA,2022-05-23 18:45:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.376,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14330","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220613-5949920-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103796",NA,"as N","Nitrogen","Total","0.296","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949920-0613-4-C/results/970103796/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:51","STORET",7,NA,2022-06-13 18:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.296,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14331","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220711-5949920-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103809",NA,"as N","Nitrogen","Total","0.24","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949920-0711-4-C/results/970103809/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:52","STORET",7,NA,2022-07-11 17:45:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.24,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14332","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220815-5949920-0815-4-C","Sample-Routine","Water",NA,2022-08-15,"11:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103817",NA,"as N","Nitrogen","Total","0.281","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949920-0815-4-C/results/970103817/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:53","STORET",7,NA,2022-08-15 18:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.281,"MG/L","Numeric","Not Reviewed","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14333","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220919-5949920-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"09:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949920","Upper Clear Creek above Panguitch Lake",NA,NA,NA,NA,"37.7328100000","-112.7057500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103839",NA,"as N","Nitrogen","Total","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949920-0919-4-C/results/970103839/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:53","STORET",7,NA,2022-09-19 16:50:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7328100000","-112.7057500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",21,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",37.73281,-112.70575,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14334","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220425-5949930-0425-4-C","Sample-Routine","Water",NA,2022-04-25,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103853",NA,"as N","Nitrogen","Total","0.515","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220425-5949930-0425-4-C/results/970103853/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:54","STORET",7,NA,2022-04-25 17:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.515,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14335","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220523-5949930-0523-4-C","Sample-Routine","Water",NA,2022-05-23,"09:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103860",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220523-5949930-0523-4-C/results/970103860/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:55","STORET",7,NA,2022-05-23 16:57:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14336","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220613-5949930-0613-4-C","Sample-Routine","Water",NA,2022-06-13,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103873",NA,"as N","Nitrogen","Total","0.248","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-29,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220613-5949930-0613-4-C/results/970103873/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:55","STORET",7,NA,2022-06-13 21:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.248,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14337","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220711-5949930-0711-4-C","Sample-Routine","Water",NA,2022-07-11,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103890",NA,"as N","Nitrogen","Total","0.211","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220711-5949930-0711-4-C/results/970103890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:56","STORET",7,NA,2022-07-11 16:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.211,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14338","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220815-5949930-0815-4-C","Sample-Routine","Water",NA,2022-08-15,"09:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103906",NA,"as N","Nitrogen","Total","0.388","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-23,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220815-5949930-0815-4-C/results/970103906/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:56","STORET",7,NA,2022-08-15 16:45:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.388,"MG/L","Numeric","Not Reviewed","Uncensored",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14339","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NFDIXIE220919-5949930-0919-4-C","Sample-Routine","Water",NA,2022-09-19,"13:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Forest Service","UTAHDWQ_WQX-5949930","BLUE SPRING CREEK ABOVE PANGUITCH LAKE",NA,NA,NA,NA,"37.7063700000","-112.6591000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103933","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NFDIXIE220919-5949930-0919-4-C/results/970103933/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:57","STORET",7,NA,2022-09-19 20:40:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7063700000","-112.6591000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.70637,-112.6591,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14340","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952422-0616-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"14:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103935","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952422-0616-2-C/results/970103935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:57","STORET",7,NA,2022-06-16 21:30:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14341","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952422-0616-29-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-16,"14:30:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103962","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952422-0616-29-C/results/970103962/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:58","STORET",7,NA,2022-06-16 21:30:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14342","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952422-0922-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-22,"13:40:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103972","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952422-0922-2-C/results/970103972/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:58","STORET",7,NA,2022-09-22 20:40:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14343","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952422-0922-29-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-22,"13:45:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970103983","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952422-0922-29-C/results/970103983/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:35:59","STORET",7,NA,2022-09-22 20:45:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14344","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952560-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-14,"12:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104094",NA,"as N","Nitrogen","Dissolved","0.844","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952560-0614-2-C/results/970104094/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:04","STORET",7,NA,2022-06-14 19:15:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.844,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14345","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952560-0614-29-C","Sample-Routine","Water",NA,2022-06-14,"12:20:00","MST",NA,NA,NA,"Bottom","82","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104111",NA,"as N","Nitrogen","Dissolved","0.724","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952560-0614-29-C/results/970104111/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:05","STORET",7,NA,2022-06-14 19:20:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.724,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",82,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14346","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952560-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104126",NA,"as N","Nitrogen","Dissolved","0.585","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952560-0920-2-C/results/970104126/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:05","STORET",7,NA,2022-09-20 17:25:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.585,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14347","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952560-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"11:00:00","MST",NA,NA,NA,"Bottom","78","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104141",NA,"as N","Nitrogen","Dissolved","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952560-0920-29-C/results/970104141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:06","STORET",7,NA,2022-09-20 18:00:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",78,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14348","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952590-0614-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-14,"14:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104159",NA,"as N","Nitrogen","Dissolved","0.847","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952590-0614-2-C/results/970104159/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:06","STORET",7,NA,2022-06-14 21:15:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.847,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14349","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952590-0614-29-C","Sample-Routine","Water",NA,2022-06-14,"14:30:00","MST",NA,NA,NA,"Bottom","42","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104180",NA,"as N","Nitrogen","Dissolved","0.692","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952590-0614-29-C/results/970104180/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:07","STORET",7,NA,2022-06-14 21:30:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.692,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",42,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14350","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952590-0920-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-20,"12:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104194",NA,"as N","Nitrogen","Dissolved","0.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952590-0920-2-C/results/970104194/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:08","STORET",7,NA,2022-09-20 19:35:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.66,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14351","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952590-0920-29-C","Sample-Routine","Water",NA,2022-09-20,"12:45:00","MST",NA,NA,NA,"Bottom","39","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104207",NA,"as N","Nitrogen","Dissolved","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952590-0920-29-C/results/970104207/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:08","STORET",7,NA,2022-09-20 19:45:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",39,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14352","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952700-0616-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-16,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104223",NA,"as N","Nitrogen","Dissolved","0.467","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952700-0616-2-C/results/970104223/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:09","STORET",7,NA,2022-06-16 20:15:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.467,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14353","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952700-0616-29-C","Sample-Routine","Water",NA,2022-06-16,"13:55:00","MST",NA,NA,NA,"Bottom","26","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104237",NA,"as N","Nitrogen","Dissolved","0.54","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952700-0616-29-C/results/970104237/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:09","STORET",7,NA,2022-06-16 20:55:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.54,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",26,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14354","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952700-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"17:38:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104257",NA,"as N","Nitrogen","Dissolved","0.383","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952700-0921-2-C/results/970104257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:10","STORET",7,NA,2022-09-22 00:38:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.383,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14355","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952700-0921-29-C","Sample-Routine","Water",NA,2022-09-21,"18:50:00","MST",NA,NA,NA,"Bottom","22.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104264",NA,"as N","Nitrogen","Dissolved","0.547","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952700-0921-29-C/results/970104264/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:10","STORET",7,NA,2022-09-22 01:50:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.547,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",22.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14356","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952740-0616-4-C","Sample-Routine","Water",NA,2022-06-16,"16:40:00","MST",NA,NA,NA,"Surface","0.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104288",NA,"as N","Nitrogen","Dissolved","0.44","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952740-0616-4-C/results/970104288/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:11","STORET",7,NA,2022-06-16 23:40:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.44,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14357","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952740-0922-4-C","Sample-Routine","Water",NA,2022-09-22,"08:25:00","MST",NA,NA,NA,"Surface","0.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104314",NA,"as N","Nitrogen","Dissolved","0.453","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952740-0922-4-C/results/970104314/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:12","STORET",7,NA,2022-09-22 15:25:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.453,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14358","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952770-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-15,"10:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104338",NA,"as N","Nitrogen","Dissolved","0.976","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952770-0615-2-C/results/970104338/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:13","STORET",7,NA,2022-06-15 17:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.976,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14359","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952770-0615-23-C","Sample-Routine","Water",NA,2022-06-15,"11:10:00","MST",NA,NA,NA,"AboveThermoclin","15","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104348",NA,"as N","Nitrogen","Dissolved","0.965","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952770-0615-23-C/results/970104348/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:13","STORET",7,NA,2022-06-15 18:10:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.965,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",15,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14360","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952770-0615-27-C","Sample-Routine","Water",NA,2022-06-15,"11:15:00","MST",NA,NA,NA,"BelowThermoclin","20","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104354",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952770-0615-27-C/results/970104354/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:14","STORET",7,NA,2022-06-15 18:15:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",20,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14361","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952770-0615-29-C","Sample-Routine","Water",NA,2022-06-15,"11:30:00","MST",NA,NA,NA,"Bottom","54","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104364",NA,"as N","Nitrogen","Dissolved","0.837","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952770-0615-29-C/results/970104364/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:14","STORET",7,NA,2022-06-15 18:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.837,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",54,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14362","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952770-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"08:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104384",NA,"as N","Nitrogen","Dissolved","0.545","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952770-0921-2-C/results/970104384/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:15","STORET",7,NA,2022-09-21 15:45:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.545,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14363","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952770-0921-23-C","Sample-Routine","Water",NA,2022-09-21,"08:50:00","MST",NA,NA,NA,"AboveThermoclin","18","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104389",NA,"as N","Nitrogen","Dissolved","0.692","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952770-0921-23-C/results/970104389/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:16","STORET",7,NA,2022-09-21 15:50:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.692,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",18,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14364","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952770-0921-27-C","Sample-Routine","Water",NA,2022-09-21,"09:05:00","MST",NA,NA,NA,"BelowThermoclin","22","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104397",NA,"as N","Nitrogen","Dissolved","0.751","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952770-0921-27-C/results/970104397/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:16","STORET",7,NA,2022-09-21 16:05:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.751,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",22,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14365","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952770-0921-29-C","Sample-Routine","Water",NA,2022-09-21,"09:10:00","MST",NA,NA,NA,"Bottom","51","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104420",NA,"as N","Nitrogen","Dissolved","0.598","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952770-0921-29-C/results/970104420/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:17","STORET",7,NA,2022-09-21 16:10:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.598,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",51,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14366","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952910-0615-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-06-15,"15:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104429",NA,"as N","Nitrogen","Dissolved","0.787","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952910-0615-2-C/results/970104429/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:18","STORET",7,NA,2022-06-15 22:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.787,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14367","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220613-5952910-0615-29-C","Sample-Routine","Water",NA,2022-06-15,"15:35:00","MST",NA,NA,NA,"Bottom","31","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104436",NA,"as N","Nitrogen","Dissolved","0.987","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-05,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220613-5952910-0615-29-C/results/970104436/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:18","STORET",7,NA,2022-06-15 22:35:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.987,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",31,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14368","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952910-0921-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-09-21,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104462",NA,"as N","Nitrogen","Dissolved","0.534","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952910-0921-2-C/results/970104462/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:19","STORET",7,NA,2022-09-21 19:10:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.534,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14369","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220920-5952910-0921-29-C","Sample-Routine","Water",NA,2022-09-21,"12:20:00","MST",NA,NA,NA,"Bottom","28","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104482",NA,"as N","Nitrogen","Dissolved","0.586","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220920-5952910-0921-29-C/results/970104482/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:19","STORET",7,NA,2022-09-21 19:20:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.586,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",28,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14370","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958010-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958010","RECAPTURE RES AB DAM 001",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104488",NA,"as N","Nitrogen","Dissolved","0.603","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-2-C/results/970104488/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:20","STORET",7,NA,2022-07-19 17:25:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.603,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14371","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958010-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"10:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958010","RECAPTURE RES AB DAM 001",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104500",NA,"as N","Nitrogen","Total","0.482","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-2-C/results/970104500/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:20","STORET",7,NA,2022-07-19 17:25:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.482,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14372","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958010-0719-23-C","Sample-Routine","Water",NA,2022-07-19,"10:50:00","MST",NA,NA,NA,"AboveThermoclin","1.9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958010","RECAPTURE RES AB DAM 001",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104505",NA,"as N","Nitrogen","Total","0.328","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-23-C/results/970104505/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:21","STORET",7,NA,2022-07-19 17:50:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.328,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",1.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14373","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958010-0719-23-C","Sample-Routine","Water",NA,2022-07-19,"10:50:00","MST",NA,NA,NA,"AboveThermoclin","1.9","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958010","RECAPTURE RES AB DAM 001",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104507",NA,"as N","Nitrogen","Dissolved","1.13","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-23-C/results/970104507/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:21","STORET",7,NA,2022-07-19 17:50:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.13,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",1.9,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14374","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958010-0719-27-C","Sample-Routine","Water",NA,2022-07-19,"10:55:00","MST",NA,NA,NA,"BelowThermoclin","7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958010","RECAPTURE RES AB DAM 001",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104512",NA,"as N","Nitrogen","Total","0.352","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-27-C/results/970104512/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:21","STORET",7,NA,2022-07-19 17:55:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.352,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14375","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958010-0719-27-C","Sample-Routine","Water",NA,2022-07-19,"10:55:00","MST",NA,NA,NA,"BelowThermoclin","7","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958010","RECAPTURE RES AB DAM 001",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104514",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-27-C/results/970104514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:21","STORET",7,NA,2022-07-19 17:55:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",7,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14376","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958010-0719-29-C","Sample-Routine","Water",NA,2022-07-19,"10:45:00","MST",NA,NA,NA,"Bottom","17","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958010","RECAPTURE RES AB DAM 001",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104524",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-29-C/results/970104524/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:22","STORET",7,NA,2022-07-19 17:45:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14377","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958010-0719-29-C","Sample-Routine","Water",NA,2022-07-19,"10:45:00","MST",NA,NA,NA,"Bottom","17","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958010","RECAPTURE RES AB DAM 001",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104529",NA,"as N","Nitrogen","Dissolved","0.96","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958010-0719-29-C/results/970104529/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:22","STORET",7,NA,2022-07-19 17:45:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.96,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",17,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14378","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958011-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958011","RECAPTURE RES AB DAM 001 Replicate of 5958010",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104552",NA,"as N","Nitrogen","Dissolved","0.564","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958011-0719-2-C/results/970104552/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:23","STORET",7,NA,2022-07-19 18:00:00,NA,"Lake","Replicate of 5958010","14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.564,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14379","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958011-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"11:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958011","RECAPTURE RES AB DAM 001 Replicate of 5958010",NA,NA,NA,NA,"37.6620200000","-109.4376800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104553",NA,"as N","Nitrogen","Total","0.324","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958011-0719-2-C/results/970104553/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:23","STORET",7,NA,2022-07-19 18:00:00,NA,"Lake","Replicate of 5958010","14080201",NA,NA,NA,NA,"37.6620200000","-109.4376800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.324,"MG/L","Numeric","Not Reviewed","Uncensored",37.66202,-109.43768,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14380","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958020-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958020","RECAPTURE RES 1/4 WAY UP RES 02",NA,NA,NA,NA,"37.6672200000","-109.4398400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104558",NA,"as N","Nitrogen","Dissolved","1.02","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958020-0719-2-C/results/970104558/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:23","STORET",7,NA,2022-07-19 18:10:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6672200000","-109.4398400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.02,"MG/L","Numeric","Not Reviewed","Uncensored",37.66722,-109.43984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14381","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958020-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"11:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958020","RECAPTURE RES 1/4 WAY UP RES 02",NA,NA,NA,NA,"37.6672200000","-109.4398400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104564",NA,"as N","Nitrogen","Total","0.382","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958020-0719-2-C/results/970104564/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:23","STORET",7,NA,2022-07-19 18:10:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6672200000","-109.4398400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.382,"MG/L","Numeric","Not Reviewed","Uncensored",37.66722,-109.43984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14382","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958020-0719-29-C","Sample-Routine","Water",NA,2022-07-19,"11:20:00","MST",NA,NA,NA,"Bottom","10","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958020","RECAPTURE RES 1/4 WAY UP RES 02",NA,NA,NA,NA,"37.6672200000","-109.4398400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104570",NA,"as N","Nitrogen","Dissolved","1.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958020-0719-29-C/results/970104570/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:24","STORET",7,NA,2022-07-19 18:20:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6672200000","-109.4398400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.49,"MG/L","Numeric","Not Reviewed","Uncensored",37.66722,-109.43984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14383","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958020-0719-29-C","Sample-Routine","Water",NA,2022-07-19,"11:20:00","MST",NA,NA,NA,"Bottom","10","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958020","RECAPTURE RES 1/4 WAY UP RES 02",NA,NA,NA,NA,"37.6672200000","-109.4398400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104575",NA,"as N","Nitrogen","Total","0.375","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958020-0719-29-C/results/970104575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:24","STORET",7,NA,2022-07-19 18:20:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6672200000","-109.4398400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.375,"MG/L","Numeric","Not Reviewed","Uncensored",37.66722,-109.43984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",10,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14384","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958030-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958030","RECAPTURE RES 1/2 WAY UP RES 03",NA,NA,NA,NA,"37.6702700000","-109.4454000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104585",NA,"as N","Nitrogen","Total","0.427","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958030-0719-2-C/results/970104585/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:25","STORET",7,NA,2022-07-19 18:35:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6702700000","-109.4454000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.427,"MG/L","Numeric","Not Reviewed","Uncensored",37.67027,-109.4454,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14385","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958030-0719-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-07-19,"11:35:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958030","RECAPTURE RES 1/2 WAY UP RES 03",NA,NA,NA,NA,"37.6702700000","-109.4454000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104589",NA,"as N","Nitrogen","Dissolved","1.86","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958030-0719-2-C/results/970104589/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:25","STORET",7,NA,2022-07-19 18:35:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6702700000","-109.4454000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.86,"MG/L","Numeric","Not Reviewed","Uncensored",37.67027,-109.4454,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14386","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958030-0719-29-C","Sample-Routine","Water",NA,2022-07-19,"11:40:00","MST",NA,NA,NA,"Bottom","3.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958030","RECAPTURE RES 1/2 WAY UP RES 03",NA,NA,NA,NA,"37.6702700000","-109.4454000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104593",NA,"as N","Nitrogen","Total","0.283","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958030-0719-29-C/results/970104593/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:25","STORET",7,NA,2022-07-19 18:40:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6702700000","-109.4454000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.283,"MG/L","Numeric","Not Reviewed","Uncensored",37.67027,-109.4454,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",3.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14387","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-LAKES220719-5958030-0719-29-C","Sample-Routine","Water",NA,2022-07-19,"11:40:00","MST",NA,NA,NA,"Bottom","3.5","m",NA,NA,NA,NA,NA,"302","Targeted","Division of Water Quality","UTAHDWQ_WQX-5958030","RECAPTURE RES 1/2 WAY UP RES 03",NA,NA,NA,NA,"37.6702700000","-109.4454000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104595",NA,"as N","Nitrogen","Dissolved","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-LAKES220719-5958030-0719-29-C/results/970104595/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:25","STORET",7,NA,2022-07-19 18:40:00,NA,"Lake",NA,"14080201",NA,NA,NA,NA,"37.6702700000","-109.4454000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will cover many monitoring events including any routine monitoring with the purpose of identifying stressors or causes of impairment such as the basin intensives, TMDL studies.","Targeted - A targeted sample is where a ""sample"" of the subject matter, be that people, plants/animals etc is selected using certain criteria, i.e. pregnant mothers between the ages of 25-30. Targeted samples are usually used by businesses or companies carrying out surveys on a particular group of people.",NA,NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",37.67027,-109.4454,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",3.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14388","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-5994520-0512-4-C","Sample-Routine","Water",NA,2022-05-12,"09:38:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994520","LAST CHANCE AT BURNING HILLS RD XING",NA,NA,NA,NA,"37.1841500000","-111.3684900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104709",NA,"as N","Nitrogen","Total","0.154","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994520-0512-4-C/results/970104709/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:29","STORET",7,NA,2022-05-12 16:38:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.154,"MG/L","Numeric","Pass","Uncensored",37.18415,-111.36849,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14389","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-5994520-0627-4-C","Sample-Routine","Water",NA,2022-06-27,"17:14:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994520","LAST CHANCE AT BURNING HILLS RD XING",NA,NA,NA,NA,"37.1841500000","-111.3684900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104715",NA,"as N","Nitrogen","Total","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994520-0627-4-C/results/970104715/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:30","STORET",7,NA,2022-06-28 00:14:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",37.18415,-111.36849,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14390","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-5994520-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"10:17:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management;Division of Water Quality","UTAHDWQ_WQX-5994520","LAST CHANCE AT BURNING HILLS RD XING",NA,NA,NA,NA,"37.1841500000","-111.3684900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104722",NA,"as N","Nitrogen","Total","0.312","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-5994520-0928-4-C/results/970104722/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:31","STORET",7,NA,2022-09-28 17:17:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.1841500000","-111.3684900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.312,"MG/L","Numeric","Not Reviewed","Uncensored",37.18415,-111.36849,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14391","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-5994530-0512-4-C","Sample-Routine","Water",NA,2022-05-12,"11:28:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104730","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994530-0512-4-C/results/970104730/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:31","STORET",7,NA,2022-05-12 18:28:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14392","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-5994530-0512-4-C","Sample-Routine","Water",NA,2022-05-12,"11:28:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104738","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994530-0512-4-C/results/970104738/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:32","STORET",7,NA,2022-05-12 18:28:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14393","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-5994530-0627-4-C","Sample-Routine","Water",NA,2022-06-27,"18:33:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104760",NA,"as N","Nitrogen","Dissolved","2.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994530-0627-4-C/results/970104760/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:32","STORET",7,NA,2022-06-28 01:33:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.48,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14394","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-5994530-0627-4-C","Sample-Routine","Water",NA,2022-06-27,"18:33:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104774",NA,"as N","Nitrogen","Total","2.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994530-0627-4-C/results/970104774/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:33","STORET",7,NA,2022-06-28 01:33:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",2.63,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14395","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-5994530-0715-4-C","Sample-Routine","Water",NA,2022-07-15,"17:18:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104781",NA,"as N","Nitrogen","Total","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-5994530-0715-4-C/results/970104781/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:33","STORET",7,NA,2022-07-16 00:18:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14396","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-5994530-0715-4-C","Sample-Routine","Water",NA,2022-07-15,"17:18:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104803",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-5994530-0715-4-C/results/970104803/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:33","STORET",7,NA,2022-07-16 00:18:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14397","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-5994530-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104825",NA,"as N","Nitrogen","Dissolved","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-5994530-0801-4-C/results/970104825/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:34","STORET",7,NA,2022-08-01 17:40:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14398","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-5994530-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104829",NA,"as N","Nitrogen","Total","1","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-5994530-0801-4-C/results/970104829/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:34","STORET",7,NA,2022-08-01 17:40:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14399","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-5994530-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:51:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Division of Water Quality;Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104842",NA,"as N","Nitrogen","Total","0.535","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-5994530-0928-4-C/results/970104842/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:35","STORET",7,NA,2022-09-28 18:51:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.535,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14400","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-5994530-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"11:51:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Division of Water Quality;Bureau of Land Management","UTAHDWQ_WQX-5994530","WAHWEAP CK @ WARM CK RD XING",NA,NA,NA,NA,"37.0808100000","-111.6515600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104848",NA,"as N","Nitrogen","Dissolved","0.524","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-5994530-0928-4-C/results/970104848/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:35","STORET",7,NA,2022-09-28 18:51:00,NA,"River/Stream",NA,"14070006",NA,NA,NA,NA,"37.0808100000","-111.6515600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.524,"MG/L","Numeric","Not Reviewed","Uncensored",37.08081,-111.65156,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14401","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-5994550-0512-4-C","Sample-Routine","Water",NA,2022-05-12,"14:57:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104858",NA,"as N","Nitrogen","Total","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994550-0512-4-C/results/970104858/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:36","STORET",7,NA,2022-05-12 21:57:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14402","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-5994550-0627-4-C","Sample-Routine","Water",NA,2022-06-27,"19:24:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104868",NA,"as N","Nitrogen","Total","1.68","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994550-0627-4-C/results/970104868/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:36","STORET",7,NA,2022-06-28 02:24:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.68,"MG/L","Numeric","Not Reviewed","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14403","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-5994550-0716-4-C","Sample-Routine","Water",NA,2022-07-16,"09:42:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104875","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-5994550-0716-4-C/results/970104875/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:37","STORET",7,NA,2022-07-16 16:42:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14404","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-5994550-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"12:31:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994550","PARIA R AT OLD TOWN SITE",NA,NA,NA,NA,"37.2504800000","-111.9542600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104884",NA,"as N","Nitrogen","Total","0.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"pH sample acceptance for the method not met Examine result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-5994550-0801-4-C/results/970104884/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:37","STORET",7,NA,2022-08-01 19:31:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.2504800000","-111.9542600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.76,"MG/L","Numeric","Not Reviewed","Uncensored",37.25048,-111.95426,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14405","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220512-5994650-0512-4-C","Sample-Routine","Water",NA,2022-05-12,"17:23:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104890",NA,"as N","Nitrogen","Total","0.197","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220512-5994650-0512-4-C/results/970104890/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:38","STORET",7,NA,2022-05-13 00:23:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.197,"MG/L","Numeric","Pass","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14406","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220626-5994650-0627-4-C","Sample-Routine","Water",NA,2022-06-27,"10:46:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104892","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-08,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220626-5994650-0627-4-C/results/970104892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:38","STORET",7,NA,2022-06-27 17:46:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14407","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220715-5994650-0716-4-C","Sample-Routine","Water",NA,2022-07-16,"10:47:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104900",NA,"as N","Nitrogen","Total","0.454","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220715-5994650-0716-4-C/results/970104900/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:39","STORET",7,NA,2022-07-16 17:47:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.454,"MG/L","Numeric","Not Reviewed","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14408","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220801-5994650-0801-4-C","Sample-Routine","Water",NA,2022-08-01,"08:48:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104907",NA,"as N","Nitrogen","Total","0.804","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-16,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220801-5994650-0801-4-C/results/970104907/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:39","STORET",7,NA,2022-08-01 15:48:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.804,"MG/L","Numeric","Not Reviewed","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14409","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BLMGSE220927-5994650-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"18:31:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Division of Water Quality;Bureau of Land Management","UTAHDWQ_WQX-5994650","DEER SPRING WASH BL DEER SPR RANCH",NA,NA,NA,NA,"37.3241500000","-112.2165900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104913",NA,"as N","Nitrogen","Total","0.307","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BLMGSE220927-5994650-0927-4-C/results/970104913/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:40","STORET",7,NA,2022-09-28 01:31:00,NA,"River/Stream",NA,"14070007",NA,NA,NA,NA,"37.3241500000","-112.2165900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.307,"MG/L","Numeric","Not Reviewed","Uncensored",37.32415,-112.21659,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14410","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-5995202-0515-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-15,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104922","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-31,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-5995202-0515-4-C/results/970104922/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:41","STORET",7,NA,2022-05-15 21:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14411","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220506-5995202-0515-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-05-15,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104934","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-05-27,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220506-5995202-0515-4-C/results/970104934/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:41","STORET",7,NA,2022-05-15 21:45:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14412","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-5995202-0629-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-29,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104939","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995202-0629-4-C/results/970104939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:41","STORET",7,NA,2022-06-29 20:20:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14413","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-5995202-0629-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-06-29,"13:20:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104949","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995202-0629-4-C/results/970104949/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:42","STORET",7,NA,2022-06-29 20:20:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14414","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-5995202-0708-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-08,"19:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104956","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-5995202-0708-4-C/results/970104956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:42","STORET",7,NA,2022-07-09 02:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14415","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220707-5995202-0708-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-08,"19:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104958","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-20,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220707-5995202-0708-4-C/results/970104958/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:42","STORET",7,NA,2022-07-09 02:15:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14416","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-5995202-0816-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-16,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970104984","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995202-0816-4-C/results/970104984/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:43","STORET",7,NA,2022-08-16 20:10:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14417","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-5995202-0816-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-08-16,"13:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105015","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995202-0816-4-C/results/970105015/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:44","STORET",7,NA,2022-08-16 20:10:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14418","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220911-5995202-0911-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-11,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105022","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995202-0911-4-C/results/970105022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:45","STORET",7,NA,2022-09-11 19:10:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14419","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220911-5995202-0911-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-11,"12:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105031","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995202-0911-4-C/results/970105031/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:45","STORET",7,NA,2022-09-11 19:10:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14420","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-5995202-0919-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-19,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105059","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-5995202-0919-4-C/results/970105059/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:47","STORET",7,NA,2022-09-20 02:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14421","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSETAL220901-5995202-0919-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-19,"19:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995202","Arches National Park (Field Blank)",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105066","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSETAL220901-5995202-0919-4-C/results/970105066/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:47","STORET",7,NA,2022-09-20 02:00:00,NA,"River/Stream","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14422","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-5995220-0416-4-C","Sample-Routine","Water",NA,2022-04-16,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105071",NA,"as N","Nitrogen","Dissolved","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995220-0416-4-C/results/970105071/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:47","STORET",7,NA,2022-04-16 18:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14423","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-5995220-0416-4-C","Sample-Routine","Water",NA,2022-04-16,"11:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105092",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995220-0416-4-C/results/970105092/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:48","STORET",7,NA,2022-04-16 18:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14424","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-5995220-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105107",NA,"as N","Nitrogen","Dissolved","0.233","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-5995220-0524-4-C/results/970105107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:48","STORET",7,NA,2022-05-24 17:55:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.233,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14425","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-5995220-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"10:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105113",NA,"as N","Nitrogen","Total","0.392","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-5995220-0524-4-C/results/970105113/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:49","STORET",7,NA,2022-05-24 17:55:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.392,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14426","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-5995220-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105119",NA,"as N","Nitrogen","Dissolved","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995220-0629-4-C/results/970105119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:49","STORET",7,NA,2022-06-29 18:20:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14427","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-5995220-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105133","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995220-0629-4-C/results/970105133/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:49","STORET",7,NA,2022-06-29 18:20:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14428","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-5995220-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105141",NA,"as N","Nitrogen","Total","0.15","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-5995220-0728-4-C/results/970105141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:50","STORET",7,NA,2022-07-28 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.15,"MG/L","Numeric","Pass","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14429","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-5995220-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"12:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105147",NA,"as N","Nitrogen","Dissolved","0.343","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-5995220-0728-4-C/results/970105147/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:50","STORET",7,NA,2022-07-28 19:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.343,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14430","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-5995220-0815-4-C","Sample-Routine","Water",NA,2022-08-15,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105172",NA,"as N","Nitrogen","Dissolved","0.247","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995220-0815-4-C/results/970105172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:51","STORET",7,NA,2022-08-15 17:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.247,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14431","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-5995220-0815-4-C","Sample-Routine","Water",NA,2022-08-15,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105178","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995220-0815-4-C/results/970105178/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:51","STORET",7,NA,2022-08-15 17:50:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14432","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220911-5995220-0911-4-C","Sample-Routine","Water",NA,2022-09-11,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105188",NA,"as N","Nitrogen","Dissolved","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995220-0911-4-C/results/970105188/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:52","STORET",7,NA,2022-09-11 17:40:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14433","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220911-5995220-0911-4-C","Sample-Routine","Water",NA,2022-09-11,"10:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995220","SALT WASH AT WOLFE RANCH RD XING SW-3",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105193","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995220-0911-4-C/results/970105193/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:52","STORET",7,NA,2022-09-11 17:40:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14434","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-5995222-0416-4-C","Sample-Routine","Water",NA,2022-04-16,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105201",NA,"as N","Nitrogen","Total","0.232","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995222-0416-4-C/results/970105201/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:53","STORET",7,NA,2022-04-16 18:45:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.232,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14435","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-5995222-0416-4-C","Sample-Routine","Water",NA,2022-04-16,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105205",NA,"as N","Nitrogen","Dissolved","0.293","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995222-0416-4-C/results/970105205/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:53","STORET",7,NA,2022-04-16 18:45:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.293,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14436","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-5995222-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105239",NA,"as N","Nitrogen","Dissolved","0.251","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995222-0629-4-C/results/970105239/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:54","STORET",7,NA,2022-06-29 18:25:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.251,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14437","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-5995222-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105241",NA,"as N","Nitrogen","Total","0.168","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995222-0629-4-C/results/970105241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:54","STORET",7,NA,2022-06-29 18:25:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.168,"MG/L","Numeric","Pass","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14438","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-5995222-0815-4-C","Sample-Routine","Water",NA,2022-08-15,"10:52:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105251",NA,"as N","Nitrogen","Total","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995222-0815-4-C/results/970105251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:55","STORET",7,NA,2022-08-15 17:52:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14439","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-5995222-0815-4-C","Sample-Routine","Water",NA,2022-08-15,"10:52:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995222","SALT WASH AT WOLFE RANCH RD XING SW-3 Replicate of 5995220",NA,NA,NA,NA,"38.7352600000","-109.5195600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105252","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-25,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995222-0815-4-C/results/970105252/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:55","STORET",7,NA,2022-08-15 17:52:00,NA,"River/Stream","Replicate of 5995220","14030005",NA,NA,NA,NA,"38.7352600000","-109.5195600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.73526,-109.51956,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14440","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-5995240-0416-4-C","Sample-Routine","Water",NA,2022-04-16,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105277",NA,"as N","Nitrogen","Total","0.219","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995240-0416-4-C/results/970105277/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:56","STORET",7,NA,2022-04-16 16:20:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.219,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14441","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220416-5995240-0416-4-C","Sample-Routine","Water",NA,2022-04-16,"09:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105298",NA,"as N","Nitrogen","Dissolved","0.274","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-04-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220416-5995240-0416-4-C/results/970105298/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:56","STORET",7,NA,2022-04-16 16:20:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.274,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14442","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-5995240-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105309",NA,"as N","Nitrogen","Dissolved","0.348","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-5995240-0524-4-C/results/970105309/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:57","STORET",7,NA,2022-05-24 15:55:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.348,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14443","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220524-5995240-0524-4-C","Sample-Routine","Water",NA,2022-05-24,"08:55:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105313",NA,"as N","Nitrogen","Total","0.217","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-06-14,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220524-5995240-0524-4-C/results/970105313/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:57","STORET",7,NA,2022-05-24 15:55:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.217,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14444","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-5995240-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105322",NA,"as N","Nitrogen","Total","0.294","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995240-0629-4-C/results/970105322/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:58","STORET",7,NA,2022-06-29 16:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.294,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14445","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220629-5995240-0629-4-C","Sample-Routine","Water",NA,2022-06-29,"09:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105324",NA,"as N","Nitrogen","Dissolved","0.384","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-07-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220629-5995240-0629-4-C/results/970105324/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:58","STORET",7,NA,2022-06-29 16:30:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.384,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14446","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-5995240-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105349",NA,"as N","Nitrogen","Total","1.08","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-5995240-0728-4-C/results/970105349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:59","STORET",7,NA,2022-07-28 17:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.08,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14447","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220727-5995240-0728-4-C","Sample-Routine","Water",NA,2022-07-28,"10:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105358",NA,"as N","Nitrogen","Dissolved","1.04","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-12,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220727-5995240-0728-4-C/results/970105358/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:36:59","STORET",7,NA,2022-07-28 17:45:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.04,"MG/L","Numeric","Not Reviewed","Uncensored",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14448","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-5995240-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105368","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995240-0829-4-C/results/970105368/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:37:00","STORET",7,NA,2022-08-29 17:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14449","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220815-5995240-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"10:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105379","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220815-5995240-0829-4-C/results/970105379/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:37:00","STORET",7,NA,2022-08-29 17:35:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14450","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220911-5995240-0911-4-C","Sample-Routine","Water",NA,2022-09-11,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105399","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995240-0911-4-C/results/970105399/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:37:01","STORET",7,NA,2022-09-11 16:10:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14451","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-NPSCAN220911-5995240-0911-4-C","Sample-Routine","Water",NA,2022-09-11,"09:10:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","National Park Service","UTAHDWQ_WQX-5995240","COURTHOUSE WASH .5MI AB COLORADO R AT USGS CW-1",NA,NA,NA,NA,"38.6130400000","-109.5798400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-970105400","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-03,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-NPSCAN220911-5995240-0911-4-C/results/970105400/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-08T01:37:01","STORET",7,NA,2022-09-11 16:10:00,NA,"River/Stream",NA,"14030005",NA,NA,NA,NA,"38.6130400000","-109.5798400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",19,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.61304,-109.57984,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14452","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-4952370-1216-4-C","Sample-Routine","Water",NA,2021-12-16,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952370","COLORADO R AB DARK CANYON",NA,NA,NA,NA,"37.8977700000","-110.2051400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693608",NA,"as N","Nitrogen","Total","0.674","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-4952370-1216-4-C/results/971693608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:01:58","STORET",7,NA,2021-12-16 16:30:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"37.8977700000","-110.2051400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.674,"MG/L","Numeric","Not Reviewed","Uncensored",37.89777,-110.20514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14453","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-4952370-1216-4-C","Sample-Routine","Water",NA,2021-12-16,"09:30:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952370","COLORADO R AB DARK CANYON",NA,NA,NA,NA,"37.8977700000","-110.2051400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693612",NA,"as N","Nitrogen","Dissolved","0.793","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-4952370-1216-4-C/results/971693612/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:01:58","STORET",7,NA,2021-12-16 16:30:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"37.8977700000","-110.2051400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.793,"MG/L","Numeric","Not Reviewed","Uncensored",37.89777,-110.20514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14454","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-4952370-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952370","COLORADO R AB DARK CANYON",NA,NA,NA,NA,"37.8977700000","-110.2051400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693625",NA,"as N","Nitrogen","Total","0.869","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-4952370-0309-4-C/results/971693625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:01:59","STORET",7,NA,2022-03-09 21:00:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"37.8977700000","-110.2051400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.869,"MG/L","Numeric","Not Reviewed","Uncensored",37.89777,-110.20514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14455","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-4952370-0309-4-C","Sample-Routine","Water",NA,2022-03-09,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952370","COLORADO R AB DARK CANYON",NA,NA,NA,NA,"37.8977700000","-110.2051400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693639",NA,"as N","Nitrogen","Dissolved","0.829","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-4952370-0309-4-C/results/971693639/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:01:59","STORET",7,NA,2022-03-09 21:00:00,NA,"River/Stream",NA,"14070001",NA,NA,NA,NA,"37.8977700000","-110.2051400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.829,"MG/L","Numeric","Not Reviewed","Uncensored",37.89777,-110.20514,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14456","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-4952940-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693648",NA,"as N","Nitrogen","Dissolved","0.76","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-4952940-1214-4-C/results/971693648/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:00","STORET",7,NA,2021-12-14 22:45:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.76,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14457","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-4952940-1214-4-C","Sample-Routine","Water",NA,2021-12-14,"15:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693662",NA,"as N","Nitrogen","Total","0.669","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-10,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-4952940-1214-4-C/results/971693662/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:00","STORET",7,NA,2021-12-14 22:45:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.669,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14458","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-4952940-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693674",NA,"as N","Nitrogen","Dissolved","0.784","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-4952940-0308-4-C/results/971693674/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:00","STORET",7,NA,2022-03-08 21:10:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.784,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14459","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-4952940-0308-4-C","Sample-Routine","Water",NA,2022-03-08,"14:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-4952940","SAN JUAN R AB LAKE POWELL",NA,NA,NA,NA,"37.2941600000","-110.4068000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693683",NA,"as N","Nitrogen","Total","0.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-4952940-0308-4-C/results/971693683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:00","STORET",7,NA,2022-03-08 21:10:00,NA,"River/Stream",NA,"14080205",NA,NA,NA,NA,"37.2941600000","-110.4068000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.9,"MG/L","Numeric","Not Reviewed","Uncensored",37.29416,-110.4068,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14460","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952422-1217-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-17,"08:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693710","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952422-1217-2-C/results/971693710/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:01","STORET",7,NA,2021-12-17 15:55:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14461","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952422-1217-2-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-17,"08:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693712","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952422-1217-2-C/results/971693712/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:01","STORET",7,NA,2021-12-17 15:55:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14462","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952422-1217-29-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-17,"09:00:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693718","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952422-1217-29-C/results/971693718/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:01","STORET",7,NA,2021-12-17 16:00:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14463","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952422-1217-29-C","Quality Control Sample-Equipment Blank","Water",NA,2021-12-17,"09:00:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693726","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952422-1217-29-C/results/971693726/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:01","STORET",7,NA,2021-12-17 16:00:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14464","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952422-0310-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-10,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693747","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952422-0310-2-C/results/971693747/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:02","STORET",7,NA,2022-03-10 20:15:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14465","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952422-0310-2-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-10,"13:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693749","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952422-0310-2-C/results/971693749/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:02","STORET",7,NA,2022-03-10 20:15:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14466","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952422-0310-29-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-10,"13:20:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693762","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952422-0310-29-C/results/971693762/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:02","STORET",7,NA,2022-03-10 20:20:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14467","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952422-0310-29-C","Quality Control Sample-Equipment Blank","Water",NA,2022-03-10,"13:20:00","MST",NA,NA,NA,"Bottom",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952422","Bureau of Reclamation Lake Powell QAQC Blank",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693764","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952422-0310-29-C/results/971693764/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:02","STORET",7,NA,2022-03-10 20:20:00,NA,"Lake","Field Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14468","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952560-1214-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-14,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693886",NA,"as N","Nitrogen","Total","0.66","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952560-1214-2-C/results/971693886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:06","STORET",7,NA,2021-12-14 18:45:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.66,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14469","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952560-1214-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-14,"11:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693888",NA,"as N","Nitrogen","Dissolved","0.679","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952560-1214-2-C/results/971693888/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:06","STORET",7,NA,2021-12-14 18:45:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.679,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14470","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952560-1214-29-C","Sample-Routine","Water",NA,2021-12-14,"12:15:00","MST",NA,NA,NA,"Bottom","82","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693905",NA,"as N","Nitrogen","Dissolved","0.444","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952560-1214-29-C/results/971693905/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:07","STORET",7,NA,2021-12-14 19:15:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.444,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",82,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14471","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952560-1214-29-C","Sample-Routine","Water",NA,2021-12-14,"12:15:00","MST",NA,NA,NA,"Bottom","82","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693912",NA,"as N","Nitrogen","Total","0.46","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952560-1214-29-C/results/971693912/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:07","STORET",7,NA,2021-12-14 19:15:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.46,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",82,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14472","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952560-0308-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693920",NA,"as N","Nitrogen","Total","0.486","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952560-0308-2-C/results/971693920/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:07","STORET",7,NA,2022-03-08 17:50:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.486,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14473","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952560-0308-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-08,"10:50:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693924",NA,"as N","Nitrogen","Dissolved","0.49","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952560-0308-2-C/results/971693924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:07","STORET",7,NA,2022-03-08 17:50:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.49,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14474","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952560-0308-29-C","Sample-Routine","Water",NA,2022-03-08,"11:05:00","MST",NA,NA,NA,"Bottom","78","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693935",NA,"as N","Nitrogen","Total","0.745","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952560-0308-29-C/results/971693935/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:07","STORET",7,NA,2022-03-08 18:05:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.745,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",78,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14475","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952560-0308-29-C","Sample-Routine","Water",NA,2022-03-08,"11:05:00","MST",NA,NA,NA,"Bottom","78","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952560","LAKE POWELL 1 MI N OF OAK CANYON NR RAINBOW BRIDGE",NA,NA,NA,NA,"37.1397200000","-110.9540400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693939",NA,"as N","Nitrogen","Dissolved","0.695","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952560-0308-29-C/results/971693939/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:07","STORET",7,NA,2022-03-08 18:05:00,NA,"Lake",NA,"14070006",NA,NA,NA,NA,"37.1397200000","-110.9540400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.695,"MG/L","Numeric","Not Reviewed","Uncensored",37.13972,-110.95404,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",78,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14476","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952590-1214-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693956",NA,"as N","Nitrogen","Dissolved","0.585","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952590-1214-2-C/results/971693956/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:08","STORET",7,NA,2021-12-14 20:45:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.585,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14477","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952590-1214-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-14,"13:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693962",NA,"as N","Nitrogen","Total","0.593","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952590-1214-2-C/results/971693962/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:08","STORET",7,NA,2021-12-14 20:45:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.593,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14478","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952590-1214-29-C","Sample-Routine","Water",NA,2021-12-14,"14:00:00","MST",NA,NA,NA,"Bottom","43","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693973",NA,"as N","Nitrogen","Dissolved","0.634","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952590-1214-29-C/results/971693973/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:09","STORET",7,NA,2021-12-14 21:00:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.634,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",43,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14479","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952590-1214-29-C","Sample-Routine","Water",NA,2021-12-14,"14:00:00","MST",NA,NA,NA,"Bottom","43","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693983",NA,"as N","Nitrogen","Total","0.525","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952590-1214-29-C/results/971693983/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:09","STORET",7,NA,2021-12-14 21:00:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.525,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",43,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14480","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952590-0308-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693997",NA,"as N","Nitrogen","Total","0.611","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952590-0308-2-C/results/971693997/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:09","STORET",7,NA,2022-03-08 20:00:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.611,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14481","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952590-0308-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-08,"13:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971693999",NA,"as N","Nitrogen","Dissolved","0.554","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952590-0308-2-C/results/971693999/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:09","STORET",7,NA,2022-03-08 20:00:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.554,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14482","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952590-0308-29-C","Sample-Routine","Water",NA,2022-03-08,"13:10:00","MST",NA,NA,NA,"Bottom","39","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694006",NA,"as N","Nitrogen","Dissolved","0.604","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952590-0308-29-C/results/971694006/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:10","STORET",7,NA,2022-03-08 20:10:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.604,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",39,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14483","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952590-0308-29-C","Sample-Routine","Water",NA,2022-03-08,"13:10:00","MST",NA,NA,NA,"Bottom","39","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952590","LAKE POWELL OFF CHA CANYON IN SAN JUAN ARM",NA,NA,NA,NA,"37.1683300000","-110.8179200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694018",NA,"as N","Nitrogen","Total","0.618","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952590-0308-29-C/results/971694018/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:10","STORET",7,NA,2022-03-08 20:10:00,NA,"Lake",NA,"14080205",NA,NA,NA,NA,"37.1683300000","-110.8179200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",37,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.618,"MG/L","Numeric","Not Reviewed","Uncensored",37.16833,-110.81792,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",39,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14484","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952700-1216-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-16,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694039",NA,"as N","Nitrogen","Dissolved","0.64","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952700-1216-2-C/results/971694039/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:10","STORET",7,NA,2021-12-16 21:45:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.64,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14485","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952700-1216-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-16,"14:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694042",NA,"as N","Nitrogen","Total","0.53","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952700-1216-2-C/results/971694042/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:10","STORET",7,NA,2021-12-16 21:45:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.53,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14486","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952700-1216-29-C","Sample-Routine","Water",NA,2021-12-16,"15:00:00","MST",NA,NA,NA,"Bottom","26.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694057",NA,"as N","Nitrogen","Total","0.507","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952700-1216-29-C/results/971694057/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:11","STORET",7,NA,2021-12-16 22:00:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.507,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",26.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14487","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952700-1216-29-C","Sample-Routine","Water",NA,2021-12-16,"15:00:00","MST",NA,NA,NA,"Bottom","26.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694058",NA,"as N","Nitrogen","Dissolved","0.536","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952700-1216-29-C/results/971694058/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:11","STORET",7,NA,2021-12-16 22:00:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.536,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",26.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14488","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952700-0310-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-10,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694074",NA,"as N","Nitrogen","Total","0.508","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952700-0310-2-C/results/971694074/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:11","STORET",7,NA,2022-03-10 15:10:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.508,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14489","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952700-0310-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-10,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694077",NA,"as N","Nitrogen","Dissolved","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952700-0310-2-C/results/971694077/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:11","STORET",7,NA,2022-03-10 15:10:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14490","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952700-0310-29-C","Sample-Routine","Water",NA,2022-03-10,"08:30:00","MST",NA,NA,NA,"Bottom","23.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694082",NA,"as N","Nitrogen","Total","0.567","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952700-0310-29-C/results/971694082/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:12","STORET",7,NA,2022-03-10 15:30:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.567,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",23.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14491","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952700-0310-29-C","Sample-Routine","Water",NA,2022-03-10,"08:30:00","MST",NA,NA,NA,"Bottom","23.5","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952700","LAKE POWELL OFF DAVIS GULCH",NA,NA,NA,NA,"37.3213800000","-110.9187600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694093",NA,"as N","Nitrogen","Dissolved","0.556","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952700-0310-29-C/results/971694093/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:12","STORET",7,NA,2022-03-10 15:30:00,NA,"Lake",NA,"14070005",NA,NA,NA,NA,"37.3213800000","-110.9187600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.556,"MG/L","Numeric","Not Reviewed","Uncensored",37.32138,-110.91876,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",23.5,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14492","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952740-1216-4-C","Sample-Routine","Water",NA,2021-12-16,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694107",NA,"as N","Nitrogen","Total","0.364","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952740-1216-4-C/results/971694107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:12","STORET",7,NA,2021-12-16 22:55:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.364,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14493","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952740-1216-4-C","Sample-Routine","Water",NA,2021-12-16,"15:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694119",NA,"as N","Nitrogen","Dissolved","0.45","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952740-1216-4-C/results/971694119/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:12","STORET",7,NA,2021-12-16 22:55:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.45,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14494","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952740-0310-4-C","Sample-Routine","Water",NA,2022-03-10,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694141",NA,"as N","Nitrogen","Dissolved","0.34","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952740-0310-4-C/results/971694141/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:13","STORET",7,NA,2022-03-10 16:15:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.34,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14495","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952740-0310-4-C","Sample-Routine","Water",NA,2022-03-10,"09:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952740","ESCALANTE R AB LAKE POWELL",NA,NA,NA,NA,"37.4319300000","-110.9853500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694160",NA,"as N","Nitrogen","Total","0.357","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952740-0310-4-C/results/971694160/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:13","STORET",7,NA,2022-03-10 16:15:00,NA,"River/Stream",NA,"14070005",NA,NA,NA,NA,"37.4319300000","-110.9853500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.357,"MG/L","Numeric","Not Reviewed","Uncensored",37.43193,-110.98535,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14496","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952770-1215-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-15,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694167",NA,"as N","Nitrogen","Total","0.801","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952770-1215-2-C/results/971694167/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:13","STORET",7,NA,2021-12-15 22:15:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.801,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14497","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952770-1215-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-15,"15:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694172",NA,"as N","Nitrogen","Dissolved","0.817","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952770-1215-2-C/results/971694172/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:13","STORET",7,NA,2021-12-15 22:15:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.817,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14498","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952770-1215-29-C","Sample-Routine","Water",NA,2021-12-15,"15:30:00","MST",NA,NA,NA,"Bottom","55","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694181",NA,"as N","Nitrogen","Total","0.708","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952770-1215-29-C/results/971694181/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:14","STORET",7,NA,2021-12-15 22:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.708,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",55,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14499","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952770-1215-29-C","Sample-Routine","Water",NA,2021-12-15,"15:30:00","MST",NA,NA,NA,"Bottom","55","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694189",NA,"as N","Nitrogen","Dissolved","0.766","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952770-1215-29-C/results/971694189/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:14","STORET",7,NA,2021-12-15 22:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.766,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",55,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14500","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952770-0309-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-09,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694204",NA,"as N","Nitrogen","Dissolved","0.592","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952770-0309-2-C/results/971694204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:14","STORET",7,NA,2022-03-09 15:10:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.592,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14501","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952770-0309-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-09,"08:10:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694210",NA,"as N","Nitrogen","Total","0.612","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952770-0309-2-C/results/971694210/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:14","STORET",7,NA,2022-03-09 15:10:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.612,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14502","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952770-0309-29-C","Sample-Routine","Water",NA,2022-03-09,"08:30:00","MST",NA,NA,NA,"Bottom","51","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694216",NA,"as N","Nitrogen","Dissolved","0.738","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952770-0309-29-C/results/971694216/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:15","STORET",7,NA,2022-03-09 15:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.738,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",51,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14503","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952770-0309-29-C","Sample-Routine","Water",NA,2022-03-09,"08:30:00","MST",NA,NA,NA,"Bottom","51","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952770","LAKE POWELL HALLS XING/ BULLFROG MILE 95",NA,NA,NA,NA,"37.4719400000","-110.7265300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694233",NA,"as N","Nitrogen","Total","0.772","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952770-0309-29-C/results/971694233/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:15","STORET",7,NA,2022-03-09 15:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.4719400000","-110.7265300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",25,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.772,"MG/L","Numeric","Not Reviewed","Uncensored",37.47194,-110.72653,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",51,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14504","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952910-1216-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-16,"08:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694241",NA,"as N","Nitrogen","Dissolved","0.767","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952910-1216-2-C/results/971694241/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:15","STORET",7,NA,2021-12-16 15:15:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.767,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14505","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952910-1216-2-C","Sample-Integrated Vertical Profile","Water",NA,2021-12-16,"08:15:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694243",NA,"as N","Nitrogen","Total","0.779","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952910-1216-2-C/results/971694243/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:15","STORET",7,NA,2021-12-16 15:15:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.779,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14506","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952910-1216-29-C","Sample-Routine","Water",NA,2021-12-16,"08:30:00","MST",NA,NA,NA,"Bottom","32","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694259",NA,"as N","Nitrogen","Total","0.662","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952910-1216-29-C/results/971694259/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:16","STORET",7,NA,2021-12-16 15:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.662,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",32,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14507","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP211213-5952910-1216-29-C","Sample-Routine","Water",NA,2021-12-16,"08:30:00","MST",NA,NA,NA,"Bottom","32","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694262",NA,"as N","Nitrogen","Dissolved","0.642","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-01-11,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP211213-5952910-1216-29-C/results/971694262/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:16","STORET",7,NA,2021-12-16 15:30:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.642,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",32,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14508","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952910-0309-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-09,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694285",NA,"as N","Nitrogen","Total","0.691","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952910-0309-2-C/results/971694285/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:16","STORET",7,NA,2022-03-09 19:25:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.691,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14509","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952910-0309-2-C","Sample-Integrated Vertical Profile","Water",NA,2022-03-09,"12:25:00","MST",NA,NA,NA,"Surface",NA,NA,NA,"0","m","2","m","306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694286",NA,"as N","Nitrogen","Dissolved","0.656","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952910-0309-2-C/results/971694286/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:16","STORET",7,NA,2022-03-09 19:25:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.656,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",0,"m","Numeric",2,"m","Numeric","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14510","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952910-0309-29-C","Sample-Routine","Water",NA,2022-03-09,"12:45:00","MST",NA,NA,NA,"Bottom","29","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694299",NA,"as N","Nitrogen","Total","0.728","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952910-0309-29-C/results/971694299/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:17","STORET",7,NA,2022-03-09 19:45:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.728,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",29,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14511","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-BORLP220307-5952910-0309-29-C","Sample-Routine","Water",NA,2022-03-09,"12:45:00","MST",NA,NA,NA,"Bottom","29","m",NA,NA,NA,NA,NA,"306","Cooperative Monitoring","Bureau of Reclamation","UTAHDWQ_WQX-5952910","LAKE POWELL GOODHOPE BAY MIDCHANNEL",NA,NA,NA,NA,"37.7216500000","-110.4712500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-971694300",NA,"as N","Nitrogen","Dissolved","0.696","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-03-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-BORLP220307-5952910-0309-29-C/results/971694300/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-03-21T11:02:17","STORET",7,NA,2022-03-09 19:45:00,NA,"Lake",NA,"14070001",NA,NA,NA,NA,"37.7216500000","-110.4712500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include sampling performed routinely by our federal, state, and local governmental cooperating agencies.",NA,"N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.696,"MG/L","Numeric","Not Reviewed","Uncensored",37.72165,-110.47125,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",29,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14512","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4925195-0721-4-C","Sample-Routine","Water",NA,2022-07-21,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657575",NA,"as N","Nitrogen","Dissolved","0.351","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925195-0721-4-C/results/974657575/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:43","STORET",7,NA,2022-07-21 20:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.351,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14513","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4925195-0721-4-C","Sample-Routine","Water",NA,2022-07-21,"13:35:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4925195","East Canyon Ck @ New Gage @ East Canyon Resort",NA,NA,NA,NA,"40.8691100000","-111.5863200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657588",NA,"as N","Nitrogen","Total","0.341","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925195-0721-4-C/results/974657588/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:43","STORET",7,NA,2022-07-21 20:35:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.8691100000","-111.5863200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",29,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.341,"MG/L","Numeric","Not Reviewed","Uncensored",40.86911,-111.58632,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14514","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4925230-0721-4-C","Sample-Routine","Water",NA,2022-07-21,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657608",NA,"as N","Nitrogen","Total","1.78","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925230-0721-4-C/results/974657608/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:44","STORET",7,NA,2022-07-21 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.78,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14515","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4925230-0721-4-C","Sample-Routine","Water",NA,2022-07-21,"11:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4925230","EAST CANYON CK BL JEREMY RANCH GOLF COURSE",NA,NA,NA,NA,"40.7692500000","-111.5836800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657631",NA,"as N","Nitrogen","Dissolved","1.91","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925230-0721-4-C/results/974657631/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:44","STORET",7,NA,2022-07-21 18:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7692500000","-111.5836800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.91,"MG/L","Numeric","Not Reviewed","Uncensored",40.76925,-111.58368,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14516","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4925442-0721-4-C","Sample-Routine","Water",NA,2022-07-21,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4925442","KIMBALL CK AB HIGHLAND DR XING",NA,NA,NA,NA,"40.7210600000","-111.5179800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657659",NA,"as N","Nitrogen","Dissolved","0.355","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925442-0721-4-C/results/974657659/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:44","STORET",7,NA,2022-07-21 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7210600000","-111.5179800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.355,"MG/L","Numeric","Not Reviewed","Uncensored",40.72106,-111.51798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14517","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4925442-0721-4-C","Sample-Routine","Water",NA,2022-07-21,"09:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4925442","KIMBALL CK AB HIGHLAND DR XING",NA,NA,NA,NA,"40.7210600000","-111.5179800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657660",NA,"as N","Nitrogen","Total","0.262","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4925442-0721-4-C/results/974657660/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:44","STORET",7,NA,2022-07-21 16:25:00,NA,"River/Stream",NA,"16020102",NA,NA,NA,NA,"40.7210600000","-111.5179800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.262,"MG/L","Numeric","Not Reviewed","Uncensored",40.72106,-111.51798,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14518","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926290-0831-4-C","Sample-Routine","Water",NA,2022-08-31,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657670",NA,"as N","Nitrogen","Dissolved","0.299","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926290-0831-4-C/results/974657670/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:45","STORET",7,NA,2022-08-31 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.299,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14519","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926290-0831-4-C","Sample-Routine","Water",NA,2022-08-31,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926290","CHALK CREEK AB CNFL/ SOUTH FORK",NA,NA,NA,NA,"40.9324400000","-111.2924200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657683",NA,"as N","Nitrogen","Total","0.231","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926290-0831-4-C/results/974657683/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:45","STORET",7,NA,2022-08-31 17:30:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9324400000","-111.2924200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.231,"MG/L","Numeric","Not Reviewed","Uncensored",40.93244,-111.29242,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14520","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926350-0831-4-C","Sample-Routine","Water",NA,2022-08-31,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657698",NA,"as N","Nitrogen","Total","1.07","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926350-0831-4-C/results/974657698/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:45","STORET",7,NA,2022-08-31 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.07,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14521","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926350-0831-4-C","Sample-Routine","Water",NA,2022-08-31,"11:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926350","CHALK CK AT US189 XING",NA,NA,NA,NA,"40.9205100000","-111.4013100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657713",NA,"as N","Nitrogen","Dissolved","1.17","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926350-0831-4-C/results/974657713/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:45","STORET",7,NA,2022-08-31 18:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9205100000","-111.4013100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.17,"MG/L","Numeric","Not Reviewed","Uncensored",40.92051,-111.40131,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14522","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926358-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926358","Fish Ck bl first drill pad",NA,NA,NA,NA,"40.9041200000","-111.2008500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657719",NA,"as N","Nitrogen","Dissolved","0.643","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926358-0829-4-C/results/974657719/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:46","STORET",7,NA,2022-08-29 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9041200000","-111.2008500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.643,"MG/L","Numeric","Not Reviewed","Uncensored",40.90412,-111.20085,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14523","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926358-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"14:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926358","Fish Ck bl first drill pad",NA,NA,NA,NA,"40.9041200000","-111.2008500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657734",NA,"as N","Nitrogen","Total","0.543","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926358-0829-4-C/results/974657734/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:46","STORET",7,NA,2022-08-29 21:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9041200000","-111.2008500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.543,"MG/L","Numeric","Not Reviewed","Uncensored",40.90412,-111.20085,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14524","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926360-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657745",NA,"as N","Nitrogen","Dissolved","0.343","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926360-0829-4-C/results/974657745/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:46","STORET",7,NA,2022-08-29 22:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.343,"MG/L","Numeric","Not Reviewed","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14525","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926360-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"15:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926360","CHALK CK S FK 1 MI AB CHALK CK",NA,NA,NA,NA,"40.9257500000","-111.2731700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657765",NA,"as N","Nitrogen","Total","0.165","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926360-0829-4-C/results/974657765/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:46","STORET",7,NA,2022-08-29 22:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9257500000","-111.2731700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.165,"MG/L","Numeric","Pass","Uncensored",40.92575,-111.27317,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14526","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926361-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657776",NA,"as N","Nitrogen","Dissolved","0.589","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926361-0829-4-C/results/974657776/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:47","STORET",7,NA,2022-08-29 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.589,"MG/L","Numeric","Not Reviewed","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14527","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926361-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"12:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926361","Fish Creek at road xing AB S. Fk Chalk Ck confluence",NA,NA,NA,NA,"40.9057200000","-111.2247400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657791",NA,"as N","Nitrogen","Total","0.178","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926361-0829-4-C/results/974657791/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:47","STORET",7,NA,2022-08-29 19:40:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9057200000","-111.2247400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.178,"MG/L","Numeric","Pass","Uncensored",40.90572,-111.22474,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14528","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926362-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926362","South Fk Chalk Ck 1 mile AB Fish Ck confluence",NA,NA,NA,NA,"40.8918700000","-111.2192700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657808",NA,"as N","Nitrogen","Total","0.155","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926362-0829-4-C/results/974657808/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:48","STORET",7,NA,2022-08-29 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8918700000","-111.2192700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.155,"MG/L","Numeric","Pass","Uncensored",40.89187,-111.21927,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14529","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926362-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"11:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926362","South Fk Chalk Ck 1 mile AB Fish Ck confluence",NA,NA,NA,NA,"40.8918700000","-111.2192700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657811",NA,"as N","Nitrogen","Dissolved","0.347","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926362-0829-4-C/results/974657811/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:48","STORET",7,NA,2022-08-29 18:45:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8918700000","-111.2192700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.347,"MG/L","Numeric","Not Reviewed","Uncensored",40.89187,-111.21927,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14530","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926363-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657854","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926363-0829-4-C/results/974657854/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:48","STORET",7,NA,2022-08-29 17:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14531","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926363-0829-4-C","Sample-Routine","Water",NA,2022-08-29,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926363","South Fk Chalk Ck at Upper Diversion",NA,NA,NA,NA,"40.8798600000","-111.2161400000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657862",NA,"as N","Nitrogen","Dissolved","0.223","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926363-0829-4-C/results/974657862/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:48","STORET",7,NA,2022-08-29 17:50:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.8798600000","-111.2161400000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.223,"MG/L","Numeric","Not Reviewed","Uncensored",40.87986,-111.21614,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14532","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926370-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657886","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926370-0830-4-C/results/974657886/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:49","STORET",7,NA,2022-08-30 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14533","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926370-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926370","CHALK CK EAST FK AB CNFL/ CHALK CK",NA,NA,NA,NA,"40.9591800000","-111.1180600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657892",NA,"as N","Nitrogen","Dissolved","0.172","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926370-0830-4-C/results/974657892/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:49","STORET",7,NA,2022-08-30 18:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9591800000","-111.1180600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.172,"MG/L","Numeric","Pass","Uncensored",40.95918,-111.11806,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14534","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926380-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657904",NA,"as N","Nitrogen","Dissolved","0.278","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926380-0830-4-C/results/974657904/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:49","STORET",7,NA,2022-08-30 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.278,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14535","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926380-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926380","CHALK CK AT CULVERT 0.8MI AB PINE CLIFF CAMPGROUND",NA,NA,NA,NA,"40.9618000000","-111.1040000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657924",NA,"as N","Nitrogen","Total","0.286","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926380-0830-4-C/results/974657924/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:49","STORET",7,NA,2022-08-30 17:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9618000000","-111.1040000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.286,"MG/L","Numeric","Not Reviewed","Uncensored",40.9618,-111.104,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14536","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926390-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657928",NA,"as N","Nitrogen","Total","0.228","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-02,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926390-0830-4-C/results/974657928/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:50","STORET",7,NA,2022-08-30 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.228,"MG/L","Numeric","Not Reviewed","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14537","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4926390-0830-4-C","Sample-Routine","Water",NA,2022-08-30,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4926390","CHALK CREEK 4 MILES EAST OF UPTON",NA,NA,NA,NA,"40.9388400000","-111.1551800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657932",NA,"as N","Nitrogen","Dissolved","0.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4926390-0830-4-C/results/974657932/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:50","STORET",7,NA,2022-08-30 19:00:00,NA,"River/Stream",NA,"16020101",NA,NA,NA,NA,"40.9388400000","-111.1551800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",43,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.82,"MG/L","Numeric","Not Reviewed","Uncensored",40.93884,-111.15518,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14538","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946450-0906-4-C","Sample-Routine","Water",NA,2022-09-06,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946450","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING",NA,NA,NA,NA,"39.2787100000","-111.6782500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657954",NA,"as N","Nitrogen","Total","1.82","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946450-0906-4-C/results/974657954/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:50","STORET",7,NA,2022-09-06 17:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.82,"MG/L","Numeric","Not Reviewed","Uncensored",39.27871,-111.67825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14539","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946450-0906-4-C","Sample-Routine","Water",NA,2022-09-06,"10:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946450","SAN PITCH RIVER W OF MANTI AB GUNNISON RES AT CR XING",NA,NA,NA,NA,"39.2787100000","-111.6782500000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657961",NA,"as N","Nitrogen","Dissolved","1.63","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946450-0906-4-C/results/974657961/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:50","STORET",7,NA,2022-09-06 17:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.2787100000","-111.6782500000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.63,"MG/L","Numeric","Not Reviewed","Uncensored",39.27871,-111.67825,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14540","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946650-0906-4-C","Sample-Routine","Water",NA,2022-09-06,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946650","SAN PITCH R 1MI W OF CHESTER ON U-117",NA,NA,NA,NA,"39.4756600000","-111.5991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974657987",NA,"as N","Nitrogen","Dissolved","0.535","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946650-0906-4-C/results/974657987/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:51","STORET",7,NA,2022-09-06 19:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.535,"MG/L","Numeric","Not Reviewed","Uncensored",39.47566,-111.59911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14541","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946650-0906-4-C","Sample-Routine","Water",NA,2022-09-06,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946650","SAN PITCH R 1MI W OF CHESTER ON U-117",NA,NA,NA,NA,"39.4756600000","-111.5991100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658009",NA,"as N","Nitrogen","Total","0.662","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946650-0906-4-C/results/974658009/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:51","STORET",7,NA,2022-09-06 19:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.4756600000","-111.5991100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.662,"MG/L","Numeric","Not Reviewed","Uncensored",39.47566,-111.59911,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14542","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946750-0907-4-C","Sample-Routine","Water",NA,2022-09-07,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946750","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658022",NA,"as N","Nitrogen","Total","0.773","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946750-0907-4-C/results/974658022/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:51","STORET",7,NA,2022-09-07 17:30:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.773,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14543","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946750-0907-4-C","Sample-Routine","Water",NA,2022-09-07,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946750","SAN PITCH R 2.5MI W OF MT PLEASANT AT U116 XING",NA,NA,NA,NA,"39.5467900000","-111.5135600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658036",NA,"as N","Nitrogen","Dissolved","0.736","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946750-0907-4-C/results/974658036/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:52","STORET",7,NA,2022-09-07 17:30:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5467900000","-111.5135600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.736,"MG/L","Numeric","Not Reviewed","Uncensored",39.54679,-111.51356,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14544","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946756-0907-4-C","Sample-Routine","Water",NA,2022-09-07,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946756","San Pitch R Bl Fairview WWTP",NA,NA,NA,NA,"39.5747900000","-111.4703900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658044",NA,"as N","Nitrogen","Dissolved","0.804","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946756-0907-4-C/results/974658044/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:52","STORET",7,NA,2022-09-07 18:15:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.804,"MG/L","Numeric","Not Reviewed","Uncensored",39.57479,-111.47039,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14545","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946756-0907-4-C","Sample-Routine","Water",NA,2022-09-07,"11:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946756","San Pitch R Bl Fairview WWTP",NA,NA,NA,NA,"39.5747900000","-111.4703900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658064",NA,"as N","Nitrogen","Total","0.928","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946756-0907-4-C/results/974658064/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:52","STORET",7,NA,2022-09-07 18:15:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5747900000","-111.4703900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.928,"MG/L","Numeric","Not Reviewed","Uncensored",39.57479,-111.47039,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14546","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946840-0907-4-C","Sample-Routine","Water",NA,2022-09-07,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946840","San Pitch R ab Fairview WWTP @ Restoration Project",NA,NA,NA,NA,"39.6086000000","-111.4483200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658081",NA,"as N","Nitrogen","Dissolved","0.899","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946840-0907-4-C/results/974658081/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:53","STORET",7,NA,2022-09-07 19:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.899,"MG/L","Numeric","Not Reviewed","Uncensored",39.6086,-111.44832,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14547","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946840-0907-4-C","Sample-Routine","Water",NA,2022-09-07,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946840","San Pitch R ab Fairview WWTP @ Restoration Project",NA,NA,NA,NA,"39.6086000000","-111.4483200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658086",NA,"as N","Nitrogen","Total","1.06","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Spiked sample recovery not within control limits. Reject result (dataflag)",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946840-0907-4-C/results/974658086/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:53","STORET",7,NA,2022-09-07 19:00:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.6086000000","-111.4483200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.06,"MG/L","Numeric","Not Reviewed","Uncensored",39.6086,-111.44832,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14548","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946960-0906-4-C","Sample-Routine","Water",NA,2022-09-06,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946960","SAN PITCH R AB MORONI WWTP",NA,NA,NA,NA,"39.5147000000","-111.5862800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658107",NA,"as N","Nitrogen","Total","12.5","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946960-0906-4-C/results/974658107/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:53","STORET",7,NA,2022-09-06 20:30:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",12.5,"MG/L","Numeric","Not Reviewed","Uncensored",39.5147,-111.58628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14549","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946960-0906-4-C","Sample-Routine","Water",NA,2022-09-06,"13:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946960","SAN PITCH R AB MORONI WWTP",NA,NA,NA,NA,"39.5147000000","-111.5862800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658112",NA,"as N","Nitrogen","Dissolved","11.9","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-22,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946960-0906-4-C/results/974658112/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:53","STORET",7,NA,2022-09-06 20:30:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5147000000","-111.5862800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",11.9,"MG/L","Numeric","Not Reviewed","Uncensored",39.5147,-111.58628,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14550","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946980-0906-4-C","Sample-Routine","Water",NA,2022-09-06,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946980","SAN PITCH R AT BRIDGE BL MORONI WWTP",NA,NA,NA,NA,"39.5010700000","-111.5854800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658134",NA,"as N","Nitrogen","Dissolved","0.495","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946980-0906-4-C/results/974658134/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:54","STORET",7,NA,2022-09-06 19:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.495,"MG/L","Numeric","Not Reviewed","Uncensored",39.50107,-111.58548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14551","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4946980-0906-4-C","Sample-Routine","Water",NA,2022-09-06,"12:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4946980","SAN PITCH R AT BRIDGE BL MORONI WWTP",NA,NA,NA,NA,"39.5010700000","-111.5854800000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658144",NA,"as N","Nitrogen","Total","0.571","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4946980-0906-4-C/results/974658144/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:54","STORET",7,NA,2022-09-06 19:50:00,NA,"River/Stream",NA,"16030004",NA,NA,NA,NA,"39.5010700000","-111.5854800000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",39,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.571,"MG/L","Numeric","Not Reviewed","Uncensored",39.50107,-111.58548,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14552","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4948870-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4948870","OTTER CK AB DIVERSION 1MI N OF ANGLE",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658164",NA,"as N","Nitrogen","Total","0.308","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948870-0927-4-C/results/974658164/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:54","STORET",7,NA,2022-09-27 20:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.308,"MG/L","Numeric","Not Reviewed","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14553","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4948870-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"13:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4948870","OTTER CK AB DIVERSION 1MI N OF ANGLE",NA,NA,NA,NA,"38.2661000000","-111.9541600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658171",NA,"as N","Nitrogen","Dissolved","0.184","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948870-0927-4-C/results/974658171/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:54","STORET",7,NA,2022-09-27 20:00:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.2661000000","-111.9541600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.184,"MG/L","Numeric","Pass","Uncensored",38.2661,-111.95416,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14554","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4948930-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"15:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4948930","OTTER CK AT CR XING 2MI S E OF GREENWICH",NA,NA,NA,NA,"38.4160900000","-111.9029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658197",NA,"as N","Nitrogen","Dissolved","1.14","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948930-0927-4-C/results/974658197/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:55","STORET",7,NA,2022-09-27 22:40:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.4160900000","-111.9029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.14,"MG/L","Numeric","Not Reviewed","Uncensored",38.41609,-111.90297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14555","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4948930-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"15:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4948930","OTTER CK AT CR XING 2MI S E OF GREENWICH",NA,NA,NA,NA,"38.4160900000","-111.9029700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658204",NA,"as N","Nitrogen","Total","1.15","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948930-0927-4-C/results/974658204/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:55","STORET",7,NA,2022-09-27 22:40:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.4160900000","-111.9029700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.15,"MG/L","Numeric","Not Reviewed","Uncensored",38.41609,-111.90297,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14556","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4948940-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4948940","OTTER CREEK AT THE NARROWS",NA,NA,NA,NA,"38.3520900000","-111.9464200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658213","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948940-0927-4-C/results/974658213/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:55","STORET",7,NA,2022-09-27 21:25:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.35209,-111.94642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14557","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4948940-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"14:25:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4948940","OTTER CREEK AT THE NARROWS",NA,NA,NA,NA,"38.3520900000","-111.9464200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658224","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4948940-0927-4-C/results/974658224/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:55","STORET",7,NA,2022-09-27 21:25:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.3520900000","-111.9464200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",31,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.35209,-111.94642,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14558","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949040-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"16:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949040","OTTER CK AT CR XING NE OF KOOSHAREM",NA,NA,NA,NA,"38.5202600000","-111.8638000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658251",NA,"as N","Nitrogen","Total","0.435","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949040-0927-4-C/results/974658251/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:56","STORET",7,NA,2022-09-27 23:45:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5202600000","-111.8638000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.435,"MG/L","Numeric","Not Reviewed","Uncensored",38.52026,-111.8638,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14559","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949040-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"16:45:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949040","OTTER CK AT CR XING NE OF KOOSHAREM",NA,NA,NA,NA,"38.5202600000","-111.8638000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658257",NA,"as N","Nitrogen","Dissolved","0.338","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949040-0927-4-C/results/974658257/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:56","STORET",7,NA,2022-09-27 23:45:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5202600000","-111.8638000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.338,"MG/L","Numeric","Not Reviewed","Uncensored",38.52026,-111.8638,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14560","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949070-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949070","OTTER CK AT U62 XING N OF KOOSHAREM",NA,NA,NA,NA,"38.5641400000","-111.8493600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658268",NA,"as N","Nitrogen","Dissolved","0.262","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949070-0928-4-C/results/974658268/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:56","STORET",7,NA,2022-09-28 16:40:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5641400000","-111.8493600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.262,"MG/L","Numeric","Not Reviewed","Uncensored",38.56414,-111.84936,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14561","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949070-0928-4-C","Sample-Routine","Water",NA,2022-09-28,"09:40:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949070","OTTER CK AT U62 XING N OF KOOSHAREM",NA,NA,NA,NA,"38.5641400000","-111.8493600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658284","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949070-0928-4-C/results/974658284/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:56","STORET",7,NA,2022-09-28 16:40:00,NA,"River/Stream",NA,"16030002",NA,NA,NA,NA,"38.5641400000","-111.8493600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",41,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",38.56414,-111.84936,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14562","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949630-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"17:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949630","SEVIER R AT U12 XING",NA,NA,NA,NA,"37.7494200000","-112.3749200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658290",NA,"as N","Nitrogen","Dissolved","0.18","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949630-0926-4-C/results/974658290/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:57","STORET",7,NA,2022-09-27 00:50:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7494200000","-112.3749200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.18,"MG/L","Numeric","Pass","Uncensored",37.74942,-112.37492,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14563","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949630-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"17:50:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949630","SEVIER R AT U12 XING",NA,NA,NA,NA,"37.7494200000","-112.3749200000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658294","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949630-0926-4-C/results/974658294/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:57","STORET",7,NA,2022-09-27 00:50:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.7494200000","-112.3749200000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.74942,-112.37492,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14564","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949640-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949640","SEVIER R @ SANFORD ROAD XING",NA,NA,NA,NA,"37.9419200000","-112.4166000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658323",NA,"as N","Nitrogen","Total","0.471","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949640-0927-4-C/results/974658323/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:57","STORET",7,NA,2022-09-27 17:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.9419200000","-112.4166000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.471,"MG/L","Numeric","Not Reviewed","Uncensored",37.94192,-112.4166,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14565","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949640-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"10:30:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949640","SEVIER R @ SANFORD ROAD XING",NA,NA,NA,NA,"37.9419200000","-112.4166000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658345",NA,"as N","Nitrogen","Dissolved","0.48","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949640-0927-4-C/results/974658345/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:57","STORET",7,NA,2022-09-27 17:30:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.9419200000","-112.4166000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.48,"MG/L","Numeric","Not Reviewed","Uncensored",37.94192,-112.4166,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14566","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949650-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"16:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949650","SEVIER R NEAR HATCH",NA,NA,NA,NA,"37.6515000000","-112.4304300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658349","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949650-0926-4-C/results/974658349/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:58","STORET",7,NA,2022-09-26 23:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6515000000","-112.4304300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.6515,-112.43043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14567","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949650-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"16:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949650","SEVIER R NEAR HATCH",NA,NA,NA,NA,"37.6515000000","-112.4304300000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658350",NA,"as N","Nitrogen","Dissolved","0.346","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949650-0926-4-C/results/974658350/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:58","STORET",7,NA,2022-09-26 23:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6515000000","-112.4304300000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.346,"MG/L","Numeric","Not Reviewed","Uncensored",37.6515,-112.43043,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14568","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949700-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949700","MAMMOTH CK AT US89 XING",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658377",NA,"as N","Nitrogen","Total","0.224","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949700-0926-4-C/results/974658377/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:58","STORET",7,NA,2022-09-26 22:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.224,"MG/L","Numeric","Not Reviewed","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14569","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949700-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"15:15:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949700","MAMMOTH CK AT US89 XING",NA,NA,NA,NA,"37.6281000000","-112.4553100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658382",NA,"as N","Nitrogen","Dissolved","0.322","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949700-0926-4-C/results/974658382/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:58","STORET",7,NA,2022-09-26 22:15:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.6281000000","-112.4553100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.322,"MG/L","Numeric","Not Reviewed","Uncensored",37.6281,-112.45531,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14570","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949710-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949710","Sevier R bl USU Farm @ Sandwash Rd Xing",NA,NA,NA,NA,"37.8762300000","-112.4277600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658423",NA,"as N","Nitrogen","Total","0.711","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949710-0927-4-C/results/974658423/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:59","STORET",7,NA,2022-09-27 16:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8762300000","-112.4277600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.711,"MG/L","Numeric","Not Reviewed","Uncensored",37.87623,-112.42776,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14571","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949710-0927-4-C","Sample-Routine","Water",NA,2022-09-27,"09:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949710","Sevier R bl USU Farm @ Sandwash Rd Xing",NA,NA,NA,NA,"37.8762300000","-112.4277600000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658429",NA,"as N","Nitrogen","Dissolved","0.946","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949710-0927-4-C/results/974658429/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:24:59","STORET",7,NA,2022-09-27 16:00:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.8762300000","-112.4277600000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.946,"MG/L","Numeric","Not Reviewed","Uncensored",37.87623,-112.42776,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14572","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949900-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949900","ASAY CK AT US89 XING",NA,NA,NA,NA,"37.5841500000","-112.4766000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658447","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949900-0926-4-C/results/974658447/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:00","STORET",7,NA,2022-09-26 21:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.5841500000","-112.4766000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",37.58415,-112.4766,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14573","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4949900-0926-4-C","Sample-Routine","Water",NA,2022-09-26,"14:20:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4949900","ASAY CK AT US89 XING",NA,NA,NA,NA,"37.5841500000","-112.4766000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658448",NA,"as N","Nitrogen","Dissolved","0.186","mg/L","J","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Indicates an estimated value. Applied to calculated concentrations for compounds whose concentration is below the reporting limit, but at or above the MDL",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4949900-0926-4-C/results/974658448/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:00","STORET",7,NA,2022-09-26 21:20:00,NA,"River/Stream",NA,"16030001",NA,NA,NA,NA,"37.5841500000","-112.4766000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",17,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.186,"MG/L","Numeric","Pass","Uncensored",37.58415,-112.4766,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14574","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4996913-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658467",NA,"as N","Nitrogen","Dissolved","0.549","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4996913-0901-4-C/results/974658467/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:00","STORET",7,NA,2022-09-01 17:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.549,"MG/L","Numeric","Not Reviewed","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14575","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-4996913-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"10:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-4996913","Left Fork Little Hobble Creek@Forest Service Road 121 Xing",NA,NA,NA,NA,"40.3474300000","-111.4026700000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658475",NA,"as N","Nitrogen","Total","0.28","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-4996913-0901-4-C/results/974658475/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:00","STORET",7,NA,2022-09-01 17:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3474300000","-111.4026700000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.28,"MG/L","Numeric","Not Reviewed","Uncensored",40.34743,-111.40267,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14576","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5910280-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658499",NA,"as N","Nitrogen","Total","1.79","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5910280-0901-4-C/results/974658499/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:01","STORET",7,NA,2022-09-01 18:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.79,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14577","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5910280-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"11:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5910280","SPRING CK AT ROAD XING BL WALLSBURG SPRINGS OUTFALL",NA,NA,NA,NA,"40.3863500000","-111.4224000000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658513",NA,"as N","Nitrogen","Dissolved","1.74","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5910280-0901-4-C/results/974658513/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:01","STORET",7,NA,2022-09-01 18:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.3863500000","-111.4224000000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",1.74,"MG/L","Numeric","Not Reviewed","Uncensored",40.38635,-111.4224,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14578","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5910619-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658514",NA,"as N","Nitrogen","Dissolved","0.553","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5910619-0901-4-C/results/974658514/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:01","STORET",7,NA,2022-09-01 19:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.553,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14579","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5910619-0901-4-C","Sample-Routine","Water",NA,2022-09-01,"12:00:00","MST",NA,NA,NA,"Surface","0","m",NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5910619","Main Creek 0.4 mile AB U.S. Highway 189 at driveway bridge",NA,NA,NA,NA,"40.4063200000","-111.4725100000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658519",NA,"as N","Nitrogen","Total","0.487","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5910619-0901-4-C/results/974658519/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:01","STORET",7,NA,2022-09-01 19:00:00,NA,"River/Stream",NA,"16020203",NA,NA,NA,NA,"40.4063200000","-111.4725100000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",51,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","Non_QC","Not Reviewed","WATER","NITROGEN",0.487,"MG/L","Numeric","Not Reviewed","Uncensored",40.40632,-111.47251,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",0,"m","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14580","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5989995-0721-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-21,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658546","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0721-4-C/results/974658546/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:02","STORET",7,NA,2022-07-21 20:55:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14581","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5989995-0721-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-07-21,"13:55:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658549","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-08-04,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0721-4-C/results/974658549/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:02","STORET",7,NA,2022-07-21 20:55:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14582","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5989995-0901-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-01,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658568","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0901-4-C/results/974658568/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:02","STORET",7,NA,2022-09-01 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14583","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5989995-0901-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-01,"14:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658592","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0901-4-C/results/974658592/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:03","STORET",7,NA,2022-09-01 21:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14584","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5989995-0907-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658603","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-13,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0907-4-C/results/974658603/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:03","STORET",7,NA,2022-09-07 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14585","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5989995-0907-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-07,"15:00:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658613",NA,"as N","Nitrogen","Dissolved","0.275","mg/L",NA,"Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-09-15,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0907-4-C/results/974658613/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:03","STORET",7,NA,2022-09-07 22:00:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.275,"MG/L","Numeric","Not Reviewed","Uncensored",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14586","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5989995-0928-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658625","Not Detected","as N","Nitrogen","Total",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-17,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0928-4-C/results/974658625/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:03","STORET",7,NA,2022-09-28 17:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","TOTAL","Accepted","NITROGEN_TOTAL_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE +"14587","UTAHDWQ_WQX","Utah Department Of Environmental Quality","UTAHDWQ_WQX-UCASE2022-5989995-0928-4-C","Quality Control Sample-Equipment Blank","Water",NA,2022-09-28,"10:45:00","MST",NA,NA,NA,"Surface",NA,NA,NA,NA,NA,NA,NA,"301","Probabilistic","Division of Water Quality","UTAHDWQ_WQX-5989995","UCASE equipment blank- statewide",NA,NA,NA,NA,"40.7741300000","-111.9478900000","DWQ-001","UTAHDWQ_WQX","Water Grab Sampling",NA,"Miscellaneous (Other)","STORET-974658630","Not Detected","as N","Nitrogen","Dissolved",NA,"mg/L","U","Accepted",NA,"Actual",NA,NA,NA,NA,NA,NA,NA,NA,NA,"Not detected/reported",NA,NA,NA,NA,NA,NA,NA,NA,NA,"D8083-16","ASTM","Standard Test Method for Total Nitrogen, and Total Kjeldahl Nitrogen (TKN) by Calculation, in Water by High Temperature",NA,NA,"Utah DOH Division of Epidemilogy and Laboratory Services",2022-10-19,NA,"https://www.waterqualitydata.us/data/providers/STORET/organizations/UTAHDWQ_WQX/activities/UTAHDWQ_WQX-UCASE2022-5989995-0928-4-C/results/974658630/resdetectqntlmts","Lower Reporting Limit","0.2","mg/L",NA,"2023-05-11T14:25:04","STORET",7,NA,2022-09-28 17:45:00,NA,"River/Stream","Equipment Blank","16020204",NA,NA,NA,NA,"40.7741300000","-111.9478900000",NA,NA,NA,"GPS-Unspecified","NAD83",NA,NA,NA,NA,NA,NA,"US","49",35,NA,NA,NA,NA,NA,NA,NA,NA,NA,"as N","This will include UCASE and any other monitoring with a random survey sampling design.","Probabilistic - A probability sampling method is any method of sampling that utilizes some form of random selection. In order to have a random selection method, you must set up some process or procedure that assures that the different units in your population have equal probabilities of being chosen.","N",NA,NA,NA,"No Target Unit","QC_blank","Not Reviewed","WATER","NITROGEN",0.2,"MG/L","Result Value/Unit Copied from Detection Limit","Non-Detect","Non-Detect",40.77413,-111.94789,"N","Unknown","Not Reviewed","NonStandardized","AS N","Accepted","Accepted","DISSOLVED","Accepted","NITROGEN_DISSOLVED_AS N_MG/L",0.2,"MG/L","Numeric",NA,NA,"ND or NA",NA,NA,"ND or NA",NA,NA,"ND or NA","N","Not a duplicate","Y","Not a duplicate","Y",FALSE